From 1975742d9fd041d92eff0d077adbc3f1fc57a95d Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 17 Oct 2022 17:23:24 -0500 Subject: [PATCH] picow: fix formatting numbers in lwip debug output --- ports/raspberrypi/lwip_inc/lwipopts.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ports/raspberrypi/lwip_inc/lwipopts.h b/ports/raspberrypi/lwip_inc/lwipopts.h index 09676f8d20..936a141602 100644 --- a/ports/raspberrypi/lwip_inc/lwipopts.h +++ b/ports/raspberrypi/lwip_inc/lwipopts.h @@ -92,4 +92,13 @@ #define LWIP_NO_CTYPE_H 1 +#define X8_F "02x" +#define U16_F "u" +#define U32_F "lu" +#define S32_F "ld" +#define X32_F "lx" + +#define S16_F "d" +#define X16_F "x" +#define SZT_F "u" #endif /* __LWIPOPTS_H__ */