mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Remove unnecessary 'signed char *' casts from strings that are now just plain char * types in the FreeRTOS-Plus directory.
This commit is contained in:
parent
653fdb81d5
commit
3517bbdcce
|
@ -202,7 +202,7 @@ const int8_t *const pcHeader = ( int8_t * ) "Task State Priority Stac
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskList( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskList( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
@ -223,7 +223,7 @@ const int8_t * const pcHeader = ( int8_t * ) "Task Abs Time % Ti
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskGetRunTimeStats( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskGetRunTimeStats( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
|
|
@ -261,7 +261,7 @@ const int8_t *const pcHeader = ( int8_t * ) "Task State Priority Stac
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskList( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskList( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
@ -282,7 +282,7 @@ const int8_t * const pcHeader = ( int8_t * ) "Task Abs Time % Ti
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskGetRunTimeStats( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskGetRunTimeStats( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
|
|
@ -104,7 +104,7 @@ static xSocket_t prvOpenUDPServerSocket( uint16_t usPort );
|
||||||
|
|
||||||
void vStartUDPCommandInterpreterTask( uint16_t usStackSize, uint32_t ulPort, unsigned portBASE_TYPE uxPriority )
|
void vStartUDPCommandInterpreterTask( uint16_t usStackSize, uint32_t ulPort, unsigned portBASE_TYPE uxPriority )
|
||||||
{
|
{
|
||||||
xTaskCreate( vUDPCommandInterpreterTask, ( signed char * ) "CLI", usStackSize, ( void * ) ulPort, uxPriority, NULL );
|
xTaskCreate( vUDPCommandInterpreterTask, "CLI", usStackSize, ( void * ) ulPort, uxPriority, NULL );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -135,20 +135,20 @@ because simulated time is slower than real time. */
|
||||||
void vStartEchoClientTasks( uint16_t usTaskStackSize, unsigned portBASE_TYPE uxTaskPriority )
|
void vStartEchoClientTasks( uint16_t usTaskStackSize, unsigned portBASE_TYPE uxTaskPriority )
|
||||||
{
|
{
|
||||||
/* Create the echo client task that does not use the zero copy interface. */
|
/* Create the echo client task that does not use the zero copy interface. */
|
||||||
xTaskCreate( prvEchoClientTask, /* The function that implements the task. */
|
xTaskCreate( prvEchoClientTask, /* The function that implements the task. */
|
||||||
( const signed char * const ) "Echo0", /* Just a text name for the task to aid debugging. */
|
"Echo0", /* Just a text name for the task to aid debugging. */
|
||||||
usTaskStackSize, /* The stack size is defined in FreeRTOSIPConfig.h. */
|
usTaskStackSize, /* The stack size is defined in FreeRTOSIPConfig.h. */
|
||||||
NULL, /* The task parameter, not used in this case. */
|
NULL, /* The task parameter, not used in this case. */
|
||||||
uxTaskPriority, /* The priority assigned to the task is defined in FreeRTOSConfig.h. */
|
uxTaskPriority, /* The priority assigned to the task is defined in FreeRTOSConfig.h. */
|
||||||
NULL ); /* The task handle is not used. */
|
NULL ); /* The task handle is not used. */
|
||||||
|
|
||||||
/* Create the echo client task that does use the zero copy interface. */
|
/* Create the echo client task that does use the zero copy interface. */
|
||||||
xTaskCreate( prvZeroCopyEchoClientTask, /* The function that implements the task. */
|
xTaskCreate( prvZeroCopyEchoClientTask, /* The function that implements the task. */
|
||||||
( const signed char * const ) "Echo1", /* Just a text name for the task to aid debugging. */
|
"Echo1", /* Just a text name for the task to aid debugging. */
|
||||||
usTaskStackSize, /* The stack size is defined in FreeRTOSIPConfig.h. */
|
usTaskStackSize, /* The stack size is defined in FreeRTOSIPConfig.h. */
|
||||||
NULL, /* The task parameter, not used in this case. */
|
NULL, /* The task parameter, not used in this case. */
|
||||||
uxTaskPriority, /* The priority assigned to the task is defined in FreeRTOSConfig.h. */
|
uxTaskPriority, /* The priority assigned to the task is defined in FreeRTOSConfig.h. */
|
||||||
NULL ); /* The task handle is not used. */
|
NULL ); /* The task handle is not used. */
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -185,7 +185,7 @@ const int8_t *const pcHeader = ( int8_t * ) "Task State Priority Stac
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskList( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskList( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
@ -206,7 +206,7 @@ const int8_t * const pcHeader = ( int8_t * ) "Task Abs Time % Ti
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskGetRunTimeStats( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskGetRunTimeStats( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
|
|
@ -184,17 +184,17 @@ const uint32_t ulLongTime_ms = 250UL;
|
||||||
/* Start the two tasks as described in the comments at the top of this
|
/* Start the two tasks as described in the comments at the top of this
|
||||||
file. */
|
file. */
|
||||||
xTaskCreate( prvQueueReceiveTask, /* The function that implements the task. */
|
xTaskCreate( prvQueueReceiveTask, /* The function that implements the task. */
|
||||||
( signed char * ) "Rx", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
|
"Rx", /* The text name assigned to the task - for debug only as it is not used by the kernel. */
|
||||||
configMINIMAL_STACK_SIZE, /* The size of the stack to allocate to the task. Not actually used as a stack in the Win32 simulator port. */
|
configMINIMAL_STACK_SIZE, /* The size of the stack to allocate to the task. Not actually used as a stack in the Win32 simulator port. */
|
||||||
NULL, /* The parameter passed to the task - not used in this example. */
|
NULL, /* The parameter passed to the task - not used in this example. */
|
||||||
mainQUEUE_RECEIVE_TASK_PRIORITY, /* The priority assigned to the task. */
|
mainQUEUE_RECEIVE_TASK_PRIORITY, /* The priority assigned to the task. */
|
||||||
NULL ); /* The task handle is not required, so NULL is passed. */
|
NULL ); /* The task handle is not required, so NULL is passed. */
|
||||||
|
|
||||||
xTaskCreate( prvQueueSendTask, ( signed char * ) "TX", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_SEND_TASK_PRIORITY, NULL );
|
xTaskCreate( prvQueueSendTask, "TX", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_SEND_TASK_PRIORITY, NULL );
|
||||||
|
|
||||||
/* Create the task that handles the CLI on a UDP port. The port number
|
/* Create the task that handles the CLI on a UDP port. The port number
|
||||||
is set using the configUDP_CLI_PORT_NUMBER setting in FreeRTOSConfig.h. */
|
is set using the configUDP_CLI_PORT_NUMBER setting in FreeRTOSConfig.h. */
|
||||||
xTaskCreate( vUDPCommandInterpreterTask, ( signed char * ) "CLI", configMINIMAL_STACK_SIZE, NULL, mainUDP_CLI_TASK_PRIORITY, NULL );
|
xTaskCreate( vUDPCommandInterpreterTask, "CLI", configMINIMAL_STACK_SIZE, NULL, mainUDP_CLI_TASK_PRIORITY, NULL );
|
||||||
|
|
||||||
/* Register commands with the FreeRTOS+CLI command interpreter. */
|
/* Register commands with the FreeRTOS+CLI command interpreter. */
|
||||||
vRegisterCLICommands();
|
vRegisterCLICommands();
|
||||||
|
|
|
@ -98,7 +98,7 @@ const uint32_t ulLongTime_ms = 250UL;
|
||||||
|
|
||||||
/* Create the TCP server task. This will itself create the client task
|
/* Create the TCP server task. This will itself create the client task
|
||||||
once it has completed the CyaSSL initialisation. */
|
once it has completed the CyaSSL initialisation. */
|
||||||
xTaskCreate( vSecureTCPServerTask, ( signed char * ) "Server", configMINIMAL_STACK_SIZE, NULL, mainSECURE_SERVER_TASK_PRIORITY, NULL );
|
xTaskCreate( vSecureTCPServerTask, "Server", configMINIMAL_STACK_SIZE, NULL, mainSECURE_SERVER_TASK_PRIORITY, NULL );
|
||||||
|
|
||||||
/* Start the task running. */
|
/* Start the task running. */
|
||||||
vTaskStartScheduler();
|
vTaskStartScheduler();
|
||||||
|
|
|
@ -200,7 +200,7 @@ const int8_t *const pcHeader = ( int8_t * ) "Task State Priority Stac
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskList( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskList( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
@ -221,7 +221,7 @@ const int8_t * const pcHeader = ( int8_t * ) "Task Abs Time % Ti
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskGetRunTimeStats( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskGetRunTimeStats( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
|
|
@ -148,7 +148,7 @@ const uint32_t ulLongTime_ms = 250UL;
|
||||||
/* Create the task that handles the CLI on a UDP port. The port number
|
/* Create the task that handles the CLI on a UDP port. The port number
|
||||||
is set using the configUDP_CLI_PORT_NUMBER setting in FreeRTOSConfig.h. */
|
is set using the configUDP_CLI_PORT_NUMBER setting in FreeRTOSConfig.h. */
|
||||||
xTaskCreate( vUDPCommandInterpreterTask, /* The function that implements the command interpreter IO handling. */
|
xTaskCreate( vUDPCommandInterpreterTask, /* The function that implements the command interpreter IO handling. */
|
||||||
( signed char * ) "CLI", /* The name of the task - just to assist debugging. */
|
"CLI", /* The name of the task - just to assist debugging. */
|
||||||
configMINIMAL_STACK_SIZE, NULL, /* The size of the stack allocated to the task. */
|
configMINIMAL_STACK_SIZE, NULL, /* The size of the stack allocated to the task. */
|
||||||
mainUDP_CLI_TASK_PRIORITY, /* The priority at which the task will run. */
|
mainUDP_CLI_TASK_PRIORITY, /* The priority at which the task will run. */
|
||||||
NULL ); /* A handle to the task is not required, so NULL is passed. */
|
NULL ); /* A handle to the task is not required, so NULL is passed. */
|
||||||
|
|
|
@ -261,7 +261,7 @@ const int8_t *const pcHeader = ( int8_t * ) "Task State Priority Stac
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskList( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskList( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
@ -282,7 +282,7 @@ const int8_t * const pcHeader = ( int8_t * ) "Task Abs Time % Ti
|
||||||
|
|
||||||
/* Generate a table of task stats. */
|
/* Generate a table of task stats. */
|
||||||
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
strcpy( ( char * ) pcWriteBuffer, ( char * ) pcHeader );
|
||||||
vTaskGetRunTimeStats( pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
vTaskGetRunTimeStats( ( char * ) pcWriteBuffer + strlen( ( char * ) pcHeader ) );
|
||||||
|
|
||||||
/* There is no more data to return after this single string, so return
|
/* There is no more data to return after this single string, so return
|
||||||
pdFALSE. */
|
pdFALSE. */
|
||||||
|
|
|
@ -125,16 +125,16 @@ void vCDCCommandConsoleStart( uint16_t usStackSize, unsigned portBASE_TYPE uxPri
|
||||||
|
|
||||||
/* Add the semaphore and mutex to the queue registry for viewing in the
|
/* Add the semaphore and mutex to the queue registry for viewing in the
|
||||||
kernel aware state viewer. */
|
kernel aware state viewer. */
|
||||||
vQueueAddToRegistry( xCDCMutex, ( signed char * ) "CDCMu" );
|
vQueueAddToRegistry( xCDCMutex, "CDCMu" );
|
||||||
vQueueAddToRegistry( xNewDataSemaphore, ( signed char * ) "CDCDat" );
|
vQueueAddToRegistry( xNewDataSemaphore, "CDCDat" );
|
||||||
|
|
||||||
/* Create that task that handles the console itself. */
|
/* Create that task that handles the console itself. */
|
||||||
xTaskCreate( prvCDCCommandConsoleTask, /* The task that implements the command console. */
|
xTaskCreate( prvCDCCommandConsoleTask, /* The task that implements the command console. */
|
||||||
( const int8_t * const ) "CDCCmd", /* Text name assigned to the task. This is just to assist debugging. The kernel does not use this name itself. */
|
"CDCCmd", /* Text name assigned to the task. This is just to assist debugging. The kernel does not use this name itself. */
|
||||||
usStackSize, /* The size of the stack allocated to the task. */
|
usStackSize, /* The size of the stack allocated to the task. */
|
||||||
NULL, /* The parameter is not used, so NULL is passed. */
|
NULL, /* The parameter is not used, so NULL is passed. */
|
||||||
uxPriority, /* The priority allocated to the task. */
|
uxPriority, /* The priority allocated to the task. */
|
||||||
NULL ); /* A handle is not required, so just pass NULL. */
|
NULL ); /* A handle is not required, so just pass NULL. */
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -100,11 +100,11 @@ static xTimerHandle xLEDToggleTimer = NULL;
|
||||||
GPIO_SetDir( ledLED1_PORT, ledLED1_BIT, 1 );
|
GPIO_SetDir( ledLED1_PORT, ledLED1_BIT, 1 );
|
||||||
|
|
||||||
/* Create the timer used to toggle LED0. */
|
/* Create the timer used to toggle LED0. */
|
||||||
xLEDToggleTimer = xTimerCreate( ( const int8_t * ) "LEDTmr", /* Just a text name to associate with the timer, useful for debugging, but not used by the kernel. */
|
xLEDToggleTimer = xTimerCreate( "LEDTmr", /* Just a text name to associate with the timer, useful for debugging, but not used by the kernel. */
|
||||||
ledTOGGLE_RATE, /* The period of the timer. */
|
ledTOGGLE_RATE, /* The period of the timer. */
|
||||||
pdTRUE, /* This timer will autoreload, so uxAutoReload is set to pdTRUE. */
|
pdTRUE, /* This timer will autoreload, so uxAutoReload is set to pdTRUE. */
|
||||||
NULL, /* The timer ID is not used, so can be set to NULL. */
|
NULL, /* The timer ID is not used, so can be set to NULL. */
|
||||||
prvLEDToggleTimerCallback ); /* The callback function executed each time the timer expires. */
|
prvLEDToggleTimerCallback ); /* The callback function executed each time the timer expires. */
|
||||||
|
|
||||||
/* Sanity check that the timer was actually created. */
|
/* Sanity check that the timer was actually created. */
|
||||||
configASSERT( xLEDToggleTimer );
|
configASSERT( xLEDToggleTimer );
|
||||||
|
|
|
@ -107,8 +107,8 @@ void vStartSelectUDPServerTasks( uint16_t usStackSize, uint32_t ulFirstPortNumbe
|
||||||
FreeRTOS_select() function to receive from multiple sockets. The first
|
FreeRTOS_select() function to receive from multiple sockets. The first
|
||||||
port number to use is passed into both tasks using the task's parameter.
|
port number to use is passed into both tasks using the task's parameter.
|
||||||
Other port numbers are consecutive from the first. */
|
Other port numbers are consecutive from the first. */
|
||||||
xTaskCreate( prvMultipleSocketTxTask, ( const signed char * const ) "MultiTx", usStackSize, ( void * ) ulFirstPortNumber, uxPriority, NULL );
|
xTaskCreate( prvMultipleSocketTxTask, "MultiTx", usStackSize, ( void * ) ulFirstPortNumber, uxPriority, NULL );
|
||||||
xTaskCreate( prvMultipleSocketRxTask, ( const signed char * const ) "MultiRx", usStackSize, ( void * ) ulFirstPortNumber, uxPriority, NULL );
|
xTaskCreate( prvMultipleSocketRxTask, "MultiRx", usStackSize, ( void * ) ulFirstPortNumber, uxPriority, NULL );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@ static xSocket_t prvOpenUDPServerSocket( uint16_t usPort );
|
||||||
|
|
||||||
void vStartUDPCommandInterpreterTask( uint16_t usStackSize, uint32_t ulPort, unsigned portBASE_TYPE uxPriority )
|
void vStartUDPCommandInterpreterTask( uint16_t usStackSize, uint32_t ulPort, unsigned portBASE_TYPE uxPriority )
|
||||||
{
|
{
|
||||||
xTaskCreate( vUDPCommandInterpreterTask, ( signed char * ) "CLI", usStackSize, ( void * ) ulPort, uxPriority, NULL );
|
xTaskCreate( vUDPCommandInterpreterTask, "CLI", usStackSize, ( void * ) ulPort, uxPriority, NULL );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -184,10 +184,10 @@ used. */
|
||||||
/* The address of an echo server that will be used by the two demo echo client
|
/* The address of an echo server that will be used by the two demo echo client
|
||||||
tasks.
|
tasks.
|
||||||
http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/Embedded_Ethernet_Examples/Common_Echo_Clients.shtml */
|
http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/Embedded_Ethernet_Examples/Common_Echo_Clients.shtml */
|
||||||
#define configECHO_SERVER_ADDR0 172
|
#define configECHO_SERVER_ADDR0 10
|
||||||
#define configECHO_SERVER_ADDR1 25
|
#define configECHO_SERVER_ADDR1 134
|
||||||
#define configECHO_SERVER_ADDR2 218
|
#define configECHO_SERVER_ADDR2 134
|
||||||
#define configECHO_SERVER_ADDR3 200
|
#define configECHO_SERVER_ADDR3 71
|
||||||
|
|
||||||
/* Default MAC address configuration. The demo creates a virtual network
|
/* Default MAC address configuration. The demo creates a virtual network
|
||||||
connection that uses this MAC address by accessing the raw Ethernet/WiFi data
|
connection that uses this MAC address by accessing the raw Ethernet/WiFi data
|
||||||
|
|
|
@ -327,7 +327,7 @@ unsigned long ulNetMask;
|
||||||
/* Create a task that simulates an interrupt in a real system. This will
|
/* Create a task that simulates an interrupt in a real system. This will
|
||||||
block waiting for packets, then send a message to the uIP task when data
|
block waiting for packets, then send a message to the uIP task when data
|
||||||
is available. */
|
is available. */
|
||||||
xTaskCreate( prvInterruptSimulator, ( signed char * ) "MAC_ISR", configMINIMAL_STACK_SIZE, NULL, ( configuIP_TASK_PRIORITY - 1 ), NULL );
|
xTaskCreate( prvInterruptSimulator, "MAC_ISR", configMINIMAL_STACK_SIZE, NULL, ( configuIP_TASK_PRIORITY - 1 ), NULL );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -104,8 +104,8 @@
|
||||||
exclude. */
|
exclude. */
|
||||||
#define mainCREATE_UDP_CLI_TASKS 1
|
#define mainCREATE_UDP_CLI_TASKS 1
|
||||||
#define mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS 0
|
#define mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS 0
|
||||||
#define mainCREATE_SELECT_UDP_SERVER_TASKS 1
|
#define mainCREATE_SELECT_UDP_SERVER_TASKS 0
|
||||||
#define mainCREATE_UDP_ECHO_TASKS 0
|
#define mainCREATE_UDP_ECHO_TASKS 1
|
||||||
|
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
|
@ -451,7 +451,7 @@ extern void vIPFunctionsTimerCallback( xTimerHandle xTimer );
|
||||||
|
|
||||||
if( xDHCPTimer == NULL )
|
if( xDHCPTimer == NULL )
|
||||||
{
|
{
|
||||||
xDHCPTimer = xTimerCreate( ( const signed char * const ) "DHCP", dhcpINITIAL_TIMER_PERIOD, pdTRUE, ( void * ) eDHCPEvent, vIPFunctionsTimerCallback );
|
xDHCPTimer = xTimerCreate( "DHCP", dhcpINITIAL_TIMER_PERIOD, pdTRUE, ( void * ) eDHCPEvent, vIPFunctionsTimerCallback );
|
||||||
configASSERT( xDHCPTimer );
|
configASSERT( xDHCPTimer );
|
||||||
xTimerStart( xDHCPTimer, portMAX_DELAY );
|
xTimerStart( xDHCPTimer, portMAX_DELAY );
|
||||||
}
|
}
|
||||||
|
|
|
@ -392,7 +392,7 @@ xIPStackEvent_t xReceivedEvent;
|
||||||
|
|
||||||
/* Create the ARP timer, but don't start it until the network has
|
/* Create the ARP timer, but don't start it until the network has
|
||||||
connected. */
|
connected. */
|
||||||
xARPTimer = xTimerCreate( ( const signed char * const ) "ARPTimer", ( ipARP_TIMER_PERIOD_MS / portTICK_RATE_MS ), pdTRUE, ( void * ) eARPTimerEvent, vIPFunctionsTimerCallback );
|
xARPTimer = xTimerCreate( "ARPTimer", ( ipARP_TIMER_PERIOD_MS / portTICK_RATE_MS ), pdTRUE, ( void * ) eARPTimerEvent, vIPFunctionsTimerCallback );
|
||||||
configASSERT( xARPTimer );
|
configASSERT( xARPTimer );
|
||||||
|
|
||||||
/* Generate a dummy message to say that the network connection has gone
|
/* Generate a dummy message to say that the network connection has gone
|
||||||
|
@ -557,7 +557,7 @@ static portBASE_TYPE xReturn = pdFALSE;
|
||||||
{
|
{
|
||||||
xNetworkEventQueue = xQueueCreate( ipconfigEVENT_QUEUE_LENGTH, sizeof( xIPStackEvent_t ) );
|
xNetworkEventQueue = xQueueCreate( ipconfigEVENT_QUEUE_LENGTH, sizeof( xIPStackEvent_t ) );
|
||||||
configASSERT( xNetworkEventQueue );
|
configASSERT( xNetworkEventQueue );
|
||||||
vQueueAddToRegistry( xNetworkEventQueue, ( signed char * ) "NetEvnt" );
|
vQueueAddToRegistry( xNetworkEventQueue, "NetEvnt" );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( xNetworkBuffersInitialise() == pdPASS )
|
if( xNetworkBuffersInitialise() == pdPASS )
|
||||||
|
@ -597,7 +597,7 @@ static portBASE_TYPE xReturn = pdFALSE;
|
||||||
FreeRTOS_SocketsInit();
|
FreeRTOS_SocketsInit();
|
||||||
|
|
||||||
/* Create the task that processes Ethernet and stack events. */
|
/* Create the task that processes Ethernet and stack events. */
|
||||||
xReturn = xTaskCreate( prvIPTask, ( const signed char * const ) "UDP/IP", ipconfigUDP_TASK_STACK_SIZE_WORDS, NULL, ipconfigUDP_TASK_PRIORITY, NULL );
|
xReturn = xTaskCreate( prvIPTask, "UDP/IP", ipconfigUDP_TASK_STACK_SIZE_WORDS, NULL, ipconfigUDP_TASK_PRIORITY, NULL );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,7 +95,7 @@ portBASE_TYPE xReturn, x;
|
||||||
{
|
{
|
||||||
xNetworkBufferSemaphore = xSemaphoreCreateCounting( ipconfigNUM_NETWORK_BUFFERS, ipconfigNUM_NETWORK_BUFFERS );
|
xNetworkBufferSemaphore = xSemaphoreCreateCounting( ipconfigNUM_NETWORK_BUFFERS, ipconfigNUM_NETWORK_BUFFERS );
|
||||||
configASSERT( xNetworkBufferSemaphore );
|
configASSERT( xNetworkBufferSemaphore );
|
||||||
vQueueAddToRegistry( xNetworkBufferSemaphore, ( signed char * ) "NetBufSem" );
|
vQueueAddToRegistry( xNetworkBufferSemaphore, "NetBufSem" );
|
||||||
|
|
||||||
/* If the trace recorder code is included name the semaphore for viewing
|
/* If the trace recorder code is included name the semaphore for viewing
|
||||||
in FreeRTOS+Trace. */
|
in FreeRTOS+Trace. */
|
||||||
|
|
|
@ -122,7 +122,7 @@ extern uint8_t ucMACAddress[ 6 ];
|
||||||
|
|
||||||
/* The handler task is created at the highest possible priority to
|
/* The handler task is created at the highest possible priority to
|
||||||
ensure the interrupt handler can return directly to it. */
|
ensure the interrupt handler can return directly to it. */
|
||||||
xTaskCreate( prvEMACHandlerTask, ( const signed char * const ) "EMAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );
|
xTaskCreate( prvEMACHandlerTask, "EMAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );
|
||||||
|
|
||||||
/* Enable the interrupt and set its priority to the minimum
|
/* Enable the interrupt and set its priority to the minimum
|
||||||
interrupt priority. */
|
interrupt priority. */
|
||||||
|
|
|
@ -124,7 +124,7 @@ extern uint8_t ucMACAddress[ 6 ];
|
||||||
possible priority to ensure the interrupt handler can return directly to
|
possible priority to ensure the interrupt handler can return directly to
|
||||||
it no matter which task was running when the interrupt occurred. */
|
it no matter which task was running when the interrupt occurred. */
|
||||||
xTaskCreate( prvEMACDeferredInterruptHandlerTask, /* The function that implements the task. */
|
xTaskCreate( prvEMACDeferredInterruptHandlerTask, /* The function that implements the task. */
|
||||||
( const signed char * const ) "MACTsk",
|
"MACTsk",
|
||||||
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
||||||
NULL, /* The task parameter is not used. */
|
NULL, /* The task parameter is not used. */
|
||||||
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
||||||
|
|
|
@ -126,7 +126,7 @@ extern uint8_t ucMACAddress[ 6 ];
|
||||||
possible priority to ensure the interrupt handler can return directly to
|
possible priority to ensure the interrupt handler can return directly to
|
||||||
it no matter which task was running when the interrupt occurred. */
|
it no matter which task was running when the interrupt occurred. */
|
||||||
xTaskCreate( prvEMACDeferredInterruptHandlerTask,/* The function that implements the task. */
|
xTaskCreate( prvEMACDeferredInterruptHandlerTask,/* The function that implements the task. */
|
||||||
( const signed char * const ) "MACTsk",
|
"MACTsk",
|
||||||
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
||||||
NULL, /* The task parameter is not used. */
|
NULL, /* The task parameter is not used. */
|
||||||
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
||||||
|
|
|
@ -145,7 +145,7 @@ portBASE_TYPE xReturn = pdFALSE;
|
||||||
return directly to it no matter which task was running when the
|
return directly to it no matter which task was running when the
|
||||||
interrupt occurred. */
|
interrupt occurred. */
|
||||||
xTaskCreate( prvGMACDeferredInterruptHandlerTask,/* The function that implements the task. */
|
xTaskCreate( prvGMACDeferredInterruptHandlerTask,/* The function that implements the task. */
|
||||||
( const signed char * const ) "MACTsk",
|
"MACTsk",
|
||||||
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
configMINIMAL_STACK_SIZE, /* Stack allocated to the task (defined in words, not bytes). */
|
||||||
NULL, /* The task parameter is not used. */
|
NULL, /* The task parameter is not used. */
|
||||||
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
configMAX_PRIORITIES - 1, /* The priority assigned to the task. */
|
||||||
|
|
|
@ -113,7 +113,7 @@ extern uint8_t ucMACAddress[ 6 ];
|
||||||
|
|
||||||
/* The handler task is created at the highest possible priority to
|
/* The handler task is created at the highest possible priority to
|
||||||
ensure the interrupt handler can return directly to it. */
|
ensure the interrupt handler can return directly to it. */
|
||||||
xTaskCreate( vEMACHandlerTask, ( const signed char * const ) "EMAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );
|
xTaskCreate( vEMACHandlerTask, "EMAC", configMINIMAL_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL );
|
||||||
xReturn = pdPASS;
|
xReturn = pdPASS;
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
|
|
|
@ -382,7 +382,7 @@ unsigned long ulNetMask;
|
||||||
/* Create a task that simulates an interrupt in a real system. This will
|
/* Create a task that simulates an interrupt in a real system. This will
|
||||||
block waiting for packets, then send a message to the uIP task when data
|
block waiting for packets, then send a message to the uIP task when data
|
||||||
is available. */
|
is available. */
|
||||||
xTaskCreate( prvInterruptSimulatorTask, ( signed char * ) "MAC_ISR", configMINIMAL_STACK_SIZE, NULL, configMAC_ISR_SIMULATOR_PRIORITY, NULL );
|
xTaskCreate( prvInterruptSimulatorTask, "MAC_ISR", configMINIMAL_STACK_SIZE, NULL, configMAC_ISR_SIMULATOR_PRIORITY, NULL );
|
||||||
}
|
}
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue