File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -135,11 +135,6 @@ SRC_C = \
135
135
mpthreadport.c \
136
136
$(SRC_MOD )
137
137
138
- STM_SRC_C = $(addprefix stmhal/,\
139
- pybstdio.c \
140
- input.c \
141
- )
142
-
143
138
ESP8266_SRC_C = $(addprefix esp8266/,\
144
139
modonewire.c \
145
140
)
@@ -171,6 +166,7 @@ LIB_SRC_C = $(addprefix lib/,\
171
166
timeutils/timeutils.c \
172
167
utils/pyexec.c \
173
168
utils/interrupt_char.c \
169
+ utils/sys_stdio_mphal.c \
174
170
)
175
171
176
172
ifeq ($(MICROPY_FATFS ) , 1)
@@ -186,14 +182,13 @@ DRIVERS_SRC_C = $(addprefix drivers/,\
186
182
OBJ_MP =
187
183
OBJ_MP += $(PY_O )
188
184
OBJ_MP += $(addprefix $(BUILD ) /, $(SRC_C:.c=.o ) )
189
- OBJ_MP += $(addprefix $(BUILD ) /, $(STM_SRC_C:.c=.o ) )
190
185
OBJ_MP += $(addprefix $(BUILD ) /, $(ESP8266_SRC_C:.c=.o ) )
191
186
OBJ_MP += $(addprefix $(BUILD ) /, $(EXTMOD_SRC_C:.c=.o ) )
192
187
OBJ_MP += $(addprefix $(BUILD ) /, $(LIB_SRC_C:.c=.o ) )
193
188
OBJ_MP += $(addprefix $(BUILD ) /, $(DRIVERS_SRC_C:.c=.o ) )
194
189
195
190
# List of sources for qstr extraction
196
- SRC_QSTR += $(SRC_C ) $(STM_SRC_C ) $(ESP8266_SRC_C ) $(EXTMOD_SRC_C ) $(DRIVERS_SRC_C )
191
+ SRC_QSTR += $(SRC_C ) $(ESP8266_SRC_C ) $(EXTMOD_SRC_C ) $(LIB_SRC_C ) $(DRIVERS_SRC_C )
197
192
# Append any auto-generated sources that are needed by sources listed in SRC_QSTR
198
193
SRC_QSTR_AUTO_DEPS +=
199
194
Original file line number Diff line number Diff line change 78
78
#define MICROPY_PY_BUILTINS_FILTER (1)
79
79
#define MICROPY_PY_BUILTINS_REVERSED (1)
80
80
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)
81
+ #define MICROPY_PY_BUILTINS_INPUT (1)
81
82
#define MICROPY_PY_BUILTINS_MIN_MAX (1)
82
83
#define MICROPY_PY_BUILTINS_POW3 (1)
83
84
#define MICROPY_PY_BUILTINS_HELP (1)
You can’t perform that action at this time.
0 commit comments