We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d3897f commit 9171cb9Copy full SHA for 9171cb9
ports/mimxrt/mpconfigport.h
@@ -186,6 +186,11 @@ extern const struct _mp_obj_type_t network_lan_type;
186
#define MICROPY_BOARD_ROOT_POINTERS
187
#endif
188
189
+// Additional entries for use with pendsv_schedule_dispatch.
190
+#ifndef MICROPY_BOARD_PENDSV_ENTRIES
191
+#define MICROPY_BOARD_PENDSV_ENTRIES
192
+#endif
193
+
194
#define MP_STATE_PORT MP_STATE_VM
195
196
// Miscellaneous settings
ports/mimxrt/pendsv.h
@@ -31,6 +31,7 @@ enum {
31
#if MICROPY_PY_NETWORK && MICROPY_PY_LWIP
32
PENDSV_DISPATCH_LWIP,
33
34
+ MICROPY_BOARD_PENDSV_ENTRIES
35
PENDSV_DISPATCH_MAX
36
};
37
0 commit comments