espidf_40400.pp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_40400;
  14. {$ENDIF FPC_DOTTEDUNITS}
  15. interface
  16. {$linklib soc,static}
  17. {$linklib driver,static}
  18. {$linklib freertos,static}
  19. {$linklib log,static}
  20. {$linklib esp_common,static}
  21. {$linklib heap,static}
  22. {$linklib newlib,static}
  23. {$linklib vfs,static}
  24. {$linklib esp_ringbuf,static}
  25. {$linklib spi_flash,static}
  26. {$linklib app_update,static}
  27. {$linklib xtensa,static}
  28. {$linklib bootloader_support,static}
  29. {$linklib pthread,static}
  30. {$linklib hal,static}
  31. {$linklib libm,static}
  32. {$linklib libg,static}
  33. {$linklib c,static}
  34. {$linklib esp_event,static}
  35. {$linklib esp_system, static}
  36. {$linklib esp_hw_support, static}
  37. {$linklib esp_rom, static}
  38. {$linklib esp_timer, static}
  39. {$linklib bootloader_support, static}
  40. {$linklib esp_pm, static}
  41. {$linklib driver, static}
  42. {$linklib esp_ipc, static}
  43. {$linklib xt_hal, static}
  44. {$linklib efuse, static}
  45. implementation
  46. end.