diff options
| author | Damien George | 2015-01-01 21:06:20 +0000 |
|---|---|---|
| committer | Damien George | 2015-01-01 21:06:20 +0000 |
| commit | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (patch) | |
| tree | 9e9ea6ed5591f424359ce25cd0f56d8932380a0e /stmhal/main.c | |
| parent | b36be5ff5172c97a8f37228c1ec163df466fd588 (diff) | |
stmhal: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/main.c')
| -rw-r--r-- | stmhal/main.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/stmhal/main.c b/stmhal/main.c index a946b86ee..ae5c94b53 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -27,21 +27,16 @@ #include <stdio.h> #include <string.h> -#include "stm32f4xx_hal.h" +#include "py/nlr.h" +#include "py/lexer.h" +#include "py/parse.h" +#include "py/obj.h" +#include "py/runtime.h" +#include "py/stackctrl.h" +#include "py/gc.h" -#include "mpconfig.h" -#include "misc.h" #include "systick.h" #include "pendsv.h" -#include "qstr.h" -#include "misc.h" -#include "nlr.h" -#include "lexer.h" -#include "parse.h" -#include "obj.h" -#include "runtime.h" -#include "stackctrl.h" -#include "gc.h" #include "gccollect.h" #include "readline.h" #include "pyexec.h" |
