Skip to content

Commit

Permalink
cc3200/bootmgr/main: Stub out mp_obj_print_helper().
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pfalcon committed Jan 28, 2019
1 parent 8d3a5c9 commit 259f789
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ports/cc3200/bootmgr/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,3 +417,6 @@ const byte *qstr_data(qstr q, size_t *len) {
*len = 0;
return NULL;
}

void mp_obj_print_helper(void) {
}

0 comments on commit 259f789

Please sign in to comment.