esp32c2idf_50000.pp 1.3 KB

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