all: Update to point to files in new shared/ directory.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2021-07-09 14:19:15 +10:00
parent 4d546713ec
commit 136369d72f
141 changed files with 324 additions and 306 deletions

View File

@@ -70,7 +70,7 @@ INC += -I./modules/ubluepy
INC += -I./modules/music
INC += -I./modules/ble
INC += -I./modules/board
INC += -I../../lib/mp-readline
INC += -I../../shared/readline
INC += -I./drivers/bluetooth
INC += -I./drivers
INC += -I../../lib/nrfx/
@@ -216,12 +216,12 @@ include drivers/secureboot/secureboot.mk
endif
SRC_LIB += $(addprefix lib/,\
SRC_LIB += $(addprefix shared/,\
libc/string0.c \
mp-readline/readline.c \
utils/pyexec.c \
utils/sys_stdio_mphal.c \
utils/interrupt_char.c \
readline/readline.c \
runtime/pyexec.c \
runtime/sys_stdio_mphal.c \
runtime/interrupt_char.c \
timeutils/timeutils.c \
)

View File

@@ -30,7 +30,7 @@
#include "ble_uart.h"
#include "ringbuffer.h"
#include "mphalport.h"
#include "lib/utils/interrupt_char.h"
#include "shared/runtime/interrupt_char.h"
#include "py/runtime.h"
#if MICROPY_PY_SYS_STDFILES

View File

@@ -38,7 +38,7 @@
#include "py/stackctrl.h"
#include "py/gc.h"
#include "py/compile.h"
#include "lib/utils/pyexec.h"
#include "shared/runtime/pyexec.h"
#include "readline.h"
#include "gccollect.h"
#include "modmachine.h"

View File

@@ -25,7 +25,7 @@
*/
#include "py/builtin.h"
#include "lib/utils/pyexec.h"
#include "shared/runtime/pyexec.h"
#include "py/runtime.h"
#include "py/obj.h"
#include "led.h"

View File

@@ -33,7 +33,7 @@
#include "extmod/machine_mem.h"
#include "extmod/machine_pulse.h"
#include "extmod/machine_i2c.h"
#include "lib/utils/pyexec.h"
#include "shared/runtime/pyexec.h"
#include "lib/oofatfs/ff.h"
#include "lib/oofatfs/diskio.h"
#include "gccollect.h"

View File

@@ -38,7 +38,7 @@
#include "py/ringbuf.h"
#include "pin.h"
#include "genhdr/pins.h"
#include "lib/utils/interrupt_char.h"
#include "shared/runtime/interrupt_char.h"
#include "uart.h"
#include "mpconfigboard.h"