Update definition of StaticTimer_t so its size is correct on MSP403X large memory model builds.
diff --git a/FreeRTOS/Source/include/FreeRTOS.h b/FreeRTOS/Source/include/FreeRTOS.h
index c6f3445..4b40881 100644
--- a/FreeRTOS/Source/include/FreeRTOS.h
+++ b/FreeRTOS/Source/include/FreeRTOS.h
@@ -1129,13 +1129,14 @@
 	StaticListItem_t	xDummy2;

 	TickType_t			xDummy3;

 	UBaseType_t			uxDummy4;

-	void 				*pvDummy5[ 2 ];

+	void 				*pvDummy5;

+	TaskFunction_t		pvDummy6;

 	#if( configUSE_TRACE_FACILITY == 1 )

-		UBaseType_t		uxDummy6;

+		UBaseType_t		uxDummy7;

 	#endif

 

 	#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )

-		uint8_t 		ucDummy7;

+		uint8_t 		ucDummy8;

 	#endif

 

 } StaticTimer_t;