mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-29 06:28:36 -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
|
@ -113,12 +113,12 @@ detect a stalled task - a test that is no longer running. */
|
|||
static volatile unsigned long ulLoopCounter = 0;
|
||||
|
||||
/* Handles to the test tasks. */
|
||||
xTaskHandle xMediumPriorityTask, xHighPriorityTask, xHighestPriorityTask;
|
||||
TaskHandle_t xMediumPriorityTask, xHighPriorityTask, xHighestPriorityTask;
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vStartQueuePeekTasks( void )
|
||||
{
|
||||
xQueueHandle xQueue;
|
||||
QueueHandle_t xQueue;
|
||||
|
||||
/* Create the queue that we are going to use for the test/demo. */
|
||||
xQueue = xQueueCreate( qpeekQUEUE_LENGTH, sizeof( unsigned long ) );
|
||||
|
@ -143,7 +143,7 @@ xQueueHandle xQueue;
|
|||
|
||||
static void prvHighestPriorityPeekTask( void *pvParameters )
|
||||
{
|
||||
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
|
||||
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
|
||||
unsigned long ulValue;
|
||||
|
||||
#ifdef USE_STDIO
|
||||
|
@ -252,7 +252,7 @@ unsigned long ulValue;
|
|||
|
||||
static void prvHighPriorityPeekTask( void *pvParameters )
|
||||
{
|
||||
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
|
||||
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
|
||||
unsigned long ulValue;
|
||||
|
||||
for( ;; )
|
||||
|
@ -307,7 +307,7 @@ unsigned long ulValue;
|
|||
|
||||
static void prvMediumPriorityPeekTask( void *pvParameters )
|
||||
{
|
||||
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
|
||||
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
|
||||
unsigned long ulValue;
|
||||
|
||||
for( ;; )
|
||||
|
@ -348,7 +348,7 @@ unsigned long ulValue;
|
|||
|
||||
static void prvLowPriorityPeekTask( void *pvParameters )
|
||||
{
|
||||
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
|
||||
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
|
||||
unsigned long ulValue;
|
||||
|
||||
for( ;; )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue