mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Update definition of StaticTimer_t so its size is correct on MSP403X large memory model builds.
This commit is contained in:
parent
d30249789b
commit
585b16a39f
|
@ -1129,13 +1129,14 @@ typedef struct xSTATIC_TIMER
|
||||||
StaticListItem_t xDummy2;
|
StaticListItem_t xDummy2;
|
||||||
TickType_t xDummy3;
|
TickType_t xDummy3;
|
||||||
UBaseType_t uxDummy4;
|
UBaseType_t uxDummy4;
|
||||||
void *pvDummy5[ 2 ];
|
void *pvDummy5;
|
||||||
|
TaskFunction_t pvDummy6;
|
||||||
#if( configUSE_TRACE_FACILITY == 1 )
|
#if( configUSE_TRACE_FACILITY == 1 )
|
||||||
UBaseType_t uxDummy6;
|
UBaseType_t uxDummy7;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
|
||||||
uint8_t ucDummy7;
|
uint8_t ucDummy8;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
} StaticTimer_t;
|
} StaticTimer_t;
|
||||||
|
|
Loading…
Reference in a new issue