Teensy development platform for PlatformIO compatible with GCC10 & C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Teensy: development platform for [PlatformIO](http://platformio.org)
  2. *fork of https://github.com/platformio/platform-teensy*
  3. Teensy is a complete USB-based microcontroller development system, in a very
  4. small footprint, capable of implementing many types of projects. All programming
  5. is done via the USB port. No special programmer is needed, only a standard USB
  6. cable and a PC or Macintosh with a USB port.
  7. * [Home](http://platformio.org/platforms/teensy) (home page in PlatformIO Platform Registry)
  8. * [Documentation](http://docs.platformio.org/page/platforms/teensy.html) (advanced usage, packages, boards, frameworks, etc.)
  9. # Usage
  10. 1. [Install PlatformIO](http://platformio.org)
  11. 2. Create PlatformIO project and configure a platform option in
  12. [platformio.ini](http://docs.platformio.org/page/projectconf.html) file:
  13. ## Stable version
  14. ```ini
  15. [env:stable]
  16. platform = teensy-gcc10
  17. board = ...
  18. ...
  19. ```
  20. ## Development version
  21. ```ini
  22. [env:development]
  23. platform = https://github.com/thevisus/platform-teensy-gcc10.git
  24. board = ...
  25. ...
  26. ```
  27. # Configuration
  28. Please navigate to [documentation](http://docs.platformio.org/page/platforms/teensy.html).