Skip to content
Snippets Groups Projects
Commit fe7d5423 authored by Damien George's avatar Damien George
Browse files

esp8266: Prefix includes with py/; remove need for -I../py.

parent 4ef4ffe1
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,6 @@ ESP_SDK = $(shell $(CC) -print-sysroot)/usr ...@@ -12,7 +12,6 @@ ESP_SDK = $(shell $(CC) -print-sysroot)/usr
INC = -I. INC = -I.
INC += -I.. INC += -I..
INC += -I$(PY_SRC)
INC += -I../stmhal INC += -I../stmhal
INC += -I$(BUILD) INC += -I$(BUILD)
INC += -I$(ESP_SDK)/include INC += -I$(ESP_SDK)/include
......
...@@ -25,13 +25,8 @@ ...@@ -25,13 +25,8 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdint.h>
#include "mpconfig.h" #include "py/gc.h"
#include "misc.h"
#include "qstr.h"
#include "obj.h"
#include "gc.h"
#include "gccollect.h" #include "gccollect.h"
STATIC uint32_t stack_end; STATIC uint32_t stack_end;
......
...@@ -27,18 +27,12 @@ ...@@ -27,18 +27,12 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "mpconfig.h" #include "py/nlr.h"
#include "nlr.h" #include "py/parsehelper.h"
#include "misc.h" #include "py/compile.h"
#include "qstr.h" #include "py/runtime0.h"
#include "lexer.h" #include "py/runtime.h"
#include "parse.h" #include "py/gc.h"
#include "obj.h"
#include "parsehelper.h"
#include "compile.h"
#include "runtime0.h"
#include "runtime.h"
#include "gc.h"
#include "pyexec.h" #include "pyexec.h"
#include "gccollect.h" #include "gccollect.h"
#include MICROPY_HAL_H #include MICROPY_HAL_H
......
...@@ -24,15 +24,11 @@ ...@@ -24,15 +24,11 @@
* THE SOFTWARE. * THE SOFTWARE.
*/ */
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include "mpconfig.h" #include "py/nlr.h"
#include "misc.h" #include "py/obj.h"
#include "nlr.h" #include "py/gc.h"
#include "qstr.h"
#include "obj.h"
#include "gc.h"
#include "gccollect.h" #include "gccollect.h"
#include "pyexec.h" #include "pyexec.h"
#include "pybstdio.h" #include "pybstdio.h"
......
...@@ -25,16 +25,11 @@ ...@@ -25,16 +25,11 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdint.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include "mpconfig.h" #include "py/obj.h"
#include "misc.h" #include "py/stream.h"
#include "qstr.h"
#include "misc.h"
#include "obj.h"
#include "stream.h"
#include "pybstdio.h" #include "pybstdio.h"
#include MICROPY_HAL_H #include MICROPY_HAL_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment