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.

README.md 1.2KB

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