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
Branches
Tags
No related merge requests found
......@@ -60,8 +60,7 @@ BOOT_MAIN_SRC_S = \
bootmgr/runapp.s
BOOT_PY_SRC_C = $(addprefix py/,\
pfenv.c \
pfenv_printf.c \
mpprint.c \
)
BOOT_STM_SRC_C = $(addprefix stmhal/,\
......
......@@ -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