mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 21:41:59 -04:00
Change 'signed char *pcTaskName) to 'char *pcTaskName' in vApplicationStackOverflowHook().
This commit is contained in:
parent
3517bbdcce
commit
f292243dcf
|
@ -179,7 +179,7 @@ int main( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -402,7 +402,7 @@ extern void (vButtonISRWrapper) ( void );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* Check pcTaskName for the name of the offending task, or pxCurrentTCB
|
/* Check pcTaskName for the name of the offending task, or pxCurrentTCB
|
||||||
if pcTaskName has itself been corrupted. */
|
if pcTaskName has itself been corrupted. */
|
||||||
|
|
|
@ -355,7 +355,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -580,7 +580,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -355,7 +355,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -580,7 +580,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -119,7 +119,7 @@ static void prvSetupHardware( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -175,7 +175,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -163,7 +163,7 @@ static void prvLCDTask( void *pvParameters );
|
||||||
* Hook functions that can get called by the kernel. The 'check' functionality
|
* Hook functions that can get called by the kernel. The 'check' functionality
|
||||||
* is implemented within the tick hook.
|
* is implemented within the tick hook.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The tick hook function as described in the comments at the top of this file.
|
* The tick hook function as described in the comments at the top of this file.
|
||||||
|
@ -280,7 +280,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
|
|
|
@ -112,7 +112,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -191,7 +191,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -112,7 +112,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -191,7 +191,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -325,7 +325,7 @@ extern unsigned portSHORT usMaxJitter;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* The stack space has been execeeded for a task, considering allocating more. */
|
/* The stack space has been execeeded for a task, considering allocating more. */
|
||||||
taskDISABLE_INTERRUPTS();
|
taskDISABLE_INTERRUPTS();
|
||||||
|
|
|
@ -325,7 +325,7 @@ extern unsigned portSHORT usMaxJitter;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* The stack space has been execeeded for a task, considering allocating more. */
|
/* The stack space has been execeeded for a task, considering allocating more. */
|
||||||
taskDISABLE_INTERRUPTS();
|
taskDISABLE_INTERRUPTS();
|
||||||
|
|
|
@ -325,7 +325,7 @@ extern unsigned portSHORT usMaxJitter;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* The stack space has been execeeded for a task, considering allocating more. */
|
/* The stack space has been execeeded for a task, considering allocating more. */
|
||||||
taskDISABLE_INTERRUPTS();
|
taskDISABLE_INTERRUPTS();
|
||||||
|
|
|
@ -194,7 +194,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will be called if a task overflows its stack, if
|
/* This function will be called if a task overflows its stack, if
|
||||||
configCHECK_FOR_STACK_OVERFLOW != 0. It might be that the function
|
configCHECK_FOR_STACK_OVERFLOW != 0. It might be that the function
|
||||||
|
|
|
@ -535,7 +535,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -340,7 +340,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -459,7 +459,7 @@ void ( *vOLEDClear )( void ) = NULL;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -363,7 +363,7 @@ void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will get called if a task overflows its stack. */
|
/* This function will get called if a task overflows its stack. */
|
||||||
|
|
||||||
|
|
|
@ -267,7 +267,7 @@ void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will get called if a task overflows its stack. */
|
/* This function will get called if a task overflows its stack. */
|
||||||
|
|
||||||
|
|
|
@ -372,7 +372,7 @@ void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will get called if a task overflows its stack. */
|
/* This function will get called if a task overflows its stack. */
|
||||||
|
|
||||||
|
|
|
@ -109,7 +109,7 @@ static void prvSetupHardware( void );
|
||||||
*/
|
*/
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -183,7 +183,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -178,7 +178,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -231,7 +231,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -168,7 +168,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -181,7 +181,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -178,7 +178,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -174,7 +174,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -190,7 +190,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -184,7 +184,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -435,7 +435,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -654,7 +654,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -179,7 +179,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -109,7 +109,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -186,7 +186,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -184,7 +184,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -638,7 +638,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -360,7 +360,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -622,7 +622,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -362,7 +362,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -880,7 +880,7 @@ portBASE_TYPE xDummy;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this
|
/* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this
|
||||||
function will automatically get called if a task overflows its stack. */
|
function will automatically get called if a task overflows its stack. */
|
||||||
|
|
|
@ -982,7 +982,7 @@ portBASE_TYPE xDummy;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this
|
/* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this
|
||||||
function will automatically get called if a task overflows its stack. */
|
function will automatically get called if a task overflows its stack. */
|
||||||
|
|
|
@ -172,7 +172,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -323,7 +323,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -351,7 +351,7 @@ static void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will get called if a task overflows its stack. If the
|
/* This function will get called if a task overflows its stack. If the
|
||||||
parameters are corrupt then inspect pxCurrentTCB to find which was the
|
parameters are corrupt then inspect pxCurrentTCB to find which was the
|
||||||
|
|
|
@ -347,7 +347,7 @@ static void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will get called if a task overflows its stack. If the
|
/* This function will get called if a task overflows its stack. If the
|
||||||
parameters are corrupt then inspect pxCurrentTCB to find which was the
|
parameters are corrupt then inspect pxCurrentTCB to find which was the
|
||||||
|
|
|
@ -103,7 +103,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -234,7 +234,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -578,7 +578,7 @@ void TIM6_IRQHandler( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
* executed prior to this project being built. Once it has been executed
|
* executed prior to this project being built. Once it has been executed
|
||||||
* remove the #error line below.
|
* remove the #error line below.
|
||||||
*/
|
*/
|
||||||
//#error Ensure CreateProjectDirectoryStructure.bat has been executed before building. See comment immediately above.
|
#error Ensure CreateProjectDirectoryStructure.bat has been executed before building. See comment immediately above.
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set configCREATE_SIMPLE_BLINKY_DEMO_ONLY to one to run the simple blinky demo,
|
* Set configCREATE_SIMPLE_BLINKY_DEMO_ONLY to one to run the simple blinky demo,
|
||||||
|
|
|
@ -103,7 +103,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -196,7 +196,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -276,7 +276,7 @@ long lReturn = pdPASS;
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This function will be called if a task overflows its stack. Inspect
|
/* This function will be called if a task overflows its stack. Inspect
|
||||||
pxCurrentTCB to find the offending task if the overflow was sever enough
|
pxCurrentTCB to find the offending task if the overflow was sever enough
|
||||||
|
|
|
@ -299,7 +299,7 @@ static void prvSetupHardware( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* This will get called if a stack overflow is detected during the context
|
/* This will get called if a stack overflow is detected during the context
|
||||||
switch. Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack
|
switch. Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack
|
||||||
|
|
|
@ -666,7 +666,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
|
|
|
@ -626,7 +626,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
|
|
|
@ -410,7 +410,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -511,7 +511,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -190,7 +190,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -193,7 +193,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -118,7 +118,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/* This variable is not actually used, but provided to allow an example of how
|
/* This variable is not actually used, but provided to allow an example of how
|
||||||
|
@ -190,7 +190,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -433,7 +433,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -118,7 +118,7 @@ int __low_level_init(void);
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -230,7 +230,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -96,7 +96,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -155,7 +155,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -101,7 +101,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -162,7 +162,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -96,7 +96,7 @@ extern void main_full( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
@ -155,7 +155,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -230,7 +230,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
FreeRTOSConfig.h, then this function will be called if a task overflows its
|
FreeRTOSConfig.h, then this function will be called if a task overflows its
|
||||||
stack space. See
|
stack space. See
|
||||||
http://www.freertos.org/Stacks-and-stack-overflow-checking.html. */
|
http://www.freertos.org/Stacks-and-stack-overflow-checking.html. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -222,7 +222,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -437,7 +437,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -219,7 +219,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -448,7 +448,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -219,7 +219,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -229,7 +229,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -478,7 +478,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -451,7 +451,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -219,7 +219,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -448,7 +448,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -229,7 +229,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -478,7 +478,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -218,7 +218,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -451,7 +451,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -229,7 +229,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
FreeRTOSConfig.h, then this function will be called if a task overflows its
|
FreeRTOSConfig.h, then this function will be called if a task overflows its
|
||||||
stack space. See
|
stack space. See
|
||||||
http://www.freertos.org/Stacks-and-stack-overflow-checking.html. */
|
http://www.freertos.org/Stacks-and-stack-overflow-checking.html. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -432,7 +432,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -257,7 +257,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -233,7 +233,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -483,7 +483,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -269,7 +269,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -244,7 +244,7 @@ void vApplicationIdleHook( void );
|
||||||
* it is possible that the stack overflow will have corrupted these - in which
|
* it is possible that the stack overflow will have corrupted these - in which
|
||||||
* case pxCurrentTCB can be inspected to find the same information.
|
* case pxCurrentTCB can be inspected to find the same information.
|
||||||
*/
|
*/
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The reg test tasks as described at the top of this file.
|
* The reg test tasks as described at the top of this file.
|
||||||
|
@ -495,7 +495,7 @@ void vApplicationMallocFailedHook( void )
|
||||||
|
|
||||||
/* This function is explained by the comments above its prototype at the top
|
/* This function is explained by the comments above its prototype at the top
|
||||||
of this file. */
|
of this file. */
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
for( ;; );
|
for( ;; );
|
||||||
}
|
}
|
||||||
|
|
|
@ -413,7 +413,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
/* Just to remove compiler warnings. This function will only actually
|
/* Just to remove compiler warnings. This function will only actually
|
||||||
get called if configCHECK_FOR_STACK_OVERFLOW is set to a non zero value.
|
get called if configCHECK_FOR_STACK_OVERFLOW is set to a non zero value.
|
||||||
|
|
|
@ -125,7 +125,7 @@ void vFullDemoIdleFunction( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -220,7 +220,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
|
@ -125,7 +125,7 @@ void vFullDemoIdleFunction( void );
|
||||||
within this file. */
|
within this file. */
|
||||||
void vApplicationMallocFailedHook( void );
|
void vApplicationMallocFailedHook( void );
|
||||||
void vApplicationIdleHook( void );
|
void vApplicationIdleHook( void );
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
|
||||||
void vApplicationTickHook( void );
|
void vApplicationTickHook( void );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -221,7 +221,7 @@ void vApplicationIdleHook( void )
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||||
{
|
{
|
||||||
( void ) pcTaskName;
|
( void ) pcTaskName;
|
||||||
( void ) pxTask;
|
( void ) pxTask;
|
||||||
|
|
Loading…
Reference in a new issue