Skip to content

Commit 89082a6

Browse files
fixed undefined reference to _write on Teensy 3.6 (#388) (#389)
* fixed undefined reference to _write on Teensy 3.6 * added Teeny 3.6 on supported boards (cherry picked from commit da05e6b) Co-authored-by: Juan Miguel Jimeno <[email protected]>
1 parent 75f43a6 commit 89082a6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Supported boards are:
1414
| [Teensy 4.1](https://www.pjrc.com/store/teensy41.html) | v1.8.5 | Supported | [Based on Teensyduino](https://www.pjrc.com/teensy/td_download.html) | `colcon.meta` |
1515
| [Teensy 3.2/3.1](https://www.pjrc.com/store/teensy32.html) | v1.8.5 | Supported | [Based on Teensyduino](https://www.pjrc.com/teensy/td_download.html) | `colcon_lowmem.meta` |
1616
| [Teensy 3.5](https://www.pjrc.com/store/teensy35.html) | v1.8.5 | Not tested | [Based on Teensyduino](https://www.pjrc.com/teensy/td_download.html) | `colcon_lowmem.meta` |
17+
| [Teensy 3.6](https://www.pjrc.com/store/teensy36.html) | v1.8.5 | Supported | [Based on Teensyduino](https://www.pjrc.com/teensy/td_download.html) | `colcon_lowmem.meta` |
1718

1819
Community contributed boards are:
1920

src/default_transport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ extern "C"
6464
// ---- Build fixes -----
6565

6666
// TODO: This should be fixed
67-
#if defined(ARDUINO_TEENSY32) || defined(ARDUINO_TEENSY35)
67+
#if defined(ARDUINO_TEENSY32) || defined(ARDUINO_TEENSY35) || defined(ARDUINO_TEENSY36)
6868

6969
extern "C" void _write(){
7070
}

0 commit comments

Comments
 (0)