diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:13:30 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:13:30 +0000 |
commit | b68d98d61cc013da2df98e5d77d7bf3598d0dd4d (patch) | |
tree | 8eac906571eb94f58dbd14c90d34527f2708318f /stmhal/pin.c | |
parent | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (diff) | |
download | micropython-b68d98d61cc013da2df98e5d77d7bf3598d0dd4d.tar.gz micropython-b68d98d61cc013da2df98e5d77d7bf3598d0dd4d.zip |
teensy: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/pin.c')
-rw-r--r-- | stmhal/pin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pin.c b/stmhal/pin.c index b71c93efc3..91d5d916da 100644 --- a/stmhal/pin.c +++ b/stmhal/pin.c @@ -30,8 +30,8 @@ #include "py/nlr.h" #include "py/runtime.h" -#include "pin.h" #include MICROPY_HAL_H +#include "pin.h" /// \moduleref pyb /// \class Pin - control I/O pins |