Change 'signed char *pcTaskName) to 'char *pcTaskName' in vApplicationStackOverflowHook().

This commit is contained in:
Richard Barry 2013-12-27 16:30:19 +00:00
parent 3517bbdcce
commit f292243dcf
85 changed files with 112 additions and 112 deletions

View File

@ -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;

View File

@ -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. */

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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();

View File

@ -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();

View File

@ -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();

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -459,7 +459,7 @@ void ( *vOLEDClear )( void ) = NULL;
} }
/*-----------------------------------------------------------*/ /*-----------------------------------------------------------*/
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName ) void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
{ {
for( ;; ); for( ;; );
} }

View File

@ -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. */

View File

@ -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. */

View File

@ -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. */

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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. */

View File

@ -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. */

View File

@ -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;

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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,

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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( ;; );
} }

View File

@ -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.

View File

@ -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;

View File

@ -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;