lib/utils/pyhelp.c: Use mp_printf() instead of printf()

This patch introduces MP_PYTHON_PRINTER for general use.
This commit is contained in:
Erik Moqvist
2016-10-16 16:40:56 +02:00
committed by Damien George
parent 571e6f26db
commit f64e806f50
2 changed files with 11 additions and 5 deletions

View File

@@ -39,6 +39,12 @@
#define PF_FLAG_ADD_PERCENT (0x100)
#define PF_FLAG_SHOW_OCTAL_LETTER (0x200)
#if MICROPY_PY_IO
# define MP_PYTHON_PRINTER &mp_sys_stdout_print
#else
# define MP_PYTHON_PRINTER &mp_plat_print
#endif
typedef void (*mp_print_strn_t)(void *data, const char *str, size_t len);
typedef struct _mp_print_t {