Browse Source

mimxrt: Remove __WFE() from MICROPY_EVENT_POLL_HOOK.

The device is unreliable with the WFE included.  This needs further
investigation.
pull/7324/head
robert-hh 3 years ago
committed by Damien George
parent
commit
5226d6e1ee
  1. 1
      ports/mimxrt/mpconfigport.h

1
ports/mimxrt/mpconfigport.h

@ -125,7 +125,6 @@ extern const struct _mp_obj_module_t mp_module_utime;
do { \ do { \
extern void mp_handle_pending(bool); \ extern void mp_handle_pending(bool); \
mp_handle_pending(true); \ mp_handle_pending(true); \
__WFE(); \
} while (0); } while (0);
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void *)((mp_uint_t)(p) | 1)) #define MICROPY_MAKE_POINTER_CALLABLE(p) ((void *)((mp_uint_t)(p) | 1))

Loading…
Cancel
Save