From 70eac7ef35e6eb309ba6c7cbef5f6bce20f6641c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 27 Jan 2019 13:41:22 +0300 Subject: [PATCH] cc3200/bootmgr/main: Stub out mp_obj_print_helper(). This is similar to how qstr_data() was dealt with earlier (for %q code). CC3200 doesn't needs/pull in the full MicroPython object model, yet wants to use MicroPython's printf(). Change-Id: I6bcfa5a36609ed114ad0952ce2ff0241d339a2ef --- ports/cc3200/bootmgr/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ports/cc3200/bootmgr/main.c b/ports/cc3200/bootmgr/main.c index cfb8dec21d..5656dc84ac 100644 --- a/ports/cc3200/bootmgr/main.c +++ b/ports/cc3200/bootmgr/main.c @@ -417,3 +417,6 @@ const byte *qstr_data(qstr q, size_t *len) { *len = 0; return NULL; } + +void mp_obj_print_helper(void) { +}