From b68d98d61cc013da2df98e5d77d7bf3598d0dd4d Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 1 Jan 2015 21:13:30 +0000 Subject: teensy: Prefix includes with py/; remove need for -I../py. --- stmhal/pin.c | 2 +- stmhal/pin_named_pins.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'stmhal') diff --git a/stmhal/pin.c b/stmhal/pin.c index b71c93efc..91d5d916d 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 diff --git a/stmhal/pin_named_pins.c b/stmhal/pin_named_pins.c index 420a5d9e0..f6ee16571 100644 --- a/stmhal/pin_named_pins.c +++ b/stmhal/pin_named_pins.c @@ -28,8 +28,8 @@ #include #include "py/runtime.h" -#include "pin.h" #include MICROPY_HAL_H +#include "pin.h" STATIC void pin_named_pins_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { pin_named_pins_obj_t *self = self_in; -- cgit v1.2.3