summaryrefslogtreecommitdiff
path: root/shared/tinyusb/mp_usbd.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-11-09 16:56:06 +1100
committerDamien George <damien@micropython.org>2023-11-09 17:56:58 +1100
commitd46dc5e1738d843b83f1668798669ff177119d03 (patch)
treee613515badc6370fdea4fc95301153ab1fbc23d5 /shared/tinyusb/mp_usbd.c
parent365913953a4e050eab45c00e637e92f612400b11 (diff)
shared/tinyusb: Expose mp_usbd_task as a public function.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'shared/tinyusb/mp_usbd.c')
-rw-r--r--shared/tinyusb/mp_usbd.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/shared/tinyusb/mp_usbd.c b/shared/tinyusb/mp_usbd.c
index 87c10310f..55af3d4fb 100644
--- a/shared/tinyusb/mp_usbd.c
+++ b/shared/tinyusb/mp_usbd.c
@@ -38,16 +38,15 @@
#include "device/usbd_pvt.h"
#endif
-// Legacy TinyUSB task function wrapper, called by some ports from the interpreter hook
-void usbd_task(void) {
- tud_task_ext(0, false);
-}
-
// TinyUSB task function wrapper, as scheduled from the USB IRQ
-static void mp_usbd_task(mp_sched_node_t *node);
+static void mp_usbd_task_callback(mp_sched_node_t *node);
extern void __real_dcd_event_handler(dcd_event_t const *event, bool in_isr);
+void mp_usbd_task(void) {
+ tud_task_ext(0, false);
+}
+
// If -Wl,--wrap=dcd_event_handler is passed to the linker, then this wrapper
// will be called and allows MicroPython to schedule the TinyUSB task when
// dcd_event_handler() is called from an ISR.
@@ -55,12 +54,12 @@ TU_ATTR_FAST_FUNC void __wrap_dcd_event_handler(dcd_event_t const *event, bool i
static mp_sched_node_t usbd_task_node;
__real_dcd_event_handler(event, in_isr);
- mp_sched_schedule_node(&usbd_task_node, mp_usbd_task);
+ mp_sched_schedule_node(&usbd_task_node, mp_usbd_task_callback);
}
-static void mp_usbd_task(mp_sched_node_t *node) {
+static void mp_usbd_task_callback(mp_sched_node_t *node) {
(void)node;
- tud_task_ext(0, false);
+ mp_usbd_task();
}
#endif