mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-25 12:38:32 -04:00
Update the demo directory to use the version 8 type naming conventions.
This commit is contained in:
parent
c6d8892b0d
commit
5a2a8fc319
639 changed files with 3127 additions and 3470 deletions
|
@ -95,7 +95,7 @@ static portBASE_TYPE xISRTestStatus = pdPASS;
|
|||
|
||||
/* The queue that is accessed from the ISR. The queue accessed by the task is
|
||||
created inside the task itself. */
|
||||
static xQueueHandle xISRQueue = NULL;
|
||||
static QueueHandle_t xISRQueue = NULL;
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
|
@ -109,13 +109,13 @@ const unsigned portBASE_TYPE uxQueueLength = 1;
|
|||
|
||||
/* Create the test task. The queue used by the test task is created inside
|
||||
the task itself. */
|
||||
xTaskCreate( prvQueueOverwriteTask, "QOver", configMINIMAL_STACK_SIZE, NULL, uxPriority, ( xTaskHandle * ) NULL );
|
||||
xTaskCreate( prvQueueOverwriteTask, "QOver", configMINIMAL_STACK_SIZE, NULL, uxPriority, ( TaskHandle_t * ) NULL );
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvQueueOverwriteTask( void *pvParameters )
|
||||
{
|
||||
xQueueHandle xTaskQueue;
|
||||
QueueHandle_t xTaskQueue;
|
||||
const unsigned portBASE_TYPE uxQueueLength = 1;
|
||||
unsigned long ulValue, ulStatus = pdPASS, x;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue