From 141f3e583e46e53a490198c793118e35fb620570 Mon Sep 17 00:00:00 2001 From: jaenrig-ifx Date: Tue, 17 Feb 2026 13:12:55 +0100 Subject: [PATCH] psoc6/mpconfigport: Updated mp_handle_pending() new API. Signed-off-by: jaenrig-ifx --- ports/psoc6/mpconfigport.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ports/psoc6/mpconfigport.h b/ports/psoc6/mpconfigport.h index a1314c63f3c7a..aaeea1fe5fd2f 100644 --- a/ports/psoc6/mpconfigport.h +++ b/ports/psoc6/mpconfigport.h @@ -212,8 +212,7 @@ extern void machine_deinit(); #define MICROPY_EVENT_POLL_HOOK_FAST \ do { \ - extern void mp_handle_pending(bool); \ - mp_handle_pending(true); \ + mp_handle_pending(MP_HANDLE_PENDING_CALLBACKS_AND_EXCEPTIONS); \ } while (0);