From 2b882e9acaecd92cf3107a597c9aba99f23b794e Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 5 Sep 2016 17:30:24 +1000 Subject: [PATCH] mpy-cross: Don't use the internal printf functions. They require mp_hal_stdout_tx_strn_cooked, which requires extra work to add to mpy-cross. --- mpy-cross/mpconfigport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mpy-cross/mpconfigport.h b/mpy-cross/mpconfigport.h index c919e42911..c0a404103b 100644 --- a/mpy-cross/mpconfigport.h +++ b/mpy-cross/mpconfigport.h @@ -59,6 +59,7 @@ #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE) #define MICROPY_CPYTHON_COMPAT (1) +#define MICROPY_USE_INTERNAL_PRINTF (0) #define MICROPY_PY_BUILTINS_STR_UNICODE (1)