From 1c5eca348f1c63e1e117a73d42343686cb07a1ef Mon Sep 17 00:00:00 2001 From: Joris Putcuyps Date: Thu, 29 Jun 2023 20:18:51 +0200 Subject: [PATCH] Fix #697: Missing portPOINTER_SIZE_TYPE definition for ATmega port (#698) --- portable/ThirdParty/GCC/ATmega/portmacro.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/portable/ThirdParty/GCC/ATmega/portmacro.h b/portable/ThirdParty/GCC/ATmega/portmacro.h index 8292f2d7ed9..e48ddb2195e 100644 --- a/portable/ThirdParty/GCC/ATmega/portmacro.h +++ b/portable/ThirdParty/GCC/ATmega/portmacro.h @@ -54,6 +54,8 @@ #define portLONG long #define portSHORT int +#define portPOINTER_SIZE_TYPE uint16_t + typedef uint8_t StackType_t; typedef int8_t BaseType_t; typedef uint8_t UBaseType_t;