summaryrefslogtreecommitdiffstatshomepage
path: root/pic16bit/mpconfigport.h
diff options
context:
space:
mode:
Diffstat (limited to 'pic16bit/mpconfigport.h')
-rw-r--r--pic16bit/mpconfigport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pic16bit/mpconfigport.h b/pic16bit/mpconfigport.h
index 06ed6669ea..d58401a905 100644
--- a/pic16bit/mpconfigport.h
+++ b/pic16bit/mpconfigport.h
@@ -86,6 +86,9 @@ typedef void *machine_ptr_t; // must be pointer size
typedef const void *machine_const_ptr_t; // must be pointer size
typedef int mp_off_t;
+void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len);
+#define MP_PLAT_PRINT_STRN(str, len) mp_hal_stdout_tx_strn_cooked(str, len)
+
// extra builtin names to add to the global namespace
extern const struct _mp_obj_fun_builtin_t mp_builtin_open_obj;
#define MICROPY_PORT_BUILTINS \