summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobert-hh <robert@hammelrath.com>2021-06-01 18:23:13 +0200
committerDamien George <damien@micropython.org>2021-06-03 12:21:36 +1000
commit5226d6e1ee7282bf40a45708b98067446b157bce (patch)
tree8ea6252a5136f538927b18e65e4a13e3be8ddc2a
parent4c407c790fd8c9efb89f91ab4805fc459970a833 (diff)
mimxrt: Remove __WFE() from MICROPY_EVENT_POLL_HOOK.
The device is unreliable with the WFE included. This needs further investigation.
-rw-r--r--ports/mimxrt/mpconfigport.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/mimxrt/mpconfigport.h b/ports/mimxrt/mpconfigport.h
index e02de87ba..98e01abe1 100644
--- a/ports/mimxrt/mpconfigport.h
+++ b/ports/mimxrt/mpconfigport.h
@@ -125,7 +125,6 @@ extern const struct _mp_obj_module_t mp_module_utime;
do { \
extern void mp_handle_pending(bool); \
mp_handle_pending(true); \
- __WFE(); \
} while (0);
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void *)((mp_uint_t)(p) | 1))