Teensy development platform for PlatformIO compatible with GCC10 & C++20
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

3 anos atrás
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).