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

cc3200: Get bootloader compiling with latest overhaul of printf code.

parent 044c473d
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,7 @@ BOOT_MAIN_SRC_S = \ ...@@ -60,8 +60,7 @@ BOOT_MAIN_SRC_S = \
bootmgr/runapp.s bootmgr/runapp.s
BOOT_PY_SRC_C = $(addprefix py/,\ BOOT_PY_SRC_C = $(addprefix py/,\
pfenv.c \ mpprint.c \
pfenv_printf.c \
) )
BOOT_STM_SRC_C = $(addprefix stmhal/,\ BOOT_STM_SRC_C = $(addprefix stmhal/,\
......
...@@ -347,3 +347,12 @@ int main (void) { ...@@ -347,3 +347,12 @@ int main (void) {
} }
} }
//*****************************************************************************
//! The following stub function is needed to link mp_vprintf
//*****************************************************************************
#include "py/qstr.h"
const byte *qstr_data(qstr q, mp_uint_t *len) {
*len = 0;
return NULL;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment