Index: firmware/App/Services/MsgQueues.c =================================================================== diff -u -r3518e8a088c32e75c0c8960d5e629a7401095feb -r395522dffef1348e176564925656012f529c1910 --- firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision 3518e8a088c32e75c0c8960d5e629a7401095feb) +++ firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision 395522dffef1348e176564925656012f529c1910) @@ -1,17 +1,17 @@ /************************************************************************** * -* Copyright (c) 2024-2024 Diality Inc. - All Rights Reserved. +* Copyright (c) 2024-2026 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file MsgQueues.c * -* @author (last) Sean -* @date (last) 30-Jul-2024 +* @author (last) Sean Nash +* @date (last) 26-Aug-2024 * -* @author (original) Sean -* @date (original) 30-Jul-2024 +* @author (original) Sean Nash +* @date (original) 01-Aug-2024 * ***************************************************************************/ @@ -24,14 +24,14 @@ // ********** private definitions ********** -#define MAX_MSG_QUEUE_SIZE 100 ///< Number of messages a queue can hold. +#define MAX_MSG_QUEUE_SIZE 100 ///< Number of messages a queue can hold. // ********** private data ********** -static U32 msgQueueCounts[ NUM_OF_MSG_QUEUES ]; ///< Number of messages in each queue. -static U32 msgQueueStarts[ NUM_OF_MSG_QUEUES ]; ///< Starting index for each queue. -static U32 msgQueueNexts[ NUM_OF_MSG_QUEUES ]; ///< Next index for each queue. -static MESSAGE_WRAPPER_T msgQueues[ NUM_OF_MSG_QUEUES ][ MAX_MSG_QUEUE_SIZE ]; ///< The messages in each queue. +static U32 msgQueueCounts[ NUM_OF_MSG_QUEUES ]; ///< Number of messages in each queue. +static U32 msgQueueStarts[ NUM_OF_MSG_QUEUES ]; ///< Starting index for each queue. +static U32 msgQueueNexts[ NUM_OF_MSG_QUEUES ]; ///< Next index for each queue. +static MESSAGE_WRAPPER_T msgQueues[ NUM_OF_MSG_QUEUES ][ MAX_MSG_QUEUE_SIZE ]; ///< The messages in each queue. // ********** private function prototypes **********