aboutsummaryrefslogtreecommitdiff
path: root/ports/pic16bit/mpconfigport.h
diff options
context:
space:
mode:
authorDamien George2021-02-04 14:43:24 +1100
committerDamien George2021-02-04 22:39:17 +1100
commit7c4435459261f1ea93577938b1ab281239d159e7 (patch)
treef80f3ec491197754ac4b0571379f58c63afe3292 /ports/pic16bit/mpconfigport.h
parent5fdf351178df9a18df624ae0f5947d8a5a6bce40 (diff)
ports: Remove def of MP_PLAT_PRINT_STRN if it's the same as the default.
To simplify config, there's no need to specify MP_PLAT_PRINT_STRN if it's the same as the default definition in py/mpconfig.h. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/pic16bit/mpconfigport.h')
-rw-r--r--ports/pic16bit/mpconfigport.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/ports/pic16bit/mpconfigport.h b/ports/pic16bit/mpconfigport.h
index f121081e6..43300d176 100644
--- a/ports/pic16bit/mpconfigport.h
+++ b/ports/pic16bit/mpconfigport.h
@@ -84,8 +84,6 @@ typedef unsigned int mp_uint_t; // must be pointer size
typedef int mp_off_t;
-#define MP_PLAT_PRINT_STRN(str, len) mp_hal_stdout_tx_strn_cooked(str, len)
-
// extra builtin names to add to the global namespace
#define MICROPY_PORT_BUILTINS \
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&mp_builtin_open_obj) },