2 FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 ***************************************************************************
\r
9 * FreeRTOS provides completely free yet professionally developed, *
\r
10 * robust, strictly quality controlled, supported, and cross *
\r
11 * platform software that has become a de facto standard. *
\r
13 * Help yourself get started quickly and support the FreeRTOS *
\r
14 * project by purchasing a FreeRTOS tutorial book, reference *
\r
15 * manual, or both from: http://www.FreeRTOS.org/Documentation *
\r
19 ***************************************************************************
\r
21 This file is part of the FreeRTOS distribution.
\r
23 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
24 the terms of the GNU General Public License (version 2) as published by the
\r
25 Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.
\r
27 >>! NOTE: The modification to the GPL is included to allow you to distribute
\r
28 >>! a combined work that includes FreeRTOS without being obliged to provide
\r
29 >>! the source code for proprietary components outside of the FreeRTOS
\r
32 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
\r
33 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
\r
34 FOR A PARTICULAR PURPOSE. Full license text is available from the following
\r
35 link: http://www.freertos.org/a00114.html
\r
39 ***************************************************************************
\r
41 * Having a problem? Start by reading the FAQ "My application does *
\r
42 * not run, what could be wrong?" *
\r
44 * http://www.FreeRTOS.org/FAQHelp.html *
\r
46 ***************************************************************************
\r
48 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
\r
49 license and Real Time Engineers Ltd. contact details.
\r
51 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
\r
52 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
\r
53 compatible FAT file system, and our tiny thread aware UDP/IP stack.
\r
55 http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
\r
56 Integrity Systems to sell under the OpenRTOS brand. Low cost OpenRTOS
\r
57 licenses offer ticketed support, indemnification and middleware.
\r
59 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
\r
60 engineered and independently SIL3 certified version for use in safety and
\r
61 mission critical applications that require provable dependability.
\r
66 /* Standard includes. */
\r
69 /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining
\r
70 all the API functions to use the MPU wrappers. That should only be done when
\r
71 task.h is included from an application file. */
\r
72 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE
\r
74 #include "FreeRTOS.h"
\r
79 #if ( INCLUDE_xTimerPendCallbackFromISR == 1 ) && ( configUSE_TIMERS == 0 )
\r
80 #error configUSE_TIMERS must be set to 1 to make the INCLUDE_xTimerPendCallbackFromISR() function available.
\r
83 /* Lint e961 and e750 are suppressed as a MISRA exception justified because the
\r
84 MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the
\r
85 header files above, but not in this file, in order to generate the correct
\r
86 privileged Vs unprivileged linkage and placement. */
\r
87 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */
\r
90 /* This entire source file will be skipped if the application is not configured
\r
91 to include software timer functionality. This #if is closed at the very bottom
\r
92 of this file. If you want to include software timer functionality then ensure
\r
93 configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */
\r
94 #if ( configUSE_TIMERS == 1 )
\r
96 /* Misc definitions. */
\r
97 #define tmrNO_DELAY ( TickType_t ) 0U
\r
99 /* The definition of the timers themselves. */
\r
100 typedef struct tmrTimerControl
\r
102 const char *pcTimerName; /*<< Text name. This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
\r
103 ListItem_t xTimerListItem; /*<< Standard linked list item as used by all kernel features for event management. */
\r
104 TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */
\r
105 UBaseType_t uxAutoReload; /*<< Set to pdTRUE if the timer should be automatically restarted once expired. Set to pdFALSE if the timer is, in effect, a one-shot timer. */
\r
106 void *pvTimerID; /*<< An ID to identify the timer. This allows the timer to be identified when the same callback is used for multiple timers. */
\r
107 tmrTIMER_CALLBACK pxCallbackFunction; /*<< The function that will be called when the timer expires. */
\r
110 /* The definition of messages that can be sent and received on the timer queue.
\r
111 Two types of message can be queued - messages that manipulate a software timer,
\r
112 and messages that request the execution of a non-timer related callback. The
\r
113 two message types are defined in two separate structures, xTimerParametersType
\r
114 and xCallbackParametersType respectively. */
\r
115 typedef struct tmrTimerParameters
\r
117 TickType_t xMessageValue; /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */
\r
118 Timer_t * pxTimer; /*<< The timer to which the command will be applied. */
\r
119 } TimerParameter_t;
\r
122 typedef struct tmrCallbackParameters
\r
124 pdAPPLICATION_CALLBACK_CODE pxCallbackFunction; /* << The callback function to execute. */
\r
125 void *pvParameter1; /* << The value that will be used as the callback functions first parameter. */
\r
126 uint32_t ulParameter2; /* << The value that will be used as the callback functions second parameter. */
\r
127 } CallbackParameters_t;
\r
129 /* The structure that contains the two message types, along with an identifier
\r
130 that is used to determine which message type is valid. */
\r
131 typedef struct tmrTimerQueueMessage
\r
133 BaseType_t xMessageID; /*<< The command being sent to the timer service task. */
\r
136 TimerParameter_t xTimerParameters;
\r
138 /* Don't include xCallbackParameters if it is not going to be used as
\r
139 it makes the structure (and therefore the timer queue) larger. */
\r
140 #if ( INCLUDE_xTimerPendCallbackFromISR == 1 )
\r
141 CallbackParameters_t xCallbackParameters;
\r
142 #endif /* INCLUDE_xTimerPendCallbackFromISR */
\r
144 } DaemonTaskMessage_t;
\r
146 /*lint -e956 A manual analysis and inspection has been used to determine which
\r
147 static variables must be declared volatile. */
\r
149 /* The list in which active timers are stored. Timers are referenced in expire
\r
150 time order, with the nearest expiry time at the front of the list. Only the
\r
151 timer service task is allowed to access these lists. */
\r
152 PRIVILEGED_DATA static List_t xActiveTimerList1;
\r
153 PRIVILEGED_DATA static List_t xActiveTimerList2;
\r
154 PRIVILEGED_DATA static List_t *pxCurrentTimerList;
\r
155 PRIVILEGED_DATA static List_t *pxOverflowTimerList;
\r
157 /* A queue that is used to send commands to the timer service task. */
\r
158 PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL;
\r
160 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )
\r
162 PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL;
\r
168 /*-----------------------------------------------------------*/
\r
171 * Initialise the infrastructure used by the timer service task if it has not
\r
172 * been initialised already.
\r
174 static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION;
\r
177 * The timer service task (daemon). Timer functionality is controlled by this
\r
178 * task. Other tasks communicate with the timer service task using the
\r
179 * xTimerQueue queue.
\r
181 static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION;
\r
184 * Called by the timer service task to interpret and process a command it
\r
185 * received on the timer queue.
\r
187 static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION;
\r
190 * Insert the timer into either xActiveTimerList1, or xActiveTimerList2,
\r
191 * depending on if the expire time causes a timer counter overflow.
\r
193 static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION;
\r
196 * An active timer has reached its expire time. Reload the timer if it is an
\r
197 * auto reload timer, then call its callback.
\r
199 static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION;
\r
202 * The tick count has overflowed. Switch the timer lists after ensuring the
\r
203 * current timer list does not still reference some timers.
\r
205 static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION;
\r
208 * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE
\r
209 * if a tick count overflow occurred since prvSampleTimeNow() was last called.
\r
211 static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION;
\r
214 * If the timer list contains any active timers then return the expire time of
\r
215 * the timer that will expire first and set *pxListWasEmpty to false. If the
\r
216 * timer list does not contain any timers then return 0 and set *pxListWasEmpty
\r
219 static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION;
\r
222 * If a timer has expired, process it. Otherwise, block the timer service task
\r
223 * until either a timer does expire or a command is received.
\r
225 static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, const BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION;
\r
227 /*-----------------------------------------------------------*/
\r
229 BaseType_t xTimerCreateTimerTask( void )
\r
231 BaseType_t xReturn = pdFAIL;
\r
233 /* This function is called when the scheduler is started if
\r
234 configUSE_TIMERS is set to 1. Check that the infrastructure used by the
\r
235 timer service task has been created/initialised. If timers have already
\r
236 been created then the initialisation will already have been performed. */
\r
237 prvCheckForValidListAndQueue();
\r
239 if( xTimerQueue != NULL )
\r
241 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )
\r
243 /* Create the timer task, storing its handle in xTimerTaskHandle so
\r
244 it can be returned by the xTimerGetTimerDaemonTaskHandle() function. */
\r
245 xReturn = xTaskCreate( prvTimerTask, "Tmr Svc", ( uint16_t ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, &xTimerTaskHandle );
\r
249 /* Create the timer task without storing its handle. */
\r
250 xReturn = xTaskCreate( prvTimerTask, "Tmr Svc", ( uint16_t ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, NULL);
\r
256 mtCOVERAGE_TEST_MARKER();
\r
259 configASSERT( xReturn );
\r
262 /*-----------------------------------------------------------*/
\r
264 TimerHandle_t xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, tmrTIMER_CALLBACK pxCallbackFunction ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
\r
266 Timer_t *pxNewTimer;
\r
268 /* Allocate the timer structure. */
\r
269 if( xTimerPeriodInTicks == ( TickType_t ) 0U )
\r
275 pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) );
\r
276 if( pxNewTimer != NULL )
\r
278 /* Ensure the infrastructure used by the timer service task has been
\r
279 created/initialised. */
\r
280 prvCheckForValidListAndQueue();
\r
282 /* Initialise the timer structure members using the function parameters. */
\r
283 pxNewTimer->pcTimerName = pcTimerName;
\r
284 pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks;
\r
285 pxNewTimer->uxAutoReload = uxAutoReload;
\r
286 pxNewTimer->pvTimerID = pvTimerID;
\r
287 pxNewTimer->pxCallbackFunction = pxCallbackFunction;
\r
288 vListInitialiseItem( &( pxNewTimer->xTimerListItem ) );
\r
290 traceTIMER_CREATE( pxNewTimer );
\r
294 traceTIMER_CREATE_FAILED();
\r
298 /* 0 is not a valid value for xTimerPeriodInTicks. */
\r
299 configASSERT( ( xTimerPeriodInTicks > 0 ) );
\r
301 return ( TimerHandle_t ) pxNewTimer;
\r
303 /*-----------------------------------------------------------*/
\r
305 BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xBlockTime )
\r
307 BaseType_t xReturn = pdFAIL;
\r
308 DaemonTaskMessage_t xMessage;
\r
310 /* Send a message to the timer service task to perform a particular action
\r
311 on a particular timer definition. */
\r
312 if( xTimerQueue != NULL )
\r
314 /* Send a command to the timer service task to start the xTimer timer. */
\r
315 xMessage.xMessageID = xCommandID;
\r
316 xMessage.u.xTimerParameters.xMessageValue = xOptionalValue;
\r
317 xMessage.u.xTimerParameters.pxTimer = ( Timer_t * ) xTimer;
\r
319 if( pxHigherPriorityTaskWoken == NULL )
\r
321 if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING )
\r
323 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xBlockTime );
\r
327 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY );
\r
332 xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken );
\r
335 traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn );
\r
339 mtCOVERAGE_TEST_MARKER();
\r
344 /*-----------------------------------------------------------*/
\r
346 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )
\r
348 TaskHandle_t xTimerGetTimerDaemonTaskHandle( void )
\r
350 /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been
\r
351 started, then xTimerTaskHandle will be NULL. */
\r
352 configASSERT( ( xTimerTaskHandle != NULL ) );
\r
353 return xTimerTaskHandle;
\r
357 /*-----------------------------------------------------------*/
\r
359 static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow )
\r
361 BaseType_t xResult;
\r
362 Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList );
\r
364 /* Remove the timer from the list of active timers. A check has already
\r
365 been performed to ensure the list is not empty. */
\r
366 ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );
\r
367 traceTIMER_EXPIRED( pxTimer );
\r
369 /* If the timer is an auto reload timer then calculate the next
\r
370 expiry time and re-insert the timer in the list of active timers. */
\r
371 if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )
\r
373 /* The timer is inserted into a list using a time relative to anything
\r
374 other than the current time. It will therefore be inserted into the
\r
375 correct list relative to the time this task thinks it is now. */
\r
376 if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) == pdTRUE )
\r
378 /* The timer expired before it was added to the active timer
\r
379 list. Reload it now. */
\r
380 xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START, xNextExpireTime, NULL, tmrNO_DELAY );
\r
381 configASSERT( xResult );
\r
386 mtCOVERAGE_TEST_MARKER();
\r
391 mtCOVERAGE_TEST_MARKER();
\r
394 /* Call the timer callback. */
\r
395 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );
\r
397 /*-----------------------------------------------------------*/
\r
399 static void prvTimerTask( void *pvParameters )
\r
401 TickType_t xNextExpireTime;
\r
402 BaseType_t xListWasEmpty;
\r
404 /* Just to avoid compiler warnings. */
\r
405 ( void ) pvParameters;
\r
409 /* Query the timers list to see if it contains any timers, and if so,
\r
410 obtain the time at which the next timer will expire. */
\r
411 xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty );
\r
413 /* If a timer has expired, process it. Otherwise, block this task
\r
414 until either a timer does expire, or a command is received. */
\r
415 prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty );
\r
417 /* Empty the command queue. */
\r
418 prvProcessReceivedCommands();
\r
421 /*-----------------------------------------------------------*/
\r
423 static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, const BaseType_t xListWasEmpty )
\r
425 TickType_t xTimeNow;
\r
426 BaseType_t xTimerListsWereSwitched;
\r
430 /* Obtain the time now to make an assessment as to whether the timer
\r
431 has expired or not. If obtaining the time causes the lists to switch
\r
432 then don't process this timer as any timers that remained in the list
\r
433 when the lists were switched will have been processed within the
\r
434 prvSampleTimeNow() function. */
\r
435 xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched );
\r
436 if( xTimerListsWereSwitched == pdFALSE )
\r
438 /* The tick count has not overflowed, has the timer expired? */
\r
439 if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) )
\r
441 ( void ) xTaskResumeAll();
\r
442 prvProcessExpiredTimer( xNextExpireTime, xTimeNow );
\r
446 /* The tick count has not overflowed, and the next expire
\r
447 time has not been reached yet. This task should therefore
\r
448 block to wait for the next expire time or a command to be
\r
449 received - whichever comes first. The following line cannot
\r
450 be reached unless xNextExpireTime > xTimeNow, except in the
\r
451 case when the current timer list is empty. */
\r
452 vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ) );
\r
454 if( xTaskResumeAll() == pdFALSE )
\r
456 /* Yield to wait for either a command to arrive, or the block time
\r
457 to expire. If a command arrived between the critical section being
\r
458 exited and this yield then the yield will not cause the task
\r
460 portYIELD_WITHIN_API();
\r
464 mtCOVERAGE_TEST_MARKER();
\r
470 ( void ) xTaskResumeAll();
\r
474 /*-----------------------------------------------------------*/
\r
476 static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty )
\r
478 TickType_t xNextExpireTime;
\r
480 /* Timers are listed in expiry time order, with the head of the list
\r
481 referencing the task that will expire first. Obtain the time at which
\r
482 the timer with the nearest expiry time will expire. If there are no
\r
483 active timers then just set the next expire time to 0. That will cause
\r
484 this task to unblock when the tick count overflows, at which point the
\r
485 timer lists will be switched and the next expiry time can be
\r
487 *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList );
\r
488 if( *pxListWasEmpty == pdFALSE )
\r
490 xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList );
\r
494 /* Ensure the task unblocks when the tick count rolls over. */
\r
495 xNextExpireTime = ( TickType_t ) 0U;
\r
498 return xNextExpireTime;
\r
500 /*-----------------------------------------------------------*/
\r
502 static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched )
\r
504 TickType_t xTimeNow;
\r
505 PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */
\r
507 xTimeNow = xTaskGetTickCount();
\r
509 if( xTimeNow < xLastTime )
\r
511 prvSwitchTimerLists();
\r
512 *pxTimerListsWereSwitched = pdTRUE;
\r
516 *pxTimerListsWereSwitched = pdFALSE;
\r
519 xLastTime = xTimeNow;
\r
523 /*-----------------------------------------------------------*/
\r
525 static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime )
\r
527 BaseType_t xProcessTimerNow = pdFALSE;
\r
529 listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime );
\r
530 listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer );
\r
532 if( xNextExpiryTime <= xTimeNow )
\r
534 /* Has the expiry time elapsed between the command to start/reset a
\r
535 timer was issued, and the time the command was processed? */
\r
536 if( ( xTimeNow - xCommandTime ) >= pxTimer->xTimerPeriodInTicks )
\r
538 /* The time between a command being issued and the command being
\r
539 processed actually exceeds the timers period. */
\r
540 xProcessTimerNow = pdTRUE;
\r
544 vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) );
\r
549 if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) )
\r
551 /* If, since the command was issued, the tick count has overflowed
\r
552 but the expiry time has not, then the timer must have already passed
\r
553 its expiry time and should be processed immediately. */
\r
554 xProcessTimerNow = pdTRUE;
\r
558 vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) );
\r
562 return xProcessTimerNow;
\r
564 /*-----------------------------------------------------------*/
\r
566 static void prvProcessReceivedCommands( void )
\r
568 DaemonTaskMessage_t xMessage;
\r
570 BaseType_t xTimerListsWereSwitched, xResult;
\r
571 TickType_t xTimeNow;
\r
573 while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */
\r
575 #if ( INCLUDE_xTimerPendCallbackFromISR == 1 )
\r
577 if( xMessage.xMessageID == tmrCOMMAND_EXECUTE_CALLBACK )
\r
579 const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters );
\r
581 /* The timer uses the xCallbackParameters member to request a
\r
582 callback be executed. Check the callback is not NULL. */
\r
583 configASSERT( pxCallback );
\r
585 /* Call the function. */
\r
586 pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 );
\r
590 mtCOVERAGE_TEST_MARKER();
\r
593 #endif /* INCLUDE_xTimerPendCallbackFromISR */
\r
595 if( xMessage.xMessageID != tmrCOMMAND_EXECUTE_CALLBACK )
\r
597 /* The messages uses the xTimerParameters member to work on a
\r
599 pxTimer = xMessage.u.xTimerParameters.pxTimer;
\r
601 if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE )
\r
603 /* The timer is in a list, remove it. */
\r
604 ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );
\r
608 mtCOVERAGE_TEST_MARKER();
\r
611 traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue );
\r
613 /* In this case the xTimerListsWereSwitched parameter is not used, but
\r
614 it must be present in the function call. prvSampleTimeNow() must be
\r
615 called after the message is received from xTimerQueue so there is no
\r
616 possibility of a higher priority task adding a message to the message
\r
617 queue with a time that is ahead of the timer daemon task (because it
\r
618 pre-empted the timer daemon task after the xTimeNow value was set). */
\r
619 xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched );
\r
621 switch( xMessage.xMessageID )
\r
623 case tmrCOMMAND_START :
\r
624 /* Start or restart a timer. */
\r
625 if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) == pdTRUE )
\r
627 /* The timer expired before it was added to the active
\r
628 timer list. Process it now. */
\r
629 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );
\r
630 traceTIMER_EXPIRED( pxTimer );
\r
632 if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )
\r
634 xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY );
\r
635 configASSERT( xResult );
\r
640 mtCOVERAGE_TEST_MARKER();
\r
645 mtCOVERAGE_TEST_MARKER();
\r
649 case tmrCOMMAND_STOP :
\r
650 /* The timer has already been removed from the active list.
\r
651 There is nothing to do here. */
\r
654 case tmrCOMMAND_CHANGE_PERIOD :
\r
655 pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue;
\r
656 configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) );
\r
658 /* The new period does not really have a reference, and can be
\r
659 longer or shorter than the old one. The command time is
\r
660 therefore set to the current time, and as the period cannot be
\r
661 zero the next expiry time can only be in the future, meaning
\r
662 (unlike for the xTimerStart() case above) there is no fail case
\r
663 that needs to be handled here. */
\r
664 ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow );
\r
667 case tmrCOMMAND_DELETE :
\r
668 /* The timer has already been removed from the active list,
\r
669 just free up the memory. */
\r
670 vPortFree( pxTimer );
\r
674 /* Don't expect to get here. */
\r
680 /*-----------------------------------------------------------*/
\r
682 static void prvSwitchTimerLists( void )
\r
684 TickType_t xNextExpireTime, xReloadTime;
\r
687 BaseType_t xResult;
\r
689 /* The tick count has overflowed. The timer lists must be switched.
\r
690 If there are any timers still referenced from the current timer list
\r
691 then they must have expired and should be processed before the lists
\r
693 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE )
\r
695 xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList );
\r
697 /* Remove the timer from the list. */
\r
698 pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList );
\r
699 ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );
\r
700 traceTIMER_EXPIRED( pxTimer );
\r
702 /* Execute its callback, then send a command to restart the timer if
\r
703 it is an auto-reload timer. It cannot be restarted here as the lists
\r
704 have not yet been switched. */
\r
705 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );
\r
707 if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )
\r
709 /* Calculate the reload value, and if the reload value results in
\r
710 the timer going into the same timer list then it has already expired
\r
711 and the timer should be re-inserted into the current list so it is
\r
712 processed again within this loop. Otherwise a command should be sent
\r
713 to restart the timer to ensure it is only inserted into a list after
\r
714 the lists have been swapped. */
\r
715 xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks );
\r
716 if( xReloadTime > xNextExpireTime )
\r
718 listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime );
\r
719 listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer );
\r
720 vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) );
\r
724 xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START, xNextExpireTime, NULL, tmrNO_DELAY );
\r
725 configASSERT( xResult );
\r
731 mtCOVERAGE_TEST_MARKER();
\r
735 pxTemp = pxCurrentTimerList;
\r
736 pxCurrentTimerList = pxOverflowTimerList;
\r
737 pxOverflowTimerList = pxTemp;
\r
739 /*-----------------------------------------------------------*/
\r
741 static void prvCheckForValidListAndQueue( void )
\r
743 /* Check that the list from which active timers are referenced, and the
\r
744 queue used to communicate with the timer service, have been
\r
746 taskENTER_CRITICAL();
\r
748 if( xTimerQueue == NULL )
\r
750 vListInitialise( &xActiveTimerList1 );
\r
751 vListInitialise( &xActiveTimerList2 );
\r
752 pxCurrentTimerList = &xActiveTimerList1;
\r
753 pxOverflowTimerList = &xActiveTimerList2;
\r
754 xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) );
\r
755 configASSERT( xTimerQueue );
\r
757 #if ( configQUEUE_REGISTRY_SIZE > 0 )
\r
759 if( xTimerQueue != NULL )
\r
761 vQueueAddToRegistry( xTimerQueue, "TmrQ" );
\r
765 mtCOVERAGE_TEST_MARKER();
\r
768 #endif /* configQUEUE_REGISTRY_SIZE */
\r
772 mtCOVERAGE_TEST_MARKER();
\r
775 taskEXIT_CRITICAL();
\r
777 /*-----------------------------------------------------------*/
\r
779 BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer )
\r
781 BaseType_t xTimerIsInActiveList;
\r
782 Timer_t *pxTimer = ( Timer_t * ) xTimer;
\r
784 /* Is the timer in the list of active timers? */
\r
785 taskENTER_CRITICAL();
\r
787 /* Checking to see if it is in the NULL list in effect checks to see if
\r
788 it is referenced from either the current or the overflow timer lists in
\r
789 one go, but the logic has to be reversed, hence the '!'. */
\r
790 xTimerIsInActiveList = !( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) );
\r
792 taskEXIT_CRITICAL();
\r
794 return xTimerIsInActiveList;
\r
796 /*-----------------------------------------------------------*/
\r
798 void *pvTimerGetTimerID( const TimerHandle_t xTimer )
\r
800 Timer_t * const pxTimer = ( Timer_t * ) xTimer;
\r
802 return pxTimer->pvTimerID;
\r
804 /*-----------------------------------------------------------*/
\r
806 #if( INCLUDE_xTimerPendCallbackFromISR == 1 )
\r
808 BaseType_t xTimerPendCallbackFromISR( pdAPPLICATION_CALLBACK_CODE pvCallbackFunction, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken )
\r
810 DaemonTaskMessage_t xMessage;
\r
811 BaseType_t xReturn;
\r
813 /* Complete the message with the function parameters and post it to the
\r
815 xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK;
\r
816 xMessage.u.xCallbackParameters.pxCallbackFunction = pvCallbackFunction;
\r
817 xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1;
\r
818 xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2;
\r
820 xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken );
\r
825 #endif /* INCLUDE_xTimerPendCallbackFromISR */
\r
826 /*-----------------------------------------------------------*/
\r
828 /* This entire source file will be skipped if the application is not configured
\r
829 to include software timer functionality. If you want to include software timer
\r
830 functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */
\r
831 #endif /* configUSE_TIMERS == 1 */
\r