espidf_50200.pp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2021 by Florian Klaempfl
  4. member of the Free Pascal development team.
  5. System unit for FreeRTOS systems
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$IFNDEF FPC_DOTTEDUNITS}
  13. unit espidf_50200;
  14. {$ENDIF FPC_DOTTEDUNITS}
  15. interface
  16. {$linklib app_update,static}
  17. {$linklib bootloader_support,static}
  18. //{$linklib core,static}
  19. {$linklib coexist,static}
  20. {$linklib cxx,static}
  21. {$linklib driver,static}
  22. {$linklib efuse,static}
  23. {$linklib esp_app_format,static}
  24. {$linklib esp_coex,static}
  25. {$linklib esp_common,static}
  26. {$linklib esp_hw_support,static}
  27. {$linklib esp_mm,static}
  28. {$linklib esp_partition,static}
  29. {$linklib esp_phy,static}
  30. //{$linklib esp_pm,static}
  31. {$linklib esp_ringbuf,static}
  32. {$linklib esp_rom,static}
  33. {$linklib esp_system,static}
  34. {$linklib esp_timer,static}
  35. {$linklib freertos,static}
  36. {$linklib hal,static}
  37. {$linklib heap,static}
  38. {$linklib log,static}
  39. {$linklib mbedcrypto,static}
  40. {$linklib newlib,static}
  41. {$linklib pthread,static}
  42. {$linklib soc,static}
  43. {$linklib spi_flash,static}
  44. {$linklib vfs,static}
  45. {$linklib xt_hal.a,static}
  46. {$linklib xtensa,static}
  47. {$linklib c,static}
  48. {$linklib m,static}
  49. {$linklib gcc,static}
  50. {$linklib esp_gdbstub,static}
  51. {$linklib espcoredump,static}
  52. implementation
  53. end.