]> git.sur5r.net Git - freertos/commitdiff
Continue working on queue set implementation and testing.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Feb 2013 15:50:14 +0000 (15:50 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 8 Feb 2013 15:50:14 +0000 (15:50 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1818 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Demo/Common/Minimal/QueueSet.c
FreeRTOS/Demo/Common/include/QueueSet.h
FreeRTOS/Demo/WIN32-MSVC/WIN32.suo
FreeRTOS/Demo/WIN32-MSVC/main.c
FreeRTOS/Source/include/queue.h
FreeRTOS/Source/queue.c

index ef06c9be04d87503421d97d188e0e82297bb04f3..15a1e6b36499394d04cd7378481fb9572e7eae1e 100644 (file)
  * Demonstrates the creation an use of queue sets.\r
  *\r
  * A receive task creates a number of queues and adds them to a queue set before\r
- * blocking on a queue set receive.  A transmit task repeatedly unblocks the\r
- * receive task by sending messages to the queues in a pseudo random order.\r
- * The receive task removes the messages from the queues and flags an error if\r
- * the received message does not match that expected.\r
+ * blocking on the queue set receive.  A transmit task and (optionally) an\r
+ * interrupt repeatedly unblocks the receive task by sending messages to the\r
+ * queues in a pseudo random order.  The receive task removes the messages from\r
+ * the queues and flags an error if the received message does not match that\r
+ * expected.  The task sends values in the range 0 to\r
+ * queuesetINITIAL_ISR_TX_VALUE, and the ISR sends value in the range\r
+ * queuesetINITIAL_ISR_TX_VALUE to 0xffffffffUL;\r
  */\r
 \r
 /* Kernel includes. */\r
 #define queuesetSHORT_DELAY    200\r
 #define queuesetDONT_BLOCK 0\r
 \r
+/* Messages are sent in incrementing order from both a task and an interrupt.\r
+The task sends values in the range 0 to 0xfffe, and the interrupt sends values\r
+in the range of 0xffff to 0xffffffff; */\r
+#define queuesetINITIAL_ISR_TX_VALUE 0xffffUL\r
+\r
+/* The priorities used in this demo. */\r
+#define queuesetLOW_PRIORITY   ( tskIDLE_PRIORITY )\r
+#define queuesetMEDIUM_PRIORITY ( queuesetLOW_PRIORITY + 1 )\r
+#define queuesetHIGH_PRIORITY  ( queuesetMEDIUM_PRIORITY + 1 )\r
+\r
+/* For test purposes the priority of the sending task is changed after every\r
+queuesetPRIORITY_CHANGE_LOOPS number of values are sent to a queue. */\r
+#define queuesetPRIORITY_CHANGE_LOOPS  100UL\r
+\r
+/* The ISR sends to the queue every queuesetISR_TX_PERIOD ticks. */\r
+#define queuesetISR_TX_PERIOD  ( 100UL )\r
+\r
 /*\r
  * The task that periodically sends to the queue set.\r
  */\r
@@ -107,6 +127,10 @@ static void prvQueueSetReceivingTask( void *pvParameters );
 /* The queues that are added to the set. */\r
 static xQueueHandle xQueues[ queuesetNUM_QUEUES_IN_SET ] = { 0 };\r
 \r
+/* Counts how many times each queue in the set is used to ensure all the\r
+queues are used. */\r
+static unsigned long ulQueueUsedCounter[ queuesetNUM_QUEUES_IN_SET ] = { 0 };\r
+\r
 /* The handle of the queue set to which the queues are added. */\r
 static xQueueSetHandle xQueueSet;\r
 \r
@@ -115,24 +139,32 @@ it increments ulCycleCounter on each iteration.
 xAreQueueSetTasksStillRunning() returns pdPASS if the value of\r
 ulCycleCounter has changed between consecutive calls, and pdFALSE if\r
 ulCycleCounter has stopped incrementing (indicating an error condition). */\r
-volatile unsigned long ulCycleCounter = 0UL;\r
+static volatile unsigned long ulCycleCounter = 0UL;\r
 \r
 /* Set to pdFAIL if an error is detected by any queue set task.\r
 ulCycleCounter will only be incremented if xQueueSetTasksSatus equals pdPASS. */\r
-volatile portBASE_TYPE xQueueSetTasksStatus = pdPASS;\r
+static volatile portBASE_TYPE xQueueSetTasksStatus = pdPASS;\r
+\r
+/* Just a flag to let the function that writes to a queue from an ISR know that\r
+the queues are setup and can be used. */\r
+static volatile portBASE_TYPE xSetupComplete = pdFALSE;\r
 \r
+/* The value sent to the queue from the ISR is file scope so the\r
+xAreQueeuSetTasksStillRunning() function can check it is incrementing as\r
+expected. */\r
+static volatile unsigned long ulISRTxValue = queuesetINITIAL_ISR_TX_VALUE;\r
 \r
 /*-----------------------------------------------------------*/\r
 \r
-void vStartQueueSetTasks( unsigned portBASE_TYPE uxPriority )\r
+void vStartQueueSetTasks( void )\r
 {\r
 xTaskHandle xQueueSetSendingTask;\r
 \r
        /* Create the two queues.  The handle of the sending task is passed into\r
        the receiving task using the task parameter.  The receiving task uses the\r
        handle to resume the sending task after it has created the queues. */\r
-       xTaskCreate( prvQueueSetSendingTask, ( signed char * ) "Check", configMINIMAL_STACK_SIZE, NULL, uxPriority, &xQueueSetSendingTask );\r
-       xTaskCreate( prvQueueSetReceivingTask, ( signed char * ) "Check", configMINIMAL_STACK_SIZE, ( void * ) xQueueSetSendingTask, uxPriority, NULL );\r
+       xTaskCreate( prvQueueSetSendingTask, ( signed char * ) "Check", configMINIMAL_STACK_SIZE, NULL, queuesetMEDIUM_PRIORITY, &xQueueSetSendingTask );\r
+       xTaskCreate( prvQueueSetReceivingTask, ( signed char * ) "Check", configMINIMAL_STACK_SIZE, ( void * ) xQueueSetSendingTask, queuesetMEDIUM_PRIORITY, NULL );\r
 \r
        /* It is important that the sending task does not attempt to write to a\r
        queue before the queue has been created.  It is therefore placed into the\r
@@ -145,8 +177,9 @@ xTaskHandle xQueueSetSendingTask;
 \r
 portBASE_TYPE xAreQueueSetTasksStillRunning( void )\r
 {\r
-static unsigned long ulLastCycleCounter;\r
-portBASE_TYPE xReturn;\r
+static unsigned long ulLastCycleCounter, ulLastISRTxValue = 0;\r
+static unsigned long ulLastQueueUsedCounter[ queuesetNUM_QUEUES_IN_SET ] = { 0 };\r
+portBASE_TYPE xReturn = pdPASS, x;\r
 \r
        if( ulLastCycleCounter == ulCycleCounter )\r
        {\r
@@ -154,44 +187,180 @@ portBASE_TYPE xReturn;
                tasks is stalled or an error has been detected. */\r
                xReturn = pdFAIL;\r
        }\r
+\r
+       ulLastCycleCounter = ulCycleCounter;\r
+\r
+       /* Ensure that all the queues in the set have been used.  This ensures the\r
+       test is working as intended and guards against the rand() in the Tx task\r
+       missing some values. */\r
+       for( x = 0; x < queuesetNUM_QUEUES_IN_SET; x++ )\r
+       {\r
+               if( ulLastQueueUsedCounter[ x ] == ulQueueUsedCounter[ x ] )\r
+               {\r
+                       xReturn = pdFAIL;\r
+               }\r
+\r
+               ulLastQueueUsedCounter[ x ] = ulQueueUsedCounter[ x ];\r
+       }\r
+\r
+       /* Check the global status flag. */\r
+       if( xQueueSetTasksStatus != pdPASS )\r
+       {\r
+               xReturn = pdFAIL;\r
+       }\r
+\r
+       /* Check that the ISR is still sending values to the queues too. */\r
+       if( ulISRTxValue == ulLastISRTxValue )\r
+       {\r
+               xReturn = pdFAIL;\r
+       }\r
        else\r
        {\r
-               xReturn = pdPASS;\r
+               ulLastISRTxValue = ulISRTxValue;\r
        }\r
 \r
        return xReturn;\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
+void vQueueSetWriteToQueueFromISR( void )\r
+{\r
+portBASE_TYPE x = 0;\r
+static unsigned long ulCallCount = 0;\r
+\r
+       /* xSetupComplete is set to pdTRUE when the queues have been created and\r
+       are available for use. */\r
+       if( xSetupComplete == pdTRUE )\r
+       {\r
+               /* It is intended that this function is called from the tick hook\r
+               function, so each call is one tick period apart. */\r
+               ulCallCount++;\r
+               if( ulCallCount > queuesetISR_TX_PERIOD )\r
+               {\r
+                       ulCallCount = 0;\r
+\r
+                       /* Look for a queue that can be written to. */\r
+                       for( x = 0; x < queuesetNUM_QUEUES_IN_SET; x++ )\r
+                       {\r
+                               if( xQueues[ x ] != NULL )\r
+                               {\r
+                                       /* xQueues[ x ] can be written to.  Send the next value. */\r
+                                       if( xQueueSendFromISR( xQueues[ x ], &ulISRTxValue, NULL ) == pdPASS )\r
+                                       {\r
+                                               ulISRTxValue++;\r
+\r
+                                               /* If the Tx value has wrapped then set it back to its\r
+                                               initial value. */\r
+                                               if( ulISRTxValue == 0UL )\r
+                                               {\r
+                                                       ulISRTxValue = queuesetINITIAL_ISR_TX_VALUE;\r
+                                               }\r
+                                       }\r
+\r
+                                       break;\r
+                               }\r
+                       }\r
+               }\r
+       }\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
 static void prvQueueSetSendingTask( void *pvParameters )\r
 {\r
-unsigned long ulTxValue = 0;\r
+unsigned long ulTaskTxValue = 0;\r
 portBASE_TYPE xQueueToWriteTo;\r
+xQueueHandle xQueueInUse;\r
+unsigned portBASE_TYPE uxPriority = queuesetMEDIUM_PRIORITY, ulLoops = 0;\r
 \r
        /* Remove compiler warning about the unused parameter. */\r
        ( void ) pvParameters;\r
 \r
-       srand( ( unsigned int ) &ulTxValue );\r
+       srand( ( unsigned int ) &ulTaskTxValue );\r
 \r
        for( ;; )\r
        {\r
                /* Generate the index for the queue to which a value is to be sent. */\r
                xQueueToWriteTo = rand() % queuesetNUM_QUEUES_IN_SET;\r
-               if( xQueueSendToBack( xQueues[ xQueueToWriteTo ], &ulTxValue, portMAX_DELAY ) != pdPASS )\r
+               xQueueInUse = xQueues[ xQueueToWriteTo ];\r
+\r
+               /* Note which index is being written to to ensure all the queues are\r
+               used. */\r
+               ( ulQueueUsedCounter[ xQueueToWriteTo ] )++;\r
+\r
+               /* Send to the queue to unblock the task that is waiting for data to\r
+               arrive on a queue within the queue set to which this queue belongs. */\r
+               if( xQueueSendToBack( xQueueInUse, &ulTaskTxValue, portMAX_DELAY ) != pdPASS )\r
                {\r
                        /* The send should always pass as an infinite block time was\r
                        used. */\r
                        xQueueSetTasksStatus = pdFAIL;\r
                }\r
 \r
-               ulTxValue++;\r
+               /* Attempt to remove the queue from a queue set it does not belong\r
+               to (NULL being passed as the queue set in this case). */\r
+               if( xQueueRemoveFromQueueSet( xQueueInUse, NULL ) != pdFAIL )\r
+               {\r
+                       /* It is not possible to successfully remove a queue from a queue\r
+                       set it does not belong to. */\r
+                       xQueueSetTasksStatus = pdFAIL;\r
+               }\r
+\r
+               /* Mark the space in the array of queues as being empty before actually\r
+               removing the queue from the queue set.  This is to prevent the code\r
+               that accesses the queue set from an interrupt from attempting to access\r
+               a queue that is no longer in the set. */\r
+               xQueues[ xQueueToWriteTo ] = 0;\r
+\r
+               /* Attempt to remove the queue from the queue set it does belong to. */\r
+               if( xQueueRemoveFromQueueSet( xQueueInUse, xQueueSet ) != pdPASS )\r
+               {\r
+                       /* It should be possible to remove the queue from the queue set it\r
+                       does belong to. */\r
+                       xQueueSetTasksStatus = pdFAIL;\r
+               }\r
+\r
+               /* Add the queue back before cycling back to run again. */\r
+               if( xQueueAddToQueueSet( xQueueInUse, xQueueSet ) != pdPASS )\r
+               {\r
+                       /* If the queue was successfully removed from the queue set then it\r
+                       should be possible to add it back in again. */\r
+                       xQueueSetTasksStatus = pdFAIL;\r
+               }\r
+\r
+               /* Now the queue is back in the set it is ok for the interrupt that\r
+               writes to the queues to access it again. */\r
+               xQueues[ xQueueToWriteTo ] = xQueueInUse;\r
+\r
+               ulTaskTxValue++;\r
+\r
+               /* If the Tx value has reached the range used by the ISR then set it\r
+               back to 0. */\r
+               if( ulTaskTxValue == queuesetINITIAL_ISR_TX_VALUE )\r
+               {\r
+                       ulTaskTxValue = 0;\r
+               }\r
+\r
+               /* Occasionally change the task priority relative to the priority of\r
+               the receiving task. */\r
+               ulLoops++;\r
+               if( ulLoops >= queuesetPRIORITY_CHANGE_LOOPS )\r
+               {\r
+                       ulLoops = 0;\r
+                       uxPriority++;\r
+                       if( uxPriority > queuesetHIGH_PRIORITY )\r
+                       {\r
+                               uxPriority = queuesetLOW_PRIORITY;\r
+                       }\r
+\r
+                       vTaskPrioritySet( NULL, uxPriority );\r
+               }\r
        }\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
 static void prvQueueSetReceivingTask( void *pvParameters )\r
 {\r
-unsigned long ulReceived, ulLastReceived = ~0UL;\r
+unsigned long ulReceived, ulExpectedReceivedFromTask = 0, ulExpectedReceivedFromISR = queuesetINITIAL_ISR_TX_VALUE;\r
 xQueueHandle xActivatedQueue;\r
 portBASE_TYPE x;\r
 xTaskHandle xQueueSetSendingTask;\r
@@ -208,7 +377,8 @@ xTaskHandle xQueueSetSendingTask;
 \r
        for( x = 0; x < queuesetNUM_QUEUES_IN_SET; x++ )\r
        {\r
-               /* Create the queue and add it to the set. */\r
+               /* Create the queue and add it to the set.  The queue is just holding\r
+               unsigned long value. */\r
                xQueues[ x ] = xQueueCreate( queuesetQUEUE_LENGTH, sizeof( unsigned long ) );\r
                configASSERT( xQueues[ x ] );\r
                if( xQueueAddToQueueSet( xQueues[ x ], xQueueSet ) != pdPASS )\r
@@ -227,16 +397,19 @@ xTaskHandle xQueueSetSendingTask;
        /* The task that sends to the queues is not running yet, so attempting to\r
        read from the queue set should fail, resulting in xActivatedQueue being set\r
        to NULL. */\r
-       xActivatedQueue = xQueueReadMultiple( xQueueSet, queuesetSHORT_DELAY );\r
+       xActivatedQueue = xQueueBlockMultiple( xQueueSet, queuesetSHORT_DELAY );\r
        configASSERT( xActivatedQueue == NULL );\r
 \r
        /* Resume the task that writes to the queues. */\r
        vTaskResume( xQueueSetSendingTask );\r
 \r
+       /* Let the ISR access the queues also. */\r
+       xSetupComplete = pdTRUE;\r
+\r
        for( ;; )\r
        {\r
                /* Wait for a message to arrive on one of the queues in the set. */\r
-               xActivatedQueue = xQueueReadMultiple( xQueueSet, portMAX_DELAY );\r
+               xActivatedQueue = xQueueBlockMultiple( xQueueSet, portMAX_DELAY );\r
                configASSERT( xActivatedQueue );\r
 \r
                if( xActivatedQueue == NULL )\r
@@ -254,16 +427,51 @@ xTaskHandle xQueueSetSendingTask;
                                xQueueSetTasksStatus = pdFAIL;\r
                        }\r
 \r
-                       /* It is always expected that the received value will be one\r
-                       greater than the previously received value. */\r
-                       configASSERT( ulReceived == ( ulLastReceived + 1 ) );\r
-                       if( ulReceived != ( ulLastReceived + 1 ) )\r
+                       /* If the received value is equal to or greater than\r
+                       queuesetINITIAL_ISR_TX_VALUE then it was sent by an ISR. */\r
+                       if( ulReceived >= queuesetINITIAL_ISR_TX_VALUE )\r
                        {\r
-                               xQueueSetTasksStatus = pdFAIL;\r
+                               /* The value was sent from the ISR.  Check it against its\r
+                               expected value. */\r
+                               configASSERT( ulReceived == ulExpectedReceivedFromISR );\r
+                               if( ulReceived != ulExpectedReceivedFromISR )\r
+                               {\r
+                                       xQueueSetTasksStatus = pdFAIL;\r
+                               }\r
+                               else\r
+                               {\r
+                                       /* It is expected to receive an incrementing value. */\r
+                                       ulExpectedReceivedFromISR++;\r
+\r
+                                       /* If the expected value has wrapped then set it back to\r
+                                       its initial value. */\r
+                                       if( ulExpectedReceivedFromISR == 0 )\r
+                                       {\r
+                                               ulExpectedReceivedFromISR = queuesetINITIAL_ISR_TX_VALUE;\r
+                                       }\r
+                               }\r
                        }\r
                        else\r
                        {\r
-                               ulLastReceived = ulReceived;\r
+                               /* The value was sent from the Tx task.  Check it against its\r
+                               expected value. */\r
+                               configASSERT( ulReceived == ulExpectedReceivedFromTask );\r
+                               if( ulReceived != ulExpectedReceivedFromTask )\r
+                               {\r
+                                       xQueueSetTasksStatus = pdFAIL;\r
+                               }\r
+                               else\r
+                               {\r
+                                       /* It is expected to receive an incrementing value. */\r
+                                       ulExpectedReceivedFromTask++;\r
+\r
+                                       /* If the expected value has reached the range of values\r
+                                       used by the ISR then set it back to 0. */\r
+                                       if( ulExpectedReceivedFromTask >= queuesetINITIAL_ISR_TX_VALUE )\r
+                                       {\r
+                                               ulExpectedReceivedFromTask = 0;\r
+                                       }\r
+                               }\r
                        }\r
                }\r
 \r
index 107b7a8bc9bf9bd7ec1e435d1f7a3eb505c07c59..eb203ec0e94680bb9962180e87285bdd3b3ef327 100644 (file)
 #ifndef QUEUE_WAIT_MULTIPLE_H\r
 #define QUEUE_WAIT_MULTIPLE_H\r
 \r
-void vStartQueueSetTasks( unsigned portBASE_TYPE uxPriority );\r
+void vStartQueueSetTasks( void );\r
 portBASE_TYPE xAreQueueSetTasksStillRunning( void );\r
+void vQueueSetWriteToQueueFromISR( void );\r
 \r
-#endif\r
+#endif /* QUEUE_WAIT_MULTIPLE_H */\r
 \r
 \r
index e48277fabc56a98f4bb5a1bdece4dce299c8bef3..96f9643bf0cfb5675778629313c6b8e5597ab45a 100644 (file)
Binary files a/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo and b/FreeRTOS/Demo/WIN32-MSVC/WIN32.suo differ
index fa0eadbdac957defc6c2feddf512d6cf7eef57f6..d4c972c2f9fb8c985964ee5151d3257f0ef6b62c 100644 (file)
 #define mainINTEGER_TASK_PRIORITY              ( tskIDLE_PRIORITY )\r
 #define mainGEN_QUEUE_TASK_PRIORITY            ( tskIDLE_PRIORITY )\r
 #define mainFLOP_TASK_PRIORITY                 ( tskIDLE_PRIORITY )\r
-#define mainQUEUE_SET_TASK_PRIORITY            ( tskIDLE_PRIORITY )\r
 \r
 #define mainTIMER_TEST_PERIOD                  ( 50 )\r
 \r
@@ -167,7 +166,7 @@ int main( void )
        vStartTimerDemoTask( mainTIMER_TEST_PERIOD );\r
        vStartCountingSemaphoreTasks();\r
        vStartDynamicPriorityTasks();\r
-       vStartQueueSetTasks( mainQUEUE_SET_TASK_PRIORITY );\r
+       vStartQueueSetTasks();\r
 \r
        /* The suicide tasks must be created last as they need to know how many\r
        tasks were running prior to their creation.  This then allows them to \r
@@ -406,6 +405,10 @@ void vApplicationTickHook( void )
        /* Call the periodic timer test, which tests the timer API functions that\r
        can be called from an ISR. */\r
        vTimerPeriodicISRTests();\r
+\r
+       /* Write to a queue that is in use as part of the queue set demo to \r
+       demonstrate using queue sets from an ISR. */\r
+       vQueueSetWriteToQueueFromISR();\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
index b9452662cf5883a2bdab926513436653ec4414f2..f2b466c21645884a832cb774d8c655d3248708cc 100644 (file)
@@ -91,10 +91,17 @@ typedef void * xQueueHandle;
 /**\r
  * Type by which queue sets are referenced.  For example, a call to\r
  * xQueueSetCreate() returns an xQueueSet variable that can then be used as a\r
- * parameter to xQueueReadMultiple(), xQueueAddToQueueSet(), etc.\r
+ * parameter to xQueueBlockMultiple(), xQueueAddToQueueSet(), etc.\r
  */\r
 typedef void * xQueueSetHandle;\r
 \r
+/**\r
+ * Queue sets can contain both queues and semaphores, so the \r
+ * xQueueSetMemberHandle is defined as a type to be used where a parameter or\r
+ * return value can be either an xQueueHandle or an xSemaphoreHandle.\r
+ */\r
+typedef void * xQueueSetMemberHandle;\r
\r
 /* For internal use only. */\r
 #define        queueSEND_TO_BACK       ( 0 )\r
 #define        queueSEND_TO_FRONT      ( 1 )\r
@@ -1305,7 +1312,7 @@ xQueueHandle xQueueGenericCreate( unsigned portBASE_TYPE uxQueueLength, unsigned
  * A queue set must be explicitly created using a call to xQueueSetCreate()\r
  * before it can be used.  Once created, standard FreeRTOS queues and semaphores\r
  * can be added to the set using calls to xQueueAddToQueueSet().\r
- * xQueueReadMultiple() is then used to determine which, if any, of the queues\r
+ * xQueueBlockMultiple() is then used to determine which, if any, of the queues\r
  * or semaphores contained in the set is in a state where a queue read or\r
  * semaphore take operation would be successful.\r
  *\r
@@ -1349,10 +1356,8 @@ xQueueSetHandle xQueueSetCreate( unsigned portBASE_TYPE uxEventQueueLength );
  * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this\r
  * function.\r
  *\r
- * @param xQueue The handle of the queue or semaphore being added to the\r
- * queue set.  Variables of type xSemaphoreHandle can be safely added to a\r
- * queue set but may require casting to an xQueueHandle type to avoid compiler\r
- * warnings.\r
+ * @param xQueueOrSemaphore The handle of the queue or semaphore being added to \r
+ * the queue set (cast to an xQueueSetMemberHandle type).\r
  *\r
  * @param xQueueSet The handle of the queue set to which the queue or semaphore\r
  * is being added.\r
@@ -1362,7 +1367,7 @@ xQueueSetHandle xQueueSetCreate( unsigned portBASE_TYPE uxEventQueueLength );
  * queue set because it is already a member of a different queue set then pdFAIL \r
  * is returned.\r
  */\r
-portBASE_TYPE xQueueAddToQueueSet( xQueueHandle xQueue, xQueueSetHandle xQueueSet );\r
+portBASE_TYPE xQueueAddToQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet );\r
 \r
 /*\r
  * Removes a queue or semaphore from a queue set.\r
@@ -1370,9 +1375,8 @@ portBASE_TYPE xQueueAddToQueueSet( xQueueHandle xQueue, xQueueSetHandle xQueueSe
  * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this\r
  * function.\r
  *\r
- * @param xQueue The handle of the queue or semaphore being removed from the\r
- * queue set.  Variables of type xSemaphoreHandle can be safely used but may \r
- * require casting to an xQueueHandle type to avoid compiler warnings.\r
+ * @param xQueueOrSemaphore The handle of the queue or semaphore being removed \r
+ * from the queue set (cast to an xQueueSetMemberHandle type).\r
  *\r
  * @param xQueueSet The handle of the queue set in which the queue or semaphore\r
  * is included.\r
@@ -1381,10 +1385,10 @@ portBASE_TYPE xQueueAddToQueueSet( xQueueHandle xQueue, xQueueSetHandle xQueueSe
  * then pdPASS is returned.  If the queue was not in the queue set then pdFAIL\r
  * is returned.\r
  */\r
-portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetHandle xQueueSet, xQueueHandle xQueue );\r
+portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet );\r
 \r
 /*\r
- * xQueueReadMultiple() allows a task to block (pend) on a read operation on\r
+ * xQueueBlockMultiple() allows a task to block (pend) on a read operation on\r
  * all the queues and semaphores in a queue set simultaneously.\r
  *\r
  * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this\r
@@ -1405,12 +1409,13 @@ portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetHandle xQueueSet, xQueueHandle
  * of the queue set to be ready for a successful queue read or semaphore take\r
  * operation.\r
  *\r
- * @return xQueueReadMultiple() will return the handle of a queue contained \r
- * in the queue set that contains data, or the handle of a semaphore contained\r
+ * @return xQueueBlockMultiple() will return the handle of a queue (cast to\r
+ * a xQueueSetMemberHandle type) contained in the queue set that contains data, \r
+ * or the handle of a semaphore (cast to a xQueueSetMemberHandle type) contained\r
  * in the queue set that is available, or NULL if no such queue or semaphore \r
  * exists before before the specified block time expires.\r
  */\r
-xQueueHandle xQueueReadMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks );\r
+xQueueSetMemberHandle xQueueBlockMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks );\r
 \r
 /* Not public API functions. */\r
 void vQueueWaitForMessageRestricted( xQueueHandle pxQueue, portTickType xTicksToWait );\r
index db21c3c071dabfebd7e061ff66ba94cacc69d88c..5d6b5aec23919a266c865eee85bcb897b88f8535 100644 (file)
@@ -1,7 +1,7 @@
 /*\r
     FreeRTOS V7.3.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
 \r
-    FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT \r
+    FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT\r
     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
 \r
     ***************************************************************************\r
@@ -42,7 +42,7 @@
     FreeRTOS WEB site.\r
 \r
     1 tab == 4 spaces!\r
-    \r
+\r
     ***************************************************************************\r
      *                                                                       *\r
      *    Having a problem?  Start by reading the FAQ "My application does   *\r
      *                                                                       *\r
     ***************************************************************************\r
 \r
-    \r
-    http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
-    and contact details.  \r
-    \r
+\r
+    http://www.FreeRTOS.org - Documentation, training, latest versions, license\r
+    and contact details.\r
+\r
     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
     including FreeRTOS+Trace - an indispensable productivity tool.\r
 \r
-    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
-    the code with commercial support, indemnification, and middleware, under \r
+    Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell\r
+    the code with commercial support, indemnification, and middleware, under\r
     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
-    provide a safety engineered and independently SIL3 certified version under \r
+    provide a safety engineered and independently SIL3 certified version under\r
     the SafeRTOS brand: http://www.SafeRTOS.com.\r
 */\r
 \r
@@ -148,15 +148,22 @@ typedef struct QueueDefinition
 /*-----------------------------------------------------------*/\r
 \r
 /*\r
- * Inside this file xQueueHandle is a pointer to a xQUEUE structure.\r
- * To keep the definition private the API header file defines it as a\r
- * pointer to void.\r
+ * Inside this file xQueueHandle and xQueueSetHandle are both pointers to xQUEUE\r
+ * structures.  To keep the definition private the API header file defines both\r
+ * as pointers to void.\r
  */\r
 typedef xQUEUE * xQueueHandle;\r
 typedef xQUEUE * xQueueSetHandle;\r
 \r
+/**\r
+ * Queue sets can contain both queues and semaphores, so the\r
+ * xQueueSetMemberHandle is defined as a type to be used where a parameter or\r
+ * return value can be either an xQueueHandle or an xSemaphoreHandle.\r
+ */\r
+typedef xQUEUE * xQueueSetMemberHandle;\r
+\r
 /*\r
- * In order to implement strict data hiding, the queue.h header file defines \r
+ * In order to implement strict data hiding, the queue.h header file defines\r
  * xQueueHandle and xQueueSetHandle as pointers to void.  In this file\r
  * xQueueHandle and xQueueSetHandle are defined as pointers to xQUEUE objects.\r
  * Therefore the queue.h header file cannot be included in this source file,\r
@@ -185,9 +192,9 @@ unsigned char ucQueueGetQueueType( xQueueHandle pxQueue ) PRIVILEGED_FUNCTION;
 portBASE_TYPE xQueueGenericReset( xQueueHandle pxQueue, portBASE_TYPE xNewQueue ) PRIVILEGED_FUNCTION;\r
 xTaskHandle xQueueGetMutexHolder( xQueueHandle xSemaphore ) PRIVILEGED_FUNCTION;\r
 xQueueSetHandle xQueueSetCreate( unsigned portBASE_TYPE uxEventQueueLength ) PRIVILEGED_FUNCTION;\r
-xQueueHandle xQueueReadMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks ) PRIVILEGED_FUNCTION;\r
-portBASE_TYPE xQueueAddToQueueSet( xQueueHandle xQueue, xQueueSetHandle xQueueSet ) PRIVILEGED_FUNCTION;\r
-portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetHandle xQueueSet, xQueueHandle xQueue ) PRIVILEGED_FUNCTION;\r
+xQueueSetMemberHandle xQueueBlockMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks ) PRIVILEGED_FUNCTION;\r
+portBASE_TYPE xQueueAddToQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet ) PRIVILEGED_FUNCTION;\r
+portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet ) PRIVILEGED_FUNCTION;\r
 \r
 /*\r
  * Co-routine queue functions differ from task queue functions.  Co-routines are\r
@@ -266,7 +273,7 @@ static void prvCopyDataFromQueue( xQUEUE * const pxQueue, const void *pvBuffer )
         * Checks to see if a queue is a member of a queue set, and if so, notifies\r
         * the queue set that the queue contains data.\r
         */\r
-       static portBASE_TYPE prvCheckForMembershipOfQueueSet( xQUEUE *pxQueue, portBASE_TYPE xCopyPosition );\r
+       static portBASE_TYPE prvNotifyQueueSetContainer( xQUEUE *pxQueue, portBASE_TYPE xCopyPosition );\r
 #endif\r
 \r
 /*-----------------------------------------------------------*/\r
@@ -361,7 +368,7 @@ xQueueHandle xReturn = NULL;
                                pxNewQueue->uxLength = uxQueueLength;\r
                                pxNewQueue->uxItemSize = uxItemSize;\r
                                xQueueGenericReset( pxNewQueue, pdTRUE );\r
-                               \r
+\r
                                #if ( configUSE_TRACE_FACILITY == 1 )\r
                                {\r
                                        pxNewQueue->ucQueueType = ucQueueType;\r
@@ -640,12 +647,15 @@ xTimeOutType xTimeOut;
                                {\r
                                        #if ( configUSE_QUEUE_SETS == 1 )\r
                                        {\r
-                                               if( prvCheckForMembershipOfQueueSet( pxQueue, xCopyPosition ) == pdTRUE )\r
+                                               if( pxQueue->pxQueueSetContainer != NULL )\r
                                                {\r
-                                                       /* The queue is a member of a queue set, and posting to\r
-                                                       the queue set caused a higher priority task to unblock.\r
-                                                       A context switch is required. */\r
-                                                       portYIELD_WITHIN_API();\r
+                                                       if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )\r
+                                                       {\r
+                                                               /* The queue is a member of a queue set, and posting to\r
+                                                               the queue set caused a higher priority task to unblock.\r
+                                                               A context switch is required. */\r
+                                                               portYIELD_WITHIN_API();\r
+                                                       }\r
                                                }\r
                                        }\r
                                        #endif /* configUSE_QUEUE_SETS */\r
@@ -985,7 +995,16 @@ unsigned portBASE_TYPE uxSavedInterruptStatus;
                                        {\r
                                                if( pxQueue->pxQueueSetContainer != NULL )\r
                                                {\r
-                                                       xQueueGenericSendFromISR( pxQueue->pxQueueSetContainer, &pxQueue, pxHigherPriorityTaskWoken, queueSEND_TO_BACK );\r
+                                                       if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )\r
+                                                       {\r
+                                                               /* The queue is a member of a queue set, and posting\r
+                                                               to the queue set caused a higher priority task to\r
+                                                               unblock.  A context switch is required. */\r
+                                                               if( pxHigherPriorityTaskWoken != NULL )\r
+                                                               {\r
+                                                                       *pxHigherPriorityTaskWoken = pdTRUE;\r
+                                                               }\r
+                                                       }\r
                                                }\r
                                        }\r
                                        #endif /* configUSE_QUEUE_SETS */\r
@@ -1068,7 +1087,7 @@ signed char *pcOriginalReadPosition;
                                {\r
                                        traceQUEUE_PEEK( pxQueue );\r
 \r
-                                       /* The data is not being removed, so reset the read     \r
+                                       /* The data is not being removed, so reset the read\r
                                        pointer. */\r
                                        pxQueue->pcReadFrom = pcOriginalReadPosition;\r
 \r
@@ -1084,17 +1103,6 @@ signed char *pcOriginalReadPosition;
                                                        portYIELD_WITHIN_API();\r
                                                }\r
                                        }\r
-                                       else\r
-                                       {\r
-                                               #if ( configUSE_QUEUE_SETS == 1 )\r
-                                               {\r
-                                                       if( pxQueue->pxQueueSetContainer != NULL )\r
-                                                       {\r
-                                                               xQueueGenericSend( pxQueue->pxQueueSetContainer, &pxQueue, 0, queueSEND_TO_BACK );\r
-                                                       }\r
-                                               }\r
-                                               #endif /* configUSE_QUEUE_SETS */\r
-                                       }\r
                                }\r
 \r
                                taskEXIT_CRITICAL();\r
@@ -1379,10 +1387,11 @@ static void prvUnlockQueue( xQueueHandle pxQueue )
                                        {\r
                                                if( pxQueue->pxQueueSetContainer != NULL )\r
                                                {\r
-                                                       portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
-                                                       xQueueGenericSendFromISR( pxQueue->pxQueueSetContainer, &pxQueue, &xHigherPriorityTaskWoken, queueSEND_TO_BACK );\r
-                                                       if( xHigherPriorityTaskWoken != pdFALSE )\r
+                                                       if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) == pdTRUE )\r
                                                        {\r
+                                                               /* The queue is a member of a queue set, and posting to\r
+                                                               the queue set caused a higher priority task to unblock.\r
+                                                               A context switch is required. */\r
                                                                vTaskMissedYield();\r
                                                        }\r
                                                }\r
@@ -1784,11 +1793,11 @@ signed portBASE_TYPE xReturn;
 \r
 #if ( configUSE_QUEUE_SETS == 1 )\r
 \r
-       portBASE_TYPE xQueueAddToQueueSet( xQueueHandle xQueue, xQueueSetHandle xQueueSet )\r
+       portBASE_TYPE xQueueAddToQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet )\r
        {\r
        portBASE_TYPE xReturn;\r
 \r
-               if( xQueue->pxQueueSetContainer != NULL )\r
+               if( xQueueOrSemaphore->pxQueueSetContainer != NULL )\r
                {\r
                        xReturn = pdFAIL;\r
                }\r
@@ -1796,7 +1805,7 @@ signed portBASE_TYPE xReturn;
                {\r
                        taskENTER_CRITICAL();\r
                        {\r
-                               xQueue->pxQueueSetContainer = xQueueSet;\r
+                               xQueueOrSemaphore->pxQueueSetContainer = xQueueSet;\r
                        }\r
                        taskEXIT_CRITICAL();\r
                        xReturn = pdPASS;\r
@@ -1810,11 +1819,11 @@ signed portBASE_TYPE xReturn;
 \r
 #if ( configUSE_QUEUE_SETS == 1 )\r
 \r
-       portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetHandle xQueueSet, xQueueHandle xQueue )\r
+       portBASE_TYPE xQueueRemoveFromQueueSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet )\r
        {\r
        portBASE_TYPE xReturn;\r
 \r
-               if( xQueue->pxQueueSetContainer != xQueueSet )\r
+               if( xQueueOrSemaphore->pxQueueSetContainer != xQueueSet )\r
                {\r
                        xReturn = pdFAIL;\r
                }\r
@@ -1822,7 +1831,7 @@ signed portBASE_TYPE xReturn;
                {\r
                        taskENTER_CRITICAL();\r
                        {\r
-                               xQueue->pxQueueSetContainer = NULL;\r
+                               xQueueOrSemaphore->pxQueueSetContainer = NULL;\r
                        }\r
                        taskEXIT_CRITICAL();\r
                        xReturn = pdPASS;\r
@@ -1836,10 +1845,10 @@ signed portBASE_TYPE xReturn;
 \r
 #if ( configUSE_QUEUE_SETS == 1 )\r
 \r
-       xQueueHandle xQueueReadMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks )\r
+       xQueueSetMemberHandle xQueueBlockMultiple( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks )\r
        {\r
-       xQueueHandle xReturn = NULL;\r
-       \r
+       xQueueSetMemberHandle xReturn = NULL;\r
+\r
                xQueueGenericReceive( ( xQueueHandle ) xQueueSet, &xReturn, xBlockTimeTicks, pdFALSE );\r
                return xReturn;\r
        }\r
@@ -1849,23 +1858,23 @@ signed portBASE_TYPE xReturn;
 \r
 #if ( configUSE_QUEUE_SETS == 1 )\r
 \r
-       static portBASE_TYPE prvCheckForMembershipOfQueueSet( xQUEUE *pxQueue, portBASE_TYPE xCopyPosition )\r
+       static portBASE_TYPE prvNotifyQueueSetContainer( xQUEUE *pxQueue, portBASE_TYPE xCopyPosition )\r
        {\r
        xQUEUE *pxQueueSetContainer = pxQueue->pxQueueSetContainer;\r
        portBASE_TYPE xReturn = pdFALSE;\r
 \r
-               if( pxQueueSetContainer != NULL )\r
+               configASSERT( pxQueueSetContainer );\r
+               configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength );\r
+\r
+               if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength )\r
                {\r
-                       if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength )\r
+                       prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition );\r
+                       if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE )\r
                        {\r
-                               prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition );\r
-                               if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE )\r
+                               if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE )\r
                                {\r
-                                       if( xTaskRemoveFromEventList( &( pxQueue->pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE )\r
-                                       {\r
-                                               /* The task waiting has a higher priority */\r
-                                               xReturn = pdTRUE;\r
-                                       }\r
+                                       /* The task waiting has a higher priority */\r
+                                       xReturn = pdTRUE;\r
                                }\r
                        }\r
                }\r