espidf_40100.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_40100;
  14. {$ENDIF FPC_DOTTEDUNITS}
  15. interface
  16. {$linklib esp32,static}
  17. {$linklib soc,static}
  18. {$linklib driver,static}
  19. {$linklib freertos,static}
  20. {$linklib log,static}
  21. {$linklib esp_common,static}
  22. {$linklib heap,static}
  23. {$linklib newlib,static}
  24. {$linklib vfs,static}
  25. {$linklib esp_ringbuf,static}
  26. {$linklib spi_flash,static}
  27. {$linklib app_update,static}
  28. {$linklib xtensa,static}
  29. {$linklib bootloader_support,static}
  30. {$linklib pthread,static}
  31. {$linklib hal,static}
  32. {$linklib libm,static}
  33. {$linklib libg,static}
  34. {$linklib c,static}
  35. {$linklib esp_event,static}
  36. implementation
  37. end.