mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 04:13:54 -04:00
Start to remove unnecessary 'signed char *' casts from strings that are now just plain char * types.
This commit is contained in:
parent
b4116a7c7d
commit
da93f1fc4b
261 changed files with 2822 additions and 2815 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
/*------------------------------------------------------------------------
|
||||
taskutility.C
|
||||
-
|
||||
-
|
||||
-------------------------------------------------------------------------*/
|
||||
|
||||
/*************************@INCLUDE_START************************/
|
||||
|
@ -138,7 +138,7 @@ void vUtilityStartTraceTask( unsigned portBASE_TYPE uxPriority )
|
|||
portENTER_CRITICAL();
|
||||
InitUart0();
|
||||
portENTER_CRITICAL();
|
||||
xTaskCreate( vUART0Task, (signed portCHAR *) "UART1", configMINIMAL_STACK_SIZE * 3, ( void * ) NULL, uxPriority, &UART_TaskHandle );
|
||||
xTaskCreate( vUART0Task, "UART1", configMINIMAL_STACK_SIZE * 3, ( void * ) NULL, uxPriority, &UART_TaskHandle );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -171,7 +171,7 @@ static void vUART0Task( void *pvParameters )
|
|||
switch( ch )
|
||||
{
|
||||
case '1':
|
||||
vTaskList( (signed char *) buff );
|
||||
vTaskList( buff );
|
||||
Puts0( "\n\rThe current task list is as follows...." );
|
||||
Puts0( "\n\r----------------------------------------------" );
|
||||
Puts0( "\n\rName State Priority Stack Number" );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue