diff options
author | Damien George <damien.p.george@gmail.com> | 2014-08-03 16:48:53 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-03 16:48:53 +0100 |
commit | ce23f67d9ec96d78db559f020acef6910f47e0f0 (patch) | |
tree | 1269816fbd09cd0b5523edee8f5935247fe8cc6d /teensy/main.c | |
parent | 2e41646eb76348a25eb2f20bd1a46e6fbdbc82df (diff) | |
parent | e40c72210fef12db4b10e1070b9254ebc962c07e (diff) | |
download | micropython-ce23f67d9ec96d78db559f020acef6910f47e0f0.tar.gz micropython-ce23f67d9ec96d78db559f020acef6910f47e0f0.zip |
Merge pull request #784 from dhylands/fix-teensy-2014-08-02
Fix teensy to work with the latest tree.
Diffstat (limited to 'teensy/main.c')
-rw-r--r-- | teensy/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/teensy/main.c b/teensy/main.c index fdedff89cc..a5b2d5b52c 100644 --- a/teensy/main.c +++ b/teensy/main.c @@ -15,7 +15,6 @@ #include "gc.h" #include "gccollect.h" #include "pyexec.h" -#include "pybstdio.h" #include "readline.h" #include "Arduino.h" @@ -24,8 +23,9 @@ #include "servo.h" #include "usb.h" #include "led.h" - +#include "uart.h" //#include "pin.h" +#include "pybstdio.h" extern uint32_t _heap_start; |