We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6832cbd commit 3cdccb9Copy full SHA for 3cdccb9
lib/utils/pyexec.c
@@ -53,8 +53,6 @@ STATIC bool repl_display_debugging_info = 0;
53
#define EXEC_FLAG_IS_REPL (4)
54
#define EXEC_FLAG_SOURCE_IS_RAW_CODE (8)
55
56
-extern void mp_hal_set_interrupt_char (int c);
57
-
58
// parses, compiles and executes the code in the lexer
59
// frees the lexer before returning
60
// EXEC_FLAG_PRINT_EOF prints 2 EOF chars: 1 after normal output, 1 after exception output
zephyr/mphalport.h
@@ -1,4 +1,5 @@
1
#include <zephyr.h>
2
+#include "lib/utils/interrupt_char.h"
3
4
static inline mp_uint_t mp_hal_ticks_us(void) {
5
return sys_tick_get() * sys_clock_us_per_tick;
0 commit comments