Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
a86d40cc
Commit
a86d40cc
authored
Apr 16, 2015
by
Damien George
Browse files
cc3200: Get bootloader compiling with latest overhaul of printf code.
parent
044c473d
Changes
2
Hide whitespace changes
Inline
Side-by-side
cc3200/bootmgr/bootloader.mk
View file @
a86d40cc
...
...
@@ -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/,
\
...
...
cc3200/bootmgr/main.c
View file @
a86d40cc
...
...
@@ -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
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment