We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 044c473 commit a86d40cCopy full SHA for a86d40c
2 files changed
cc3200/bootmgr/bootloader.mk
@@ -60,8 +60,7 @@ BOOT_MAIN_SRC_S = \
60
bootmgr/runapp.s
61
62
BOOT_PY_SRC_C = $(addprefix py/,\
63
- pfenv.c \
64
- pfenv_printf.c \
+ mpprint.c \
65
)
66
67
BOOT_STM_SRC_C = $(addprefix stmhal/,\
cc3200/bootmgr/main.c
@@ -347,3 +347,12 @@ int main (void) {
347
}
348
349
350
+//*****************************************************************************
351
+//! The following stub function is needed to link mp_vprintf
352
353
+#include "py/qstr.h"
354
+
355
+const byte *qstr_data(qstr q, mp_uint_t *len) {
356
+ *len = 0;
357
+ return NULL;
358
+}
0 commit comments