From f34e27f178afe707062173b9394cd994ab8c82cc Mon Sep 17 00:00:00 2001 From: iabdalkader Date: Sun, 31 Dec 2023 09:42:39 +0100 Subject: [PATCH] mimxrt/mpbthciport: Add missing extmod/modmachine.h header. Include extmod/modmachine.h for machine_uart_type declaration. Signed-off-by: iabdalkader --- ports/mimxrt/mpbthciport.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/mimxrt/mpbthciport.c b/ports/mimxrt/mpbthciport.c index 4325655e57..2b0bcd2cf6 100644 --- a/ports/mimxrt/mpbthciport.c +++ b/ports/mimxrt/mpbthciport.c @@ -29,6 +29,7 @@ #include "py/stream.h" #include "py/mphal.h" #include "extmod/modbluetooth.h" +#include "extmod/modmachine.h" #include "extmod/mpbthci.h" #include "shared/runtime/softtimer.h" #include "modmachine.h"