File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 58
58
59
59
/* The application writer has already defined the array used for the RTOS
60
60
* heap - probably so it can be placed in a special segment or address. */
61
- extern uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
61
+ extern uint8_t ucHeap [ ];
62
62
#else
63
63
static uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
64
64
#endif /* configAPPLICATION_ALLOCATED_HEAP */
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ static void prvHeapInit( void );
64
64
65
65
/* The application writer has already defined the array used for the RTOS
66
66
* heap - probably so it can be placed in a special segment or address. */
67
- extern uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
67
+ extern uint8_t ucHeap [ ];
68
68
#else
69
69
static uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
70
70
#endif /* configAPPLICATION_ALLOCATED_HEAP */
Original file line number Diff line number Diff line change 61
61
62
62
/* The application writer has already defined the array used for the RTOS
63
63
* heap - probably so it can be placed in a special segment or address. */
64
- extern uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
64
+ extern uint8_t ucHeap [ ];
65
65
#else
66
66
PRIVILEGED_DATA static uint8_t ucHeap [ configTOTAL_HEAP_SIZE ];
67
67
#endif /* configAPPLICATION_ALLOCATED_HEAP */
You can’t perform that action at this time.
0 commit comments