esp8266rtos_30400.pp 1.2 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 esp8266rtos_30400;
  14. {$ENDIF FPC_DOTTEDUNITS}
  15. interface
  16. {$linklib esp8266, static}
  17. {$linklib log, static}
  18. {$linklib newlib, static}
  19. {$linklib c_nano, static}
  20. {$linklib heap, static}
  21. {$linklib vfs, static}
  22. {$linklib esp_common, static}
  23. {$linklib core, static}
  24. {$linklib freertos, static}
  25. {$linklib phy, static}
  26. {$linklib net80211, static}
  27. {$linklib hal, static}
  28. {$linklib nvs_flash, static}
  29. {$linklib rtc, static}
  30. {$linklib spi_flash, static}
  31. {$linklib esp_ringbuf, static}
  32. {$linklib gcc, static}
  33. {$linklib pp, static}
  34. {$linklib stdc++, static}
  35. {$linklib pthread, static}
  36. implementation
  37. end.