added info about Teensy to README.md
This commit is contained in:
parent
f162d8fee3
commit
daacad1d77
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,7 @@ This is a very simple Makefile which knows how to build Arduino sketches. It def
|
|||
- Highly customizable
|
||||
- Supports all official AVR-based Arduino boards
|
||||
- Supports chipKIT
|
||||
- Supports Teensy 3.x (via Teensyduino)
|
||||
- Works on all three major OS (Mac, Linux, Windows)
|
||||
- Auto detects serial baud rate and libraries used
|
||||
- Support for `*.ino` and `*.pde` sketches as well as raw `*.c` and `*.cpp`
|
||||
|
@ -156,6 +157,12 @@ To upload compiled files, `avrdude` is used. This Makefile tries to find `avrdud
|
|||
AVRDUDE = /usr/bin/avrdude
|
||||
AVRDUDE_CONF = /etc/avrdude.conf
|
||||
|
||||
## Teensy 3.x
|
||||
|
||||
For Teensy 3.x support you must first install [Teensyduino](http://www.pjrc.com/teensy/teensyduino.html).
|
||||
|
||||
See examples/BlinkTeensy for example usage.
|
||||
|
||||
## Versioning
|
||||
|
||||
The current version of the makefile is `1.3.4`. You can find the full history in the [HISTORY.md](HISTORY.md) file
|
||||
|
|
Loading…
Reference in a new issue