]> git.sur5r.net Git - freertos/commitdiff
Cosmetic work towards MISRA compliance statement pre release of V7.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 5 Apr 2011 20:19:54 +0000 (20:19 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 5 Apr 2011 20:19:54 +0000 (20:19 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1345 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/include/FreeRTOS.h
Source/include/StackMacros.h
Source/include/croutine.h
Source/include/queue.h
Source/include/semphr.h
Source/include/task.h
Source/include/timers.h
Source/queue.c
Source/tasks.c
Source/timers.c

index cbaf57b4816a398f8a871cda2914cd34d27199b9..0edc2af468d102c8b35867c59a42a2e628da96cd 100644 (file)
@@ -173,8 +173,7 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
 #endif\r
 \r
 #if configMAX_TASK_NAME_LEN < 1\r
-       #undef configMAX_TASK_NAME_LEN\r
-       #define configMAX_TASK_NAME_LEN 1\r
+       #error configMAX_TASK_NAME_LEN must be set to a minimum of 1 in FreeRTOSConfig.h\r
 #endif\r
 \r
 #ifndef INCLUDE_xTaskResumeFromISR\r
@@ -188,9 +187,6 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
 /* The timers module relies on xTaskGetSchedulerState(). */\r
 #if configUSE_TIMERS == 1\r
 \r
-       #undef INCLUDE_xTaskGetSchedulerState\r
-       #define INCLUDE_xTaskGetSchedulerState 1\r
-\r
        #ifndef configTIMER_TASK_PRIORITY\r
                #error If configUSE_TIMERS is set to 1 then configTIMER_TASK_PRIORITY must also be defined.\r
        #endif /* configTIMER_TASK_PRIORITY */\r
@@ -209,15 +205,8 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
        #define INCLUDE_xTaskGetSchedulerState 0\r
 #endif\r
 \r
-#if ( configUSE_MUTEXES == 1 )\r
-       /* xTaskGetCurrentTaskHandle is used by the priority inheritance mechanism\r
-       within the mutex implementation so must be available if mutexes are used. */\r
-       #undef INCLUDE_xTaskGetCurrentTaskHandle\r
-       #define INCLUDE_xTaskGetCurrentTaskHandle 1\r
-#else\r
-       #ifndef INCLUDE_xTaskGetCurrentTaskHandle\r
-               #define INCLUDE_xTaskGetCurrentTaskHandle 0\r
-       #endif\r
+#ifndef INCLUDE_xTaskGetCurrentTaskHandle\r
+       #define INCLUDE_xTaskGetCurrentTaskHandle 0\r
 #endif\r
 \r
 \r
@@ -231,11 +220,10 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
 \r
 \r
 #ifndef configQUEUE_REGISTRY_SIZE\r
-       #define configQUEUE_REGISTRY_SIZE 0\r
+       #define configQUEUE_REGISTRY_SIZE 0U\r
 #endif\r
 \r
-#if configQUEUE_REGISTRY_SIZE < 1\r
-       #define configQUEUE_REGISTRY_SIZE 0\r
+#if ( configQUEUE_REGISTRY_SIZE < 1U )\r
        #define vQueueAddToRegistry( xQueue, pcName )\r
        #define vQueueUnregisterQueue( xQueue )\r
 #endif\r
index 902738c81944c96cc70616b20b10b32d99e9f244..9a96151e80b950550d348e6c5ff37524a9ca0c07 100644 (file)
 \r
 #if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) && ( portSTACK_GROWTH > 0 ) )\r
 \r
-       #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()                                                                                                                                                                                                   \\r
-       {                                                                                                                                                                                                                                                                                               \\r
-       char *pcEndOfStack = ( char * ) pxCurrentTCB->pxEndOfStack;                                                                                                                                                                             \\r
-       static const unsigned char ucExpectedStackBytes[] = {   tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,                 \\r
-                                                                                                                               tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
-                                                                                                                               tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
-                                                                                                                               tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
-                                                                                                                               tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE };       \\r
-                                                                                                                                                                                                                                                                                                       \\r
-                                                                                                                                                                                                                                                                                                       \\r
-               pcEndOfStack -= sizeof( ucExpectedStackBytes );                                                                                                                                                                                         \\r
-                                                                                                                                                                                                                                                                                                       \\r
-               /* Has the extremity of the task stack ever been written over? */                                                                                                                                                       \\r
-               if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 )                                                           \\r
-               {                                                                                                                                                                                                                                                                                       \\r
-                       vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );                                                                                                \\r
-               }                                                                                                                                                                                                                                                                                       \\r
+       #define taskSECOND_CHECK_FOR_STACK_OVERFLOW()                                                                                                                                                                                           \\r
+       {                                                                                                                                                                                                                                                                                       \\r
+       char *pcEndOfStack = ( char * ) pxCurrentTCB->pxEndOfStack;                                                                                                                                                                     \\r
+       static const unsigned char ucExpectedStackBytes[] = {   tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
+                                                                                                                       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
+                                                                                                                       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
+                                                                                                                       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE,         \\r
+                                                                                                                       tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE, tskSTACK_FILL_BYTE };       \\r
+                                                                                                                                                                                                                                                                                               \\r
+                                                                                                                                                                                                                                                                                               \\r
+               pcEndOfStack -= sizeof( ucExpectedStackBytes );                                                                                                                                                                                 \\r
+                                                                                                                                                                                                                                                                                               \\r
+               /* Has the extremity of the task stack ever been written over? */                                                                                                                                               \\r
+               if( memcmp( ( void * ) pcEndOfStack, ( void * ) ucExpectedStackBytes, sizeof( ucExpectedStackBytes ) ) != 0 )                                                   \\r
+               {                                                                                                                                                                                                                                                                               \\r
+                       vApplicationStackOverflowHook( ( xTaskHandle ) pxCurrentTCB, pxCurrentTCB->pcTaskName );                                                                                        \\r
+               }                                                                                                                                                                                                                                                                               \\r
        }\r
 \r
 #endif /* #if( configCHECK_FOR_STACK_OVERFLOW > 1 ) */\r
index fec57c46ca21aec31e9b01c37bc8248acc39bb4f..21b6358d9ae84bcbff447953824787685655db86 100644 (file)
@@ -406,7 +406,7 @@ void vCoRoutineSchedule( void );
 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult )                        \\r
 {                                                                                                                                                                              \\r
        *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) );       \\r
-       if( *pxResult == errQUEUE_BLOCKED )                                                                                                     \\r
+       if( *( pxResult ) == errQUEUE_BLOCKED )                                                                                         \\r
        {                                                                                                                                                                       \\r
                crSET_STATE0( ( xHandle ) );                                                                                                    \\r
                *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 );                                  \\r
index f9d7bfa78f18e1661b1fda3f0669d82946d99b11..0c166786fdf6fe2518aea825ac38f2b6256f5dea 100644 (file)
@@ -33,9 +33,9 @@
     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
-    more details. You should have received a copy of the GNU General Public \r
-    License and the FreeRTOS license exception along with FreeRTOS; if not it \r
-    can be viewed here: http://www.freertos.org/a00114.html and also obtained \r
+    more details. You should have received a copy of the GNU General Public\r
+    License and the FreeRTOS license exception along with FreeRTOS; if not it\r
+    can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
     by writing to Richard Barry, contact details for whom are available on the\r
     FreeRTOS WEB site.\r
 \r
     licensing and training services.\r
 */\r
 \r
-#ifndef INC_FREERTOS_H\r
-       #error "#include FreeRTOS.h" must appear in source files before "#include queue.h"\r
-#endif\r
-\r
-\r
-\r
 \r
 #ifndef QUEUE_H\r
 #define QUEUE_H\r
 \r
+#ifndef INC_FREERTOS_H\r
+       #error "#include FreeRTOS.h" must appear in source files before "#include queue.h"\r
+#endif\r
+\r
 #ifdef __cplusplus\r
 extern "C" {\r
 #endif\r
@@ -219,7 +217,7 @@ xQueueHandle xQueueCreate( unsigned portBASE_TYPE uxQueueLength, unsigned portBA
  * \defgroup xQueueSend xQueueSend\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, queueSEND_TO_FRONT )\r
+#define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT )\r
 \r
 /**\r
  * queue. h\r
@@ -301,7 +299,7 @@ xQueueHandle xQueueCreate( unsigned portBASE_TYPE uxQueueLength, unsigned portBA
  * \defgroup xQueueSend xQueueSend\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, queueSEND_TO_BACK )\r
+#define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK )\r
 \r
 /**\r
  * queue. h\r
@@ -385,7 +383,7 @@ xQueueHandle xQueueCreate( unsigned portBASE_TYPE uxQueueLength, unsigned portBA
  * \defgroup xQueueSend xQueueSend\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, queueSEND_TO_BACK )\r
+#define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK )\r
 \r
 \r
 /**\r
@@ -567,7 +565,7 @@ signed portBASE_TYPE xQueueGenericSend( xQueueHandle pxQueue, const void * const
  * \defgroup xQueueReceive xQueueReceive\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueuePeek( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( xQueue, pvBuffer, xTicksToWait, pdTRUE )\r
+#define xQueuePeek( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdTRUE )\r
 \r
 /**\r
  * queue. h\r
@@ -660,7 +658,7 @@ signed portBASE_TYPE xQueueGenericSend( xQueueHandle pxQueue, const void * const
  * \defgroup xQueueReceive xQueueReceive\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueReceive( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( xQueue, pvBuffer, xTicksToWait, pdFALSE )\r
+#define xQueueReceive( xQueue, pvBuffer, xTicksToWait ) xQueueGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdFALSE )\r
 \r
 \r
 /**\r
@@ -858,7 +856,7 @@ void vQueueDelete( xQueueHandle pxQueue );
  * \defgroup xQueueSendFromISR xQueueSendFromISR\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSendToFrontFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken, queueSEND_TO_FRONT )\r
+#define xQueueSendToFrontFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT )\r
 \r
 \r
 /**\r
@@ -929,7 +927,7 @@ void vQueueDelete( xQueueHandle pxQueue );
  * \defgroup xQueueSendFromISR xQueueSendFromISR\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSendToBackFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken, queueSEND_TO_BACK )\r
+#define xQueueSendToBackFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK )\r
 \r
 /**\r
  * queue. h\r
@@ -1003,7 +1001,7 @@ void vQueueDelete( xQueueHandle pxQueue );
  * \defgroup xQueueSendFromISR xQueueSendFromISR\r
  * \ingroup QueueManagement\r
  */\r
-#define xQueueSendFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken, queueSEND_TO_BACK )\r
+#define xQueueSendFromISR( pxQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) xQueueGenericSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK )\r
 \r
 /**\r
  * queue. h\r
@@ -1197,10 +1195,10 @@ unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle pxQueue
  */\r
 signed portBASE_TYPE xQueueAltGenericSend( xQueueHandle pxQueue, const void * const pvItemToQueue, portTickType xTicksToWait, portBASE_TYPE xCopyPosition );\r
 signed portBASE_TYPE xQueueAltGenericReceive( xQueueHandle pxQueue, void * const pvBuffer, portTickType xTicksToWait, portBASE_TYPE xJustPeeking );\r
-#define xQueueAltSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueAltGenericSend( xQueue, pvItemToQueue, xTicksToWait, queueSEND_TO_FRONT )\r
-#define xQueueAltSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueAltGenericSend( xQueue, pvItemToQueue, xTicksToWait, queueSEND_TO_BACK )\r
-#define xQueueAltReceive( xQueue, pvBuffer, xTicksToWait ) xQueueAltGenericReceive( xQueue, pvBuffer, xTicksToWait, pdFALSE )\r
-#define xQueueAltPeek( xQueue, pvBuffer, xTicksToWait ) xQueueAltGenericReceive( xQueue, pvBuffer, xTicksToWait, pdTRUE )\r
+#define xQueueAltSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueAltGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT )\r
+#define xQueueAltSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueAltGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK )\r
+#define xQueueAltReceive( xQueue, pvBuffer, xTicksToWait ) xQueueAltGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdFALSE )\r
+#define xQueueAltPeek( xQueue, pvBuffer, xTicksToWait ) xQueueAltGenericReceive( ( xQueue ), ( pvBuffer ), ( xTicksToWait ), pdTRUE )\r
 \r
 /*\r
  * The functions defined above are for passing data to and from tasks.  The\r
@@ -1250,7 +1248,7 @@ portBASE_TYPE xQueueGiveMutexRecursive( xQueueHandle pxMutex );
  * @param pcName The name to be associated with the handle.  This is the\r
  * name that the kernel aware debugger will display.\r
  */\r
-#if configQUEUE_REGISTRY_SIZE > 0\r
+#if configQUEUE_REGISTRY_SIZE > 0U\r
        void vQueueAddToRegistry( xQueueHandle xQueue, signed char *pcName );\r
 #endif\r
 \r
index 8674096ad5e5c26de74ca9b791a8610641fd2609..c08659786ad77ceb86c12d70a22708954c2938e0 100644 (file)
     licensing and training services.\r
 */\r
 \r
+#ifndef SEMAPHORE_H\r
+#define SEMAPHORE_H\r
+\r
 #ifndef INC_FREERTOS_H\r
        #error "#include FreeRTOS.h" must appear in source files before "#include semphr.h"\r
 #endif\r
 \r
-#ifndef SEMAPHORE_H\r
-#define SEMAPHORE_H\r
-\r
 #include "queue.h"\r
 \r
 typedef xQueueHandle xSemaphoreHandle;\r
 \r
-#define semBINARY_SEMAPHORE_QUEUE_LENGTH       ( ( unsigned char ) 1 )\r
-#define semSEMAPHORE_QUEUE_ITEM_LENGTH         ( ( unsigned char ) 0 )\r
-#define semGIVE_BLOCK_TIME                                     ( ( portTickType ) 0 )\r
+#define semBINARY_SEMAPHORE_QUEUE_LENGTH       ( ( unsigned char ) 1U )\r
+#define semSEMAPHORE_QUEUE_ITEM_LENGTH         ( ( unsigned char ) 0U )\r
+#define semGIVE_BLOCK_TIME                                     ( ( portTickType ) 0U )\r
 \r
 \r
 /**\r
@@ -105,12 +105,12 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup vSemaphoreCreateBinary vSemaphoreCreateBinary\r
  * \ingroup Semaphores\r
  */\r
-#define vSemaphoreCreateBinary( xSemaphore )           {                                                                                                                                                                                               \\r
-                                                                                                               xSemaphore = xQueueCreate( ( unsigned portBASE_TYPE ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH );      \\r
-                                                                                                               if( xSemaphore != NULL )                                                                                                                                        \\r
-                                                                                                               {                                                                                                                                                                                       \\r
-                                                                                                                       xSemaphoreGive( xSemaphore );                                                                                                                   \\r
-                                                                                                               }                                                                                                                                                                                       \\r
+#define vSemaphoreCreateBinary( xSemaphore )           {                                                                                                                                                                                                       \\r
+                                                                                                               ( xSemaphore ) = xQueueCreate( ( unsigned portBASE_TYPE ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH );  \\r
+                                                                                                               if( ( xSemaphore ) != NULL )                                                                                                                                    \\r
+                                                                                                               {                                                                                                                                                                                               \\r
+                                                                                                                       xSemaphoreGive( ( xSemaphore ) );                                                                                                                       \\r
+                                                                                                               }                                                                                                                                                                                               \\r
                                                                                                        }\r
 \r
 /**\r
@@ -178,7 +178,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreTake xSemaphoreTake\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreTake( xSemaphore, xBlockTime )               xQueueGenericReceive( ( xQueueHandle ) xSemaphore, NULL, xBlockTime, pdFALSE )\r
+#define xSemaphoreTake( xSemaphore, xBlockTime )               xQueueGenericReceive( ( xQueueHandle ) ( xSemaphore ), NULL, ( xBlockTime ), pdFALSE )\r
 \r
 /**\r
  * semphr. h\r
@@ -271,7 +271,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreTakeRecursive xSemaphoreTakeRecursive\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreTakeRecursive( xMutex, xBlockTime )  xQueueTakeMutexRecursive( xMutex, xBlockTime )\r
+#define xSemaphoreTakeRecursive( xMutex, xBlockTime )  xQueueTakeMutexRecursive( ( xMutex ), ( xBlockTime ) )\r
 \r
 \r
 /* \r
@@ -286,7 +286,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * responsiveness to gain execution speed, whereas the fully featured API\r
  * sacrifices execution speed to ensure better interrupt responsiveness.\r
  */\r
-#define xSemaphoreAltTake( xSemaphore, xBlockTime )            xQueueAltGenericReceive( ( xQueueHandle ) xSemaphore, NULL, xBlockTime, pdFALSE )\r
+#define xSemaphoreAltTake( xSemaphore, xBlockTime )            xQueueAltGenericReceive( ( xQueueHandle ) ( xSemaphore ), NULL, ( xBlockTime ), pdFALSE )\r
 \r
 /**\r
  * semphr. h\r
@@ -349,7 +349,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreGive xSemaphoreGive\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreGive( xSemaphore )           xQueueGenericSend( ( xQueueHandle ) xSemaphore, NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK )\r
+#define xSemaphoreGive( xSemaphore )           xQueueGenericSend( ( xQueueHandle ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK )\r
 \r
 /**\r
  * semphr. h\r
@@ -433,7 +433,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreGiveRecursive xSemaphoreGiveRecursive\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreGiveRecursive( xMutex )      xQueueGiveMutexRecursive( xMutex )\r
+#define xSemaphoreGiveRecursive( xMutex )      xQueueGiveMutexRecursive( ( xMutex ) )\r
 \r
 /* \r
  * xSemaphoreAltGive() is an alternative version of xSemaphoreGive().\r
@@ -447,7 +447,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * responsiveness to gain execution speed, whereas the fully featured API\r
  * sacrifices execution speed to ensure better interrupt responsiveness.\r
  */\r
-#define xSemaphoreAltGive( xSemaphore )                xQueueAltGenericSend( ( xQueueHandle ) xSemaphore, NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK )\r
+#define xSemaphoreAltGive( xSemaphore )                xQueueAltGenericSend( ( xQueueHandle ) ( xSemaphore ), NULL, semGIVE_BLOCK_TIME, queueSEND_TO_BACK )\r
 \r
 /**\r
  * semphr. h\r
@@ -538,7 +538,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreGiveFromISR xSemaphoreGiveFromISR\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken )                 xQueueGenericSendFromISR( ( xQueueHandle ) xSemaphore, NULL, pxHigherPriorityTaskWoken, queueSEND_TO_BACK )\r
+#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken )                 xQueueGenericSendFromISR( ( xQueueHandle ) ( xSemaphore ), NULL, ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK )\r
 \r
 /**\r
  * semphr. h\r
@@ -703,7 +703,7 @@ typedef xQueueHandle xSemaphoreHandle;
  * \defgroup xSemaphoreCreateCounting xSemaphoreCreateCounting\r
  * \ingroup Semaphores\r
  */\r
-#define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( uxMaxCount, uxInitialCount )\r
+#define xSemaphoreCreateCounting( uxMaxCount, uxInitialCount ) xQueueCreateCountingSemaphore( ( uxMaxCount ), ( uxInitialCount ) )\r
 \r
 \r
 #endif /* SEMAPHORE_H */\r
index 3a64d096631ae91161919aa90498825e6745950c..c4b65b750dc513b26768c343c98011af96085e29 100644 (file)
@@ -122,7 +122,7 @@ typedef struct xTASK_PARAMTERS
  *\r
  * \ingroup TaskUtils\r
  */\r
-#define tskIDLE_PRIORITY                       ( ( unsigned portBASE_TYPE ) 0 )\r
+#define tskIDLE_PRIORITY                       ( ( unsigned portBASE_TYPE ) 0U )\r
 \r
 /**\r
  * task. h\r
index 727c4fdecb219b2e11c3d492999f2fa38e8b07bf..b55a6d4d5eedbcb57efa0c50716170a48f482030 100644 (file)
@@ -79,7 +79,7 @@ as defined below. */
  *----------------------------------------------------------*/\r
 \r
  /**\r
- * Type by which software timers are referenced.  For example, a call to \r
+ * Type by which software timers are referenced.  For example, a call to\r
  * xTimerCreate() returns an xTimerHandle variable that can then be used to\r
  * reference the subject timer in calls to other software timer API functions\r
  * (for example, xTimerStart(), xTimerReset(), etc.).\r
@@ -90,14 +90,14 @@ typedef void * xTimerHandle;
 typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );\r
 \r
 /**\r
- * xTimerHandle xTimerCreate(  const signed char *pcTimerName, \r
- *                                                             portTickType xTimerPeriod, \r
- *                                                             unsigned portBASE_TYPE uxAutoReload, \r
- *                                                             void * pvTimerID, \r
+ * xTimerHandle xTimerCreate(  const signed char *pcTimerName,\r
+ *                                                             portTickType xTimerPeriod,\r
+ *                                                             unsigned portBASE_TYPE uxAutoReload,\r
+ *                                                             void * pvTimerID,\r
  *                                                             tmrTIMER_CALLBACK pxCallbackFunction );\r
  *\r
- * Creates a new software timer instance.  This allocates the storage required \r
- * by the new timer, initialises the new timers internal state, and returns a \r
+ * Creates a new software timer instance.  This allocates the storage required\r
+ * by the new timer, initialises the new timers internal state, and returns a\r
  * handle by which the new timer can be referenced.\r
  *\r
  * Timers are created in the dormant state.  The xTimerStart(), xTimerReset(),\r
@@ -109,7 +109,7 @@ typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );
  * purely to assist debugging.  The kernel itself only ever references a timer by\r
  * its handle, and never by its name.\r
  *\r
- * @param xTimerPeriod The timer period.  The time is defined in tick periods so \r
+ * @param xTimerPeriod The timer period.  The time is defined in tick periods so\r
  * the constant portTICK_RATE_MS can be used to convert a time that has been\r
  * specified in milliseconds.  For example, if the timer must expire after 100\r
  * ticks, then xTimerPeriod should be set to 100.  Alternatively, if the timer\r
@@ -121,46 +121,46 @@ typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );
  * uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and\r
  * enter the dormant state after it expires.\r
  *\r
- * @param pvTimerID An identifier that is assigned to the timer being created.  \r
- * Typically this would be used in the timer callback function to identify which \r
- * timer expired when the same callback function is assigned to more than one \r
+ * @param pvTimerID An identifier that is assigned to the timer being created.\r
+ * Typically this would be used in the timer callback function to identify which\r
+ * timer expired when the same callback function is assigned to more than one\r
  * timer.\r
  *\r
  * @param pxCallbackFunction The function to call when the timer expires.\r
- * Callback functions must have the prototype defined by tmrTIMER_CALLBACK, \r
+ * Callback functions must have the prototype defined by tmrTIMER_CALLBACK,\r
  * which is    "void vCallbackFunction( xTIMER *xTimer );".\r
  *\r
  * @return If the timer is successfully create then a handle to the newly\r
  * created timer is returned.  If the timer cannot be created (because either\r
- * there is insufficient FreeRTOS heap remaining to allocate the timer \r
+ * there is insufficient FreeRTOS heap remaining to allocate the timer\r
  * structures, or the timer period was set to 0) then 0 is returned.\r
  *\r
  * Example usage:\r
  *\r
- * \r
+ *\r
  * #define NUM_TIMERS 5\r
- * \r
+ *\r
  * // An array to hold handles to the created timers.\r
  * xTimerHandle xTimers[ NUM_TIMERS ];\r
- * \r
+ *\r
  * // An array to hold a count of the number of times each timer expires.\r
  * long lExpireCounters[ NUM_TIMERS ] = { 0 };\r
- * \r
- * // Define a callback function that will be used by multiple timer instances.  \r
- * // The callback function does nothing but count the number of times the \r
+ *\r
+ * // Define a callback function that will be used by multiple timer instances.\r
+ * // The callback function does nothing but count the number of times the\r
  * // associated timer expires, and stop the timer once the timer has expired\r
  * // 10 times.\r
  * void vTimerCallback( xTIMER *pxTimer )\r
  * {\r
  * long lArrayIndex;\r
  * const long xMaxExpiryCountBeforeStopping = 10;\r
- * \r
+ *\r
  *        // Optionally do something if the pxTimer parameter is NULL.\r
  *        configASSERT( pxTimer );\r
  *     \r
  *     // Which timer expired?\r
  *     lArrayIndex = ( long ) pvTimerGetTimerID( pxTimer );\r
- *     \r
+ *\r
  *     // Increment the number of times that pxTimer has expired.\r
  *     lExpireCounters[ lArrayIndex ] += 1;\r
  *\r
@@ -172,11 +172,11 @@ typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );
  *         xTimerStop( pxTimer, 0 );\r
  *     }\r
  * }\r
- * \r
+ *\r
  * void main( void )\r
  * {\r
  * long x;\r
- * \r
+ *\r
  *     // Create then start some timers.  Starting the timers before the scheduler\r
  *     // has been started means the timers will start running immediately that\r
  *     // the scheduler starts.\r
@@ -188,7 +188,7 @@ typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );
  *                                         ( void * ) x,     // Assign each timer a unique id equal to its array index.\r
  *                                         vTimerCallback     // Each timer calls the same callback when it expires.\r
  *                                     );\r
- *                                     \r
+ *\r
  *         if( xTimers[ x ] == NULL )\r
  *         {\r
  *             // The timer was not created.\r
@@ -197,33 +197,33 @@ typedef void (*tmrTIMER_CALLBACK)( xTimerHandle xTimer );
  *         {\r
  *             // Start the timer.  No block time is specified, and even if one was\r
  *             // it would be ignored because the scheduler has not yet been\r
- *             // started. \r
+ *             // started.\r
  *             if( xTimerStart( xTimers[ x ], 0 ) != pdPASS )\r
  *             {\r
  *                 // The timer could not be set into the Active state.\r
  *             }\r
  *         }\r
  *     }\r
- *     \r
+ *\r
  *     // ...\r
  *     // Create tasks here.\r
  *     // ...\r
- *     \r
+ *\r
  *     // Starting the scheduler will start the timers running as they have already\r
  *     // been set into the active state.\r
  *     xTaskStartScheduler();\r
- *     \r
+ *\r
  *     // Should not reach here.\r
  *     for( ;; );\r
  * }\r
  */\r
-xTimerHandle xTimerCreate( const signed char *pcTimerName, portTickType xTimerPeriod, unsigned portBASE_TYPE uxAutoReload, void * pvTimerID, tmrTIMER_CALLBACK pxCallbackFunction ) PRIVILEGED_FUNCTION;\r
+xTimerHandle xTimerCreate( const signed char *pcTimerName, portTickType xTimerPeriodInTicks, unsigned portBASE_TYPE uxAutoReload, void * pvTimerID, tmrTIMER_CALLBACK pxCallbackFunction ) PRIVILEGED_FUNCTION;\r
 \r
 /**\r
  * void *pvTimerGetTimerID( xTimerHandle xTimer );\r
  *\r
  * Returns the ID assigned to the timer.\r
- * \r
+ *\r
  * IDs are assigned to timers using the pvTimerID parameter of the call to\r
  * xTimerCreated() that was used to create the timer.\r
  *\r
@@ -247,7 +247,7 @@ void *pvTimerGetTimerID( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * Queries a timer to see if it is active or dormant.\r
  *\r
  * A timer will be dormant if:\r
- *     1) It has been created but not started, or \r
+ *     1) It has been created but not started, or\r
  *     2) It is an expired on-shot timer that has not been restarted.\r
  *\r
  * Timers are created in the dormant state.  The xTimerStart(), xTimerReset(),\r
@@ -272,7 +272,7 @@ void *pvTimerGetTimerID( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     else\r
  *     {\r
  *         // xTimer is not active, do something else.\r
- *     } \r
+ *     }\r
  * }\r
  */\r
 portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;\r
@@ -281,20 +281,20 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * portBASE_TYPE xTimerStart( xTimerHandle xTimer, portTickType xBlockTime );\r
  *\r
  * Timer functionality is provided by a timer service/daemon task.  Many of the\r
- * public FreeRTOS timer API functions send commands to the timer service task \r
- * though a queue called the timer command queue.  The timer command queue is \r
- * private to the kernel itself and is not directly accessible to application \r
- * code.  The length of the timer command queue is set by the \r
+ * public FreeRTOS timer API functions send commands to the timer service task\r
+ * though a queue called the timer command queue.  The timer command queue is\r
+ * private to the kernel itself and is not directly accessible to application\r
+ * code.  The length of the timer command queue is set by the\r
  * configTIMER_QUEUE_LENGTH configuration constant.\r
  *\r
- * xTimerStart() starts a timer that was previously created using the \r
+ * xTimerStart() starts a timer that was previously created using the\r
  * xTimerCreate() API function.  If the timer had already been started and was\r
  * already in the active state, then xTimerStart() has equivalent functionality\r
  * to the xTimerReset() API function.\r
  *\r
  * Starting a timer ensures the timer is in the active state.  If the timer\r
  * is not stopped, deleted, or reset in the mean time, the callback function\r
- * associated with the timer will get called 'n' ticks after xTimerStart() was \r
+ * associated with the timer will get called 'n' ticks after xTimerStart() was\r
  * called, where 'n' is the timers defined period.\r
  *\r
  * It is valid to call xTimerStart() before the scheduler has been started, but\r
@@ -309,38 +309,38 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *\r
  * @param xBlockTime Specifies the time, in ticks, that the calling task should\r
  * be held in the Blocked state to wait for the start command to be successfully\r
- * sent to the timer command queue, should the queue already be full when \r
+ * sent to the timer command queue, should the queue already be full when\r
  * xTimerStart() was called.  xBlockTime is ignored if xTimerStart() is called\r
- * before the scheduler is started.  \r
+ * before the scheduler is started.\r
  *\r
- * @return pdFAIL will be returned if the start command could not be sent to \r
+ * @return pdFAIL will be returned if the start command could not be sent to\r
  * the timer command queue even after xBlockTime ticks had passed.  pdPASS will\r
  * be returned if the command was successfully sent to the timer command queue.\r
  * When the command is actually processed will depend on the priority of the\r
  * timer service/daemon task relative to other tasks in the system, although the\r
- * timers expiry time is relative to when xTimerStart() is actually called.  The \r
- * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY \r
+ * timers expiry time is relative to when xTimerStart() is actually called.  The\r
+ * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY\r
  * configuration constant.\r
  *\r
  * Example usage:\r
- * \r
+ *\r
  * See the xTimerCreate() API function example usage scenario.\r
  *\r
  */\r
-#define xTimerStart( xTimer, xBlockTime ) xTimerGenericCommand( xTimer, tmrCOMMAND_START, xTaskGetTickCount(), NULL, xBlockTime )\r
+#define xTimerStart( xTimer, xBlockTime ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xBlockTime ) )\r
 \r
 /**\r
  * portBASE_TYPE xTimerStop( xTimerHandle xTimer, portTickType xBlockTime );\r
  *\r
  * Timer functionality is provided by a timer service/daemon task.  Many of the\r
- * public FreeRTOS timer API functions send commands to the timer service task \r
- * though a queue called the timer command queue.  The timer command queue is \r
- * private to the kernel itself and is not directly accessible to application \r
- * code.  The length of the timer command queue is set by the \r
+ * public FreeRTOS timer API functions send commands to the timer service task\r
+ * though a queue called the timer command queue.  The timer command queue is\r
+ * private to the kernel itself and is not directly accessible to application\r
+ * code.  The length of the timer command queue is set by the\r
  * configTIMER_QUEUE_LENGTH configuration constant.\r
  *\r
- * xTimerStop() stops a timer that was previously started using either of the \r
- * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(), \r
+ * xTimerStop() stops a timer that was previously started using either of the\r
+ * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(),\r
  * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions.\r
  *\r
  * Stopping a timer ensures the timer is not in the active state.\r
@@ -352,74 +352,74 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *\r
  * @param xBlockTime Specifies the time, in ticks, that the calling task should\r
  * be held in the Blocked state to wait for the stop command to be successfully\r
- * sent to the timer command queue, should the queue already be full when \r
+ * sent to the timer command queue, should the queue already be full when\r
  * xTimerStop() was called.  xBlockTime is ignored if xTimerStop() is called\r
- * before the scheduler is started.  \r
+ * before the scheduler is started.\r
  *\r
- * @return pdFAIL will be returned if the stop command could not be sent to \r
+ * @return pdFAIL will be returned if the stop command could not be sent to\r
  * the timer command queue even after xBlockTime ticks had passed.  pdPASS will\r
  * be returned if the command was successfully sent to the timer command queue.\r
  * When the command is actually processed will depend on the priority of the\r
- * timer service/daemon task relative to other tasks in the system.  The timer \r
- * service/daemon task priority is set by the configTIMER_TASK_PRIORITY \r
+ * timer service/daemon task relative to other tasks in the system.  The timer\r
+ * service/daemon task priority is set by the configTIMER_TASK_PRIORITY\r
  * configuration constant.\r
  *\r
  * Example usage:\r
- * \r
+ *\r
  * See the xTimerCreate() API function example usage scenario.\r
  *\r
  */\r
-#define xTimerStop( xTimer, xBlockTime ) xTimerGenericCommand( xTimer, tmrCOMMAND_STOP, 0, NULL, xBlockTime )\r
+#define xTimerStop( xTimer, xBlockTime ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xBlockTime ) )\r
 \r
 /**\r
- * portBASE_TYPE xTimerChangePeriod(   xTimerHandle xTimer, \r
+ * portBASE_TYPE xTimerChangePeriod(   xTimerHandle xTimer,\r
  *                                                                             portTickType xNewPeriod,\r
  *                                                                             portTickType xBlockTime );\r
  *\r
  * Timer functionality is provided by a timer service/daemon task.  Many of the\r
- * public FreeRTOS timer API functions send commands to the timer service task \r
- * though a queue called the timer command queue.  The timer command queue is \r
- * private to the kernel itself and is not directly accessible to application \r
- * code.  The length of the timer command queue is set by the \r
+ * public FreeRTOS timer API functions send commands to the timer service task\r
+ * though a queue called the timer command queue.  The timer command queue is\r
+ * private to the kernel itself and is not directly accessible to application\r
+ * code.  The length of the timer command queue is set by the\r
  * configTIMER_QUEUE_LENGTH configuration constant.\r
  *\r
- * xTimerChangePeriod() changes the period of a timer that was previously \r
+ * xTimerChangePeriod() changes the period of a timer that was previously\r
  * created using the xTimerCreate() API function.\r
  *\r
  * xTimerChangePeriod() can be called to change the period of an active or\r
  * dormant state timer.\r
  *\r
- * The configUSE_TIMERS configuration constant must be set to 1 for \r
+ * The configUSE_TIMERS configuration constant must be set to 1 for\r
  * xTimerChangePeriod() to be available.\r
  *\r
  * @param xTimer The handle of the timer that is having its period changed.\r
  *\r
- * @param xNewPeriod The new period for xTimer. Timer periods are specified in \r
- * tick periods, so the constant portTICK_RATE_MS can be used to convert a time \r
- * that has been specified in milliseconds.  For example, if the timer must \r
- * expire after 100 ticks, then xNewPeriod should be set to 100.  Alternatively, \r
- * if the timer must expire after 500ms, then xNewPeriod can be set to \r
+ * @param xNewPeriod The new period for xTimer. Timer periods are specified in\r
+ * tick periods, so the constant portTICK_RATE_MS can be used to convert a time\r
+ * that has been specified in milliseconds.  For example, if the timer must\r
+ * expire after 100 ticks, then xNewPeriod should be set to 100.  Alternatively,\r
+ * if the timer must expire after 500ms, then xNewPeriod can be set to\r
  * ( 500 / portTICK_RATE_MS ) provided configTICK_RATE_HZ is less than\r
  * or equal to 1000.\r
  *\r
  * @param xBlockTime Specifies the time, in ticks, that the calling task should\r
- * be held in the Blocked state to wait for the change period command to be \r
- * successfully sent to the timer command queue, should the queue already be \r
- * full when xTimerChangePeriod() was called.  xBlockTime is ignored if \r
- * xTimerChangePeriod() is called before the scheduler is started.  \r
- *\r
- * @return pdFAIL will be returned if the change period command could not be \r
- * sent to the timer command queue even after xBlockTime ticks had passed.  \r
- * pdPASS will be returned if the command was successfully sent to the timer \r
- * command queue.  When the command is actually processed will depend on the \r
- * priority of the timer service/daemon task relative to other tasks in the \r
- * system.  The timer service/daemon task priority is set by the \r
+ * be held in the Blocked state to wait for the change period command to be\r
+ * successfully sent to the timer command queue, should the queue already be\r
+ * full when xTimerChangePeriod() was called.  xBlockTime is ignored if\r
+ * xTimerChangePeriod() is called before the scheduler is started.\r
+ *\r
+ * @return pdFAIL will be returned if the change period command could not be\r
+ * sent to the timer command queue even after xBlockTime ticks had passed.\r
+ * pdPASS will be returned if the command was successfully sent to the timer\r
+ * command queue.  When the command is actually processed will depend on the\r
+ * priority of the timer service/daemon task relative to other tasks in the\r
+ * system.  The timer service/daemon task priority is set by the\r
  * configTIMER_TASK_PRIORITY configuration constant.\r
  *\r
  * Example usage:\r
  *\r
  * // This function assumes xTimer has already been created.  If the timer\r
- * // referenced by xTimer is already active when it is called, then the timer \r
+ * // referenced by xTimer is already active when it is called, then the timer\r
  * // is deleted.  If the timer referenced by xTimer is not active when it is\r
  * // called, then the period of the timer is set to 500ms and the timer is\r
  * // started.\r
@@ -445,69 +445,69 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *             // The command could not be sent, even after waiting for 100 ticks\r
  *             // to pass.  Take appropriate action here.\r
  *         }\r
- *     } \r
+ *     }\r
  * }\r
  */\r
- #define xTimerChangePeriod( xTimer, xNewPeriod, xBlockTime ) xTimerGenericCommand( xTimer, tmrCOMMAND_CHANGE_PERIOD, xNewPeriod, NULL, xBlockTime )\r
+ #define xTimerChangePeriod( xTimer, xNewPeriod, xBlockTime ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xBlockTime ) )\r
 \r
 /**\r
  * portBASE_TYPE xTimerDelete( xTimerHandle xTimer, portTickType xBlockTime );\r
  *\r
  * Timer functionality is provided by a timer service/daemon task.  Many of the\r
- * public FreeRTOS timer API functions send commands to the timer service task \r
- * though a queue called the timer command queue.  The timer command queue is \r
- * private to the kernel itself and is not directly accessible to application \r
- * code.  The length of the timer command queue is set by the \r
+ * public FreeRTOS timer API functions send commands to the timer service task\r
+ * though a queue called the timer command queue.  The timer command queue is\r
+ * private to the kernel itself and is not directly accessible to application\r
+ * code.  The length of the timer command queue is set by the\r
  * configTIMER_QUEUE_LENGTH configuration constant.\r
  *\r
  * xTimerDelete() deletes a timer that was previously created using the\r
  * xTimerCreate() API function.\r
  *\r
- * The configUSE_TIMERS configuration constant must be set to 1 for \r
+ * The configUSE_TIMERS configuration constant must be set to 1 for\r
  * xTimerDelete() to be available.\r
  *\r
  * @param xTimer The handle of the timer being deleted.\r
  *\r
  * @param xBlockTime Specifies the time, in ticks, that the calling task should\r
- * be held in the Blocked state to wait for the delete command to be \r
- * successfully sent to the timer command queue, should the queue already be \r
- * full when xTimerDelete() was called.  xBlockTime is ignored if xTimerDelete() \r
- * is called before the scheduler is started.  \r
+ * be held in the Blocked state to wait for the delete command to be\r
+ * successfully sent to the timer command queue, should the queue already be\r
+ * full when xTimerDelete() was called.  xBlockTime is ignored if xTimerDelete()\r
+ * is called before the scheduler is started.\r
  *\r
- * @return pdFAIL will be returned if the delete command could not be sent to \r
+ * @return pdFAIL will be returned if the delete command could not be sent to\r
  * the timer command queue even after xBlockTime ticks had passed.  pdPASS will\r
  * be returned if the command was successfully sent to the timer command queue.\r
  * When the command is actually processed will depend on the priority of the\r
- * timer service/daemon task relative to other tasks in the system.  The timer \r
- * service/daemon task priority is set by the configTIMER_TASK_PRIORITY \r
+ * timer service/daemon task relative to other tasks in the system.  The timer\r
+ * service/daemon task priority is set by the configTIMER_TASK_PRIORITY\r
  * configuration constant.\r
  *\r
  * Example usage:\r
- * \r
+ *\r
  * See the xTimerChangePeriod() API function example usage scenario.\r
  */\r
-#define xTimerDelete( xTimer, xBlockTime ) xTimerGenericCommand( xTimer, tmrCOMMAND_DELETE, 0, NULL, xBlockTime )\r
+#define xTimerDelete( xTimer, xBlockTime ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xBlockTime ) )\r
 \r
 /**\r
  * portBASE_TYPE xTimerReset( xTimerHandle xTimer, portTickType xBlockTime );\r
  *\r
  * Timer functionality is provided by a timer service/daemon task.  Many of the\r
- * public FreeRTOS timer API functions send commands to the timer service task \r
- * though a queue called the timer command queue.  The timer command queue is \r
- * private to the kernel itself and is not directly accessible to application \r
- * code.  The length of the timer command queue is set by the \r
+ * public FreeRTOS timer API functions send commands to the timer service task\r
+ * though a queue called the timer command queue.  The timer command queue is\r
+ * private to the kernel itself and is not directly accessible to application\r
+ * code.  The length of the timer command queue is set by the\r
  * configTIMER_QUEUE_LENGTH configuration constant.\r
  *\r
- * xTimerReset() re-starts a timer that was previously created using the \r
+ * xTimerReset() re-starts a timer that was previously created using the\r
  * xTimerCreate() API function.  If the timer had already been started and was\r
  * already in the active state, then xTimerReset() will cause the timer to\r
  * re-evaluate its expiry time so that it is relative to when xTimerReset() was\r
- * called.  If the timer was in the dormant state then xTimerReset() has \r
+ * called.  If the timer was in the dormant state then xTimerReset() has\r
  * equivalent functionality to the xTimerStart() API function.\r
  *\r
  * Resetting a timer ensures the timer is in the active state.  If the timer\r
  * is not stopped, deleted, or reset in the mean time, the callback function\r
- * associated with the timer will get called 'n' ticks after xTimerReset() was \r
+ * associated with the timer will get called 'n' ticks after xTimerReset() was\r
  * called, where 'n' is the timers defined period.\r
  *\r
  * It is valid to call xTimerReset() before the scheduler has been started, but\r
@@ -522,23 +522,23 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *\r
  * @param xBlockTime Specifies the time, in ticks, that the calling task should\r
  * be held in the Blocked state to wait for the reset command to be successfully\r
- * sent to the timer command queue, should the queue already be full when \r
+ * sent to the timer command queue, should the queue already be full when\r
  * xTimerReset() was called.  xBlockTime is ignored if xTimerReset() is called\r
- * before the scheduler is started.  \r
+ * before the scheduler is started.\r
  *\r
- * @return pdFAIL will be returned if the reset command could not be sent to \r
+ * @return pdFAIL will be returned if the reset command could not be sent to\r
  * the timer command queue even after xBlockTime ticks had passed.  pdPASS will\r
  * be returned if the command was successfully sent to the timer command queue.\r
  * When the command is actually processed will depend on the priority of the\r
  * timer service/daemon task relative to other tasks in the system, although the\r
- * timers expiry time is relative to when xTimerStart() is actually called.  The \r
- * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY \r
+ * timers expiry time is relative to when xTimerStart() is actually called.  The\r
+ * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY\r
  * configuration constant.\r
  *\r
  * Example usage:\r
- * \r
- * // When a key is pressed, an LCD back-light is switched on.  If 5 seconds pass \r
- * // without a key being pressed, then the LCD back-light is switched off.  In \r
+ *\r
+ * // When a key is pressed, an LCD back-light is switched on.  If 5 seconds pass\r
+ * // without a key being pressed, then the LCD back-light is switched off.  In\r
  * // this case, the timer is a one-shot timer.\r
  *\r
  * xTimerHandle xBacklightTimer = NULL;\r
@@ -556,7 +556,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * void vKeyPressEventHandler( char cKey )\r
  * {\r
  *     // Ensure the LCD back-light is on, then reset the timer that is\r
- *     // responsible for turning the back-light off after 5 seconds of \r
+ *     // responsible for turning the back-light off after 5 seconds of\r
  *     // key inactivity.  Wait 10 ticks for the command to be successfully sent\r
  *     // if it cannot be sent immediately.\r
  *     vSetBacklightState( BACKLIGHT_ON );\r
@@ -572,7 +572,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * void main( void )\r
  * {\r
  * long x;\r
- * \r
+ *\r
  *     // Create then start the one-shot timer that is responsible for turning\r
  *     // the back-light off if no keys are pressed within a 5 second period.\r
  *     xBacklightTimer = xTimerCreate( "BacklightTimer",           // Just a text name, not used by the kernel.\r
@@ -581,7 +581,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *                                     0,                          // The id is not used by the callback so can take any value.\r
  *                                     vBacklightTimerCallback     // The callback function that switches the LCD back-light off.\r
  *                                   );\r
- *                                     \r
+ *\r
  *     if( xBacklightTimer == NULL )\r
  *     {\r
  *         // The timer was not created.\r
@@ -590,29 +590,29 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     {\r
  *         // Start the timer.  No block time is specified, and even if one was\r
  *         // it would be ignored because the scheduler has not yet been\r
- *         // started. \r
+ *         // started.\r
  *         if( xTimerStart( xBacklightTimer, 0 ) != pdPASS )\r
  *         {\r
  *             // The timer could not be set into the Active state.\r
  *         }\r
  *     }\r
- *     \r
+ *\r
  *     // ...\r
  *     // Create tasks here.\r
  *     // ...\r
- *     \r
+ *\r
  *     // Starting the scheduler will start the timer running as it has already\r
  *     // been set into the active state.\r
  *     xTaskStartScheduler();\r
- *     \r
+ *\r
  *     // Should not reach here.\r
  *     for( ;; );\r
  * }\r
  */\r
-#define xTimerReset( xTimer, xBlockTime ) xTimerGenericCommand( xTimer, tmrCOMMAND_START, xTaskGetTickCount(), NULL, xBlockTime )\r
+#define xTimerReset( xTimer, xBlockTime ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xBlockTime ) )\r
 \r
 /**\r
- * portBASE_TYPE xTimerStartFromISR(   xTimerHandle xTimer, \r
+ * portBASE_TYPE xTimerStartFromISR(   xTimerHandle xTimer,\r
  *                                                                             portBASE_TYPE *pxHigherPriorityTaskWoken );\r
  *\r
  * A version of xTimerStart() that can be called from an interrupt service\r
@@ -632,20 +632,20 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * xTimerStartFromISR() sets this value to pdTRUE then a context switch should\r
  * be performed before the interrupt exits.\r
  *\r
- * @return pdFAIL will be returned if the start command could not be sent to \r
- * the timer command queue.  pdPASS will be returned if the command was \r
- * successfully sent to the timer command queue.  When the command is actually \r
- * processed will depend on the priority of the timer service/daemon task \r
- * relative to other tasks in the system, although the timers expiry time is \r
- * relative to when xTimerStartFromISR() is actually called.  The timer service/daemon \r
- * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. \r
+ * @return pdFAIL will be returned if the start command could not be sent to\r
+ * the timer command queue.  pdPASS will be returned if the command was\r
+ * successfully sent to the timer command queue.  When the command is actually\r
+ * processed will depend on the priority of the timer service/daemon task\r
+ * relative to other tasks in the system, although the timers expiry time is\r
+ * relative to when xTimerStartFromISR() is actually called.  The timer service/daemon\r
+ * task priority is set by the configTIMER_TASK_PRIORITY configuration constant.\r
  *\r
  * Example usage:\r
- * \r
- * // This scenario assumes xBacklightTimer has already been created.  When a \r
- * // key is pressed, an LCD back-light is switched on.  If 5 seconds pass \r
- * // without a key being pressed, then the LCD back-light is switched off.  In \r
- * // this case, the timer is a one-shot timer, and unlike the example given for \r
+ *\r
+ * // This scenario assumes xBacklightTimer has already been created.  When a\r
+ * // key is pressed, an LCD back-light is switched on.  If 5 seconds pass\r
+ * // without a key being pressed, then the LCD back-light is switched off.  In\r
+ * // this case, the timer is a one-shot timer, and unlike the example given for\r
  * // the xTimerReset() function, the key press event handler is an interrupt\r
  * // service routine.\r
  *\r
@@ -664,7 +664,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
  *\r
  *     // Ensure the LCD back-light is on, then restart the timer that is\r
- *     // responsible for turning the back-light off after 5 seconds of \r
+ *     // responsible for turning the back-light off after 5 seconds of\r
  *     // key inactivity.  This is an interrupt service routine so can only\r
  *     // call FreeRTOS API functions that end in "FromISR".\r
  *     vSetBacklightState( BACKLIGHT_ON );\r
@@ -693,10 +693,10 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     }\r
  * }\r
  */\r
-#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( xTimer, tmrCOMMAND_START, xTaskGetTickCountFromISR(), pxHigherPriorityTaskWoken, 0 )\r
+#define xTimerStartFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U )\r
 \r
 /**\r
- * portBASE_TYPE xTimerStopFromISR(    xTimerHandle xTimer, \r
+ * portBASE_TYPE xTimerStopFromISR(    xTimerHandle xTimer,\r
  *                                                                             portBASE_TYPE *pxHigherPriorityTaskWoken );\r
  *\r
  * A version of xTimerStop() that can be called from an interrupt service\r
@@ -716,12 +716,12 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * xTimerStopFromISR() sets this value to pdTRUE then a context switch should\r
  * be performed before the interrupt exits.\r
  *\r
- * @return pdFAIL will be returned if the stop command could not be sent to \r
- * the timer command queue.  pdPASS will be returned if the command was \r
- * successfully sent to the timer command queue.  When the command is actually \r
- * processed will depend on the priority of the timer service/daemon task \r
- * relative to other tasks in the system.  The timer service/daemon task \r
- * priority is set by the configTIMER_TASK_PRIORITY configuration constant. \r
+ * @return pdFAIL will be returned if the stop command could not be sent to\r
+ * the timer command queue.  pdPASS will be returned if the command was\r
+ * successfully sent to the timer command queue.  When the command is actually\r
+ * processed will depend on the priority of the timer service/daemon task\r
+ * relative to other tasks in the system.  The timer service/daemon task\r
+ * priority is set by the configTIMER_TASK_PRIORITY configuration constant.\r
  *\r
  * Example usage:\r
  *\r
@@ -755,45 +755,45 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     }\r
  * }\r
  */\r
-#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( xTimer, tmrCOMMAND_STOP, 0, pxHigherPriorityTaskWoken, 0 )\r
+#define xTimerStopFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0, ( pxHigherPriorityTaskWoken ), 0U )\r
 \r
 /**\r
- * portBASE_TYPE xTimerChangePeriodFromISR( xTimerHandle xTimer, \r
+ * portBASE_TYPE xTimerChangePeriodFromISR( xTimerHandle xTimer,\r
  *                                                                                     portTickType xNewPeriod,\r
  *                                                                                     portBASE_TYPE *pxHigherPriorityTaskWoken );\r
  *\r
- * A version of xTimerChangePeriod() that can be called from an interrupt \r
+ * A version of xTimerChangePeriod() that can be called from an interrupt\r
  * service routine.\r
  *\r
  * @param xTimer The handle of the timer that is having its period changed.\r
  *\r
- * @param xNewPeriod The new period for xTimer. Timer periods are specified in \r
- * tick periods, so the constant portTICK_RATE_MS can be used to convert a time \r
- * that has been specified in milliseconds.  For example, if the timer must \r
- * expire after 100 ticks, then xNewPeriod should be set to 100.  Alternatively, \r
- * if the timer must expire after 500ms, then xNewPeriod can be set to \r
+ * @param xNewPeriod The new period for xTimer. Timer periods are specified in\r
+ * tick periods, so the constant portTICK_RATE_MS can be used to convert a time\r
+ * that has been specified in milliseconds.  For example, if the timer must\r
+ * expire after 100 ticks, then xNewPeriod should be set to 100.  Alternatively,\r
+ * if the timer must expire after 500ms, then xNewPeriod can be set to\r
  * ( 500 / portTICK_RATE_MS ) provided configTICK_RATE_HZ is less than\r
  * or equal to 1000.\r
  *\r
  * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most\r
  * of its time in the Blocked state, waiting for messages to arrive on the timer\r
- * command queue.  Calling xTimerChangePeriodFromISR() writes a message to the \r
+ * command queue.  Calling xTimerChangePeriodFromISR() writes a message to the\r
  * timer command queue, so has the potential to transition the timer service/\r
- * daemon task out of the Blocked state.  If calling xTimerChangePeriodFromISR() \r
- * causes the timer service/daemon task to leave the Blocked state, and the \r
- * timer service/daemon task has a priority equal to or greater than the \r
- * currently executing task (the task that was interrupted), then \r
- * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the \r
- * xTimerChangePeriodFromISR() function.  If xTimerChangePeriodFromISR() sets \r
- * this value to pdTRUE then a context switch should be performed before the \r
+ * daemon task out of the Blocked state.  If calling xTimerChangePeriodFromISR()\r
+ * causes the timer service/daemon task to leave the Blocked state, and the\r
+ * timer service/daemon task has a priority equal to or greater than the\r
+ * currently executing task (the task that was interrupted), then\r
+ * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the\r
+ * xTimerChangePeriodFromISR() function.  If xTimerChangePeriodFromISR() sets\r
+ * this value to pdTRUE then a context switch should be performed before the\r
  * interrupt exits.\r
  *\r
  * @return pdFAIL will be returned if the command to change the timers period\r
- * could not be sent to the timer command queue.  pdPASS will be returned if the \r
- * command was successfully sent to the timer command queue.  When the command \r
- * is actually processed will depend on the priority of the timer service/daemon \r
- * task relative to other tasks in the system.  The timer service/daemon task \r
- * priority is set by the configTIMER_TASK_PRIORITY configuration constant. \r
+ * could not be sent to the timer command queue.  pdPASS will be returned if the\r
+ * command was successfully sent to the timer command queue.  When the command\r
+ * is actually processed will depend on the priority of the timer service/daemon\r
+ * task relative to other tasks in the system.  The timer service/daemon task\r
+ * priority is set by the configTIMER_TASK_PRIORITY configuration constant.\r
  *\r
  * Example usage:\r
  *\r
@@ -811,7 +811,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     // FreeRTOS API functions that end in "FromISR" can be used.\r
  *     if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS )\r
  *     {\r
- *         // The command to change the timers period was not executed \r
+ *         // The command to change the timers period was not executed\r
  *         // successfully.  Take appropriate action here.\r
  *     }\r
  *\r
@@ -827,10 +827,10 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     }\r
  * }\r
  */\r
-#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( xTimer, tmrCOMMAND_CHANGE_PERIOD, xNewPeriod, pxHigherPriorityTaskWoken, 0 )\r
+#define xTimerChangePeriodFromISR( xTimer, xNewPeriod, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), ( pxHigherPriorityTaskWoken ), 0U )\r
 \r
 /**\r
- * portBASE_TYPE xTimerResetFromISR(   xTimerHandle xTimer, \r
+ * portBASE_TYPE xTimerResetFromISR(   xTimerHandle xTimer,\r
  *                                                                             portBASE_TYPE *pxHigherPriorityTaskWoken );\r
  *\r
  * A version of xTimerReset() that can be called from an interrupt service\r
@@ -851,20 +851,20 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * xTimerResetFromISR() sets this value to pdTRUE then a context switch should\r
  * be performed before the interrupt exits.\r
  *\r
- * @return pdFAIL will be returned if the reset command could not be sent to \r
- * the timer command queue.  pdPASS will be returned if the command was \r
- * successfully sent to the timer command queue.  When the command is actually \r
- * processed will depend on the priority of the timer service/daemon task \r
- * relative to other tasks in the system, although the timers expiry time is \r
- * relative to when xTimerResetFromISR() is actually called.  The timer service/daemon \r
- * task priority is set by the configTIMER_TASK_PRIORITY configuration constant. \r
+ * @return pdFAIL will be returned if the reset command could not be sent to\r
+ * the timer command queue.  pdPASS will be returned if the command was\r
+ * successfully sent to the timer command queue.  When the command is actually\r
+ * processed will depend on the priority of the timer service/daemon task\r
+ * relative to other tasks in the system, although the timers expiry time is\r
+ * relative to when xTimerResetFromISR() is actually called.  The timer service/daemon\r
+ * task priority is set by the configTIMER_TASK_PRIORITY configuration constant.\r
  *\r
  * Example usage:\r
- * \r
- * // This scenario assumes xBacklightTimer has already been created.  When a \r
- * // key is pressed, an LCD back-light is switched on.  If 5 seconds pass \r
- * // without a key being pressed, then the LCD back-light is switched off.  In \r
- * // this case, the timer is a one-shot timer, and unlike the example given for \r
+ *\r
+ * // This scenario assumes xBacklightTimer has already been created.  When a\r
+ * // key is pressed, an LCD back-light is switched on.  If 5 seconds pass\r
+ * // without a key being pressed, then the LCD back-light is switched off.  In\r
+ * // this case, the timer is a one-shot timer, and unlike the example given for\r
  * // the xTimerReset() function, the key press event handler is an interrupt\r
  * // service routine.\r
  *\r
@@ -883,7 +883,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  * portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
  *\r
  *     // Ensure the LCD back-light is on, then reset the timer that is\r
- *     // responsible for turning the back-light off after 5 seconds of \r
+ *     // responsible for turning the back-light off after 5 seconds of\r
  *     // key inactivity.  This is an interrupt service routine so can only\r
  *     // call FreeRTOS API functions that end in "FromISR".\r
  *     vSetBacklightState( BACKLIGHT_ON );\r
@@ -912,7 +912,7 @@ portBASE_TYPE xTimerIsTimerActive( xTimerHandle xTimer ) PRIVILEGED_FUNCTION;
  *     }\r
  * }\r
  */\r
-#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( xTimer, tmrCOMMAND_START, xTaskGetTickCountFromISR(), pxHigherPriorityTaskWoken, 0 )\r
+#define xTimerResetFromISR( xTimer, pxHigherPriorityTaskWoken ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCountFromISR() ), ( pxHigherPriorityTaskWoken ), 0U )\r
 \r
 /*\r
  * Functions beyond this part are not part of the public API and are intended\r
index 25374c77c976c6db4e8d689380a30466eef587f3..f5ce8bba151fc2fcb178041d7ee26be803687c5f 100644 (file)
@@ -144,6 +144,7 @@ signed portBASE_TYPE xQueueAltGenericReceive( xQueueHandle pxQueue, void * const
 signed portBASE_TYPE xQueueIsQueueEmptyFromISR( const xQueueHandle pxQueue ) PRIVILEGED_FUNCTION;\r
 signed portBASE_TYPE xQueueIsQueueFullFromISR( const xQueueHandle pxQueue ) PRIVILEGED_FUNCTION;\r
 unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle pxQueue ) PRIVILEGED_FUNCTION;\r
+void vQueueWaitForMessageRestricted( xQueueHandle pxQueue, portTickType xTicksToWait ) PRIVILEGED_FUNCTION;\r
 \r
 /*\r
  * Co-routine queue functions differ from task queue functions.  Co-routines are\r
@@ -1285,7 +1286,7 @@ signed portBASE_TYPE xReturn;
                        xReturn = pdPASS;\r
 \r
                        /* Were any co-routines waiting for data to become available? */\r
-                       if( !listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) )\r
+                       if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
                        {\r
                                /* In this instance the co-routine could be placed directly\r
                                into the ready list as we are within a critical section.\r
@@ -1360,7 +1361,7 @@ signed portBASE_TYPE xReturn;
                        xReturn = pdPASS;\r
 \r
                        /* Were any co-routines waiting for space to become available? */\r
-                       if( !listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) )\r
+                       if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
                        {\r
                                /* In this instance the co-routine could be placed directly\r
                                into the ready list as we are within a critical section.\r
@@ -1399,7 +1400,7 @@ signed portBASE_TYPE xQueueCRSendFromISR( xQueueHandle pxQueue, const void *pvIt
                co-routine has not already been woken. */\r
                if( !xCoRoutinePreviouslyWoken )\r
                {\r
-                       if( !listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) )\r
+                       if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )\r
                        {\r
                                if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )\r
                                {\r
@@ -1434,7 +1435,7 @@ signed portBASE_TYPE xReturn;
 \r
                if( !( *pxCoRoutineWoken ) )\r
                {\r
-                       if( !listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) )\r
+                       if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )\r
                        {\r
                                if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )\r
                                {\r
@@ -1463,7 +1464,7 @@ signed portBASE_TYPE xReturn;
 \r
                /* See if there is an empty space in the registry.  A NULL name denotes\r
                a free slot. */\r
-               for( ux = 0; ux < configQUEUE_REGISTRY_SIZE; ux++ )\r
+               for( ux = ( unsigned portBASE_TYPE ) 0U; ux < configQUEUE_REGISTRY_SIZE; ux++ )\r
                {\r
                        if( xQueueRegistry[ ux ].pcQueueName == NULL )\r
                        {\r
@@ -1486,7 +1487,7 @@ signed portBASE_TYPE xReturn;
 \r
                /* See if the handle of the queue being unregistered in actually in the\r
                registry. */\r
-               for( ux = 0; ux < configQUEUE_REGISTRY_SIZE; ux++ )\r
+               for( ux = ( unsigned portBASE_TYPE ) 0U; ux < configQUEUE_REGISTRY_SIZE; ux++ )\r
                {\r
                        if( xQueueRegistry[ ux ].xHandle == xQueue )\r
                        {\r
@@ -1506,7 +1507,7 @@ signed portBASE_TYPE xReturn;
        void vQueueWaitForMessageRestricted( xQueueHandle pxQueue, portTickType xTicksToWait )\r
        {\r
                /* This function should not be called by application code hence the\r
-               'Restricted' in its name.  It is not part of the public API.  It is \r
+               'Restricted' in its name.  It is not part of the public API.  It is\r
                designed for use by kernel code, and has special calling requirements.\r
                It can result in vListInsert() being called on a list that can only\r
                possibly ever have one item in it, so the list will be fast, but even\r
index aad896a6d70a0baa01b17b6d4e007a7096ea617b..0c48624976cef8bccf7bd2b545039135a4d2299b 100644 (file)
@@ -329,6 +329,7 @@ portTickType xItemValue;                                                                                                                            \
 \r
 /* Callback function prototypes. --------------------------*/\r
 extern void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName );\r
+extern void vApplicationTickHook( void );\r
                \r
 /* File private functions. --------------------------------*/\r
 \r
@@ -1298,25 +1299,25 @@ unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )
                        {\r
                                uxQueue--;\r
 \r
-                               if( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) )\r
+                               if( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) == pdFALSE )\r
                                {\r
                                        prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &( pxReadyTasksLists[ uxQueue ] ), tskREADY_CHAR );\r
                                }\r
                        }while( uxQueue > ( unsigned short ) tskIDLE_PRIORITY );\r
 \r
-                       if( !listLIST_IS_EMPTY( pxDelayedTaskList ) )\r
+                       if( listLIST_IS_EMPTY( pxDelayedTaskList ) == pdFALSE )\r
                        {\r
                                prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxDelayedTaskList, tskBLOCKED_CHAR );\r
                        }\r
 \r
-                       if( !listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) )\r
+                       if( listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) == pdFALSE )\r
                        {\r
                                prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) pxOverflowDelayedTaskList, tskBLOCKED_CHAR );\r
                        }\r
 \r
                        #if( INCLUDE_vTaskDelete == 1 )\r
                        {\r
-                               if( !listLIST_IS_EMPTY( &xTasksWaitingTermination ) )\r
+                               if( listLIST_IS_EMPTY( &xTasksWaitingTermination ) == pdFALSE )\r
                                {\r
                                        prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xTasksWaitingTermination, tskDELETED_CHAR );\r
                                }\r
@@ -1325,7 +1326,7 @@ unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )
 \r
                        #if ( INCLUDE_vTaskSuspend == 1 )\r
                        {\r
-                               if( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
+                               if( listLIST_IS_EMPTY( &xSuspendedTaskList ) == pdFALSE )\r
                                {\r
                                        prvListTaskWithinSingleList( pcWriteBuffer, ( xList * ) &xSuspendedTaskList, tskSUSPENDED_CHAR );\r
                                }\r
@@ -1373,25 +1374,25 @@ unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )
                        {\r
                                uxQueue--;\r
 \r
-                               if( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) )\r
+                               if( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxQueue ] ) ) == pdFALSE )\r
                                {\r
                                        prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &( pxReadyTasksLists[ uxQueue ] ), ulTotalRunTime );\r
                                }\r
                        }while( uxQueue > ( unsigned short ) tskIDLE_PRIORITY );\r
 \r
-                       if( !listLIST_IS_EMPTY( pxDelayedTaskList ) )\r
+                       if( listLIST_IS_EMPTY( pxDelayedTaskList ) == pdFALSE )\r
                        {\r
                                prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) pxDelayedTaskList, ulTotalRunTime );\r
                        }\r
 \r
-                       if( !listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) )\r
+                       if( listLIST_IS_EMPTY( pxOverflowDelayedTaskList ) == pdFALSE )\r
                        {\r
                                prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) pxOverflowDelayedTaskList, ulTotalRunTime );\r
                        }\r
 \r
                        #if ( INCLUDE_vTaskDelete == 1 )\r
                        {\r
-                               if( !listLIST_IS_EMPTY( &xTasksWaitingTermination ) )\r
+                               if( listLIST_IS_EMPTY( &xTasksWaitingTermination ) == pdFALSE )\r
                                {\r
                                        prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &xTasksWaitingTermination, ulTotalRunTime );\r
                                }\r
@@ -1400,7 +1401,7 @@ unsigned portBASE_TYPE uxTaskGetNumberOfTasks( void )
 \r
                        #if ( INCLUDE_vTaskSuspend == 1 )\r
                        {\r
-                               if( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
+                               if( listLIST_IS_EMPTY( &xSuspendedTaskList ) == pdFALSE )\r
                                {\r
                                        prvGenerateRunTimeStatsForTasksInList( pcWriteBuffer, ( xList * ) &xSuspendedTaskList, ulTotalRunTime );\r
                                }\r
@@ -1512,8 +1513,6 @@ void vTaskIncrementTick( void )
                scheduler is locked. */\r
                #if ( configUSE_TICK_HOOK == 1 )\r
                {\r
-                       extern void vApplicationTickHook( void );\r
-\r
                        vApplicationTickHook();\r
                }\r
                #endif\r
@@ -1521,11 +1520,9 @@ void vTaskIncrementTick( void )
 \r
        #if ( configUSE_TICK_HOOK == 1 )\r
        {\r
-               extern void vApplicationTickHook( void );\r
-\r
                /* Guard against the tick hook being called when the missed tick\r
                count is being unwound (when the scheduler is being unlocked. */\r
-               if( uxMissedTicks == 0 )\r
+               if( uxMissedTicks == ( unsigned portBASE_TYPE ) 0U )\r
                {\r
                        vApplicationTickHook();\r
                }\r
@@ -1550,7 +1547,7 @@ void vTaskIncrementTick( void )
                {\r
                        usQueue--;\r
 \r
-                       while( !listLIST_IS_EMPTY( &( pxReadyTasksLists[ usQueue ] ) ) )\r
+                       while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ usQueue ] ) ) == pdFALSE )\r
                        {\r
                                listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &( pxReadyTasksLists[ usQueue ] ) );\r
                                vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
@@ -1560,7 +1557,7 @@ void vTaskIncrementTick( void )
                }while( usQueue > ( unsigned short ) tskIDLE_PRIORITY );\r
 \r
                /* Remove any TCB's from the delayed queue. */\r
-               while( !listLIST_IS_EMPTY( &xDelayedTaskList1 ) )\r
+               while( listLIST_IS_EMPTY( &xDelayedTaskList1 ) == pdFALSE )\r
                {\r
                        listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList1 );\r
                        vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
@@ -1569,7 +1566,7 @@ void vTaskIncrementTick( void )
                }\r
 \r
                /* Remove any TCB's from the overflow delayed queue. */\r
-               while( !listLIST_IS_EMPTY( &xDelayedTaskList2 ) )\r
+               while( listLIST_IS_EMPTY( &xDelayedTaskList2 ) == pdFALSE )\r
                {\r
                        listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xDelayedTaskList2 );\r
                        vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
@@ -1577,7 +1574,7 @@ void vTaskIncrementTick( void )
                        prvDeleteTCB( ( tskTCB * ) pxTCB );\r
                }\r
 \r
-               while( !listLIST_IS_EMPTY( &xSuspendedTaskList ) )\r
+               while( listLIST_IS_EMPTY( &xSuspendedTaskList ) == pdFALSE )\r
                {\r
                        listGET_OWNER_OF_NEXT_ENTRY( pxTCB, &xSuspendedTaskList );\r
                        vListRemove( ( xListItem * ) &( pxTCB->xGenericListItem ) );\r
@@ -1591,7 +1588,7 @@ void vTaskIncrementTick( void )
 \r
 #if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
 \r
-       void vTaskSetApplicationTaskTag( xTaskHandle xTask, pdTASK_HOOK_CODE pxTagValue )\r
+       void vTaskSetApplicationTaskTag( xTaskHandle xTask, pdTASK_HOOK_CODE pxHookFunction )\r
        {\r
        tskTCB *xTCB;\r
 \r
@@ -1608,7 +1605,7 @@ void vTaskIncrementTick( void )
                /* Save the hook function in the TCB.  A critical section is required as\r
                the value can be accessed from an interrupt. */\r
                taskENTER_CRITICAL();\r
-                       xTCB->pxTaskTag = pxTagValue;\r
+                       xTCB->pxTaskTag = pxHookFunction;\r
                taskEXIT_CRITICAL();\r
        }\r
 \r
@@ -2374,7 +2371,7 @@ tskTCB *pxNewTCB;
 \r
 /*-----------------------------------------------------------*/\r
 \r
-#if ( INCLUDE_xTaskGetCurrentTaskHandle == 1 )\r
+#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) )\r
 \r
        xTaskHandle xTaskGetCurrentTaskHandle( void )\r
        {\r
@@ -2392,7 +2389,7 @@ tskTCB *pxNewTCB;
 \r
 /*-----------------------------------------------------------*/\r
 \r
-#if ( INCLUDE_xTaskGetSchedulerState == 1 )\r
+#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )\r
 \r
        portBASE_TYPE xTaskGetSchedulerState( void )\r
        {\r
index 62c8c318aababb0de24c99590206419c1c52e1e4..44071a1ed2250255e8028fc1adca91d1b5434b70 100644 (file)
@@ -65,7 +65,7 @@ task.h is included from an application file. */
 \r
 /* This entire source file will be skipped if the application is not configured\r
 to include software timer functionality.  This #if is closed at the very bottom\r
-of this file.  If you want to include software timer functionality then ensure \r
+of this file.  If you want to include software timer functionality then ensure\r
 configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */\r
 #if ( configUSE_TIMERS == 1 )\r
 \r
@@ -177,7 +177,7 @@ portBASE_TYPE xReturn = pdFAIL;
 \r
        if( xTimerQueue != NULL )\r
        {\r
-               xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Tmr Svc", configTIMER_TASK_STACK_DEPTH, NULL, configTIMER_TASK_PRIORITY, NULL);\r
+               xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Tmr Svc", ( unsigned short ) configTIMER_TASK_STACK_DEPTH, NULL, ( unsigned portBASE_TYPE ) configTIMER_TASK_PRIORITY, NULL);\r
        }\r
 \r
        configASSERT( xReturn );\r
@@ -274,7 +274,7 @@ portBASE_TYPE xResult;
 \r
        /* If the timer is an auto reload timer then calculate the next\r
        expiry time and re-insert the timer in the list of active timers. */\r
-       if( pxTimer->uxAutoReload == pdTRUE )\r
+       if( pxTimer->uxAutoReload == ( unsigned portBASE_TYPE ) pdTRUE )\r
        {\r
                /* This is the only time a timer is inserted into a list using\r
                a time relative to anything other than the current time.  It\r
@@ -499,7 +499,7 @@ portTickType xTimeNow;
                                        list.  Process it now. */\r
                                        pxTimer->pxCallbackFunction( ( xTimerHandle ) pxTimer );\r
 \r
-                                       if( pxTimer->uxAutoReload == pdTRUE )\r
+                                       if( pxTimer->uxAutoReload == ( unsigned portBASE_TYPE ) pdTRUE )\r
                                        {\r
                                                xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START, xMessage.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY );\r
                                                configASSERT( xResult );\r
@@ -560,7 +560,7 @@ portBASE_TYPE xResult;
                have not yet been switched. */\r
                pxTimer->pxCallbackFunction( ( xTimerHandle ) pxTimer );\r
 \r
-               if( pxTimer->uxAutoReload == pdTRUE )\r
+               if( pxTimer->uxAutoReload == ( unsigned portBASE_TYPE ) pdTRUE )\r
                {\r
                        /* Calculate the reload value, and if the reload value results in\r
                        the timer going into the same timer list then it has already expired\r
@@ -603,7 +603,7 @@ static void prvCheckForValidListAndQueue( void )
                        vListInitialise( &xActiveTimerList2 );\r
                        pxCurrentTimerList = &xActiveTimerList1;\r
                        pxOverflowTimerList = &xActiveTimerList2;\r
-                       xTimerQueue = xQueueCreate( configTIMER_QUEUE_LENGTH, sizeof( xTIMER_MESSAGE ) );\r
+                       xTimerQueue = xQueueCreate( ( unsigned portBASE_TYPE ) configTIMER_QUEUE_LENGTH, sizeof( xTIMER_MESSAGE ) );\r
                }\r
        }\r
        taskEXIT_CRITICAL();\r