GM6000 Digital Heater Controller Branch: main
SDX-1330
timers.h
1/*
2 * FreeRTOS Kernel V10.0.0
3 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software. If you wish to use our Amazon
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * http://www.FreeRTOS.org
24 * http://aws.amazon.com/freertos
25 *
26 * 1 tab == 4 spaces!
27 */
28
29#ifndef TIMERS_H
30#define TIMERS_H
31
32#ifndef INC_FREERTOS_H
33#error "include FreeRTOS.h must appear in source files before include timers.h"
34#endif
35
36/*lint -save -e537 This headers are only multiply included if the application code
37happens to also be including task.h. */
38#include "task.h"
39/*lint -restore */
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44
45/*-----------------------------------------------------------
46 * MACROS AND DEFINITIONS
47 *----------------------------------------------------------*/
48
49/* IDs for commands that can be sent/received on the timer queue. These are to
50be used solely through the macros that make up the public software timer API,
51as defined below. The commands that are sent from interrupts must use the
52highest numbers as tmrFIRST_FROM_ISR_COMMAND is used to determine if the task
53or interrupt version of the queue send function should be used. */
54#define tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR ((BaseType_t)-2)
55#define tmrCOMMAND_EXECUTE_CALLBACK ((BaseType_t)-1)
56#define tmrCOMMAND_START_DONT_TRACE ((BaseType_t)0)
57#define tmrCOMMAND_START ((BaseType_t)1)
58#define tmrCOMMAND_RESET ((BaseType_t)2)
59#define tmrCOMMAND_STOP ((BaseType_t)3)
60#define tmrCOMMAND_CHANGE_PERIOD ((BaseType_t)4)
61#define tmrCOMMAND_DELETE ((BaseType_t)5)
62
63#define tmrFIRST_FROM_ISR_COMMAND ((BaseType_t)6)
64#define tmrCOMMAND_START_FROM_ISR ((BaseType_t)6)
65#define tmrCOMMAND_RESET_FROM_ISR ((BaseType_t)7)
66#define tmrCOMMAND_STOP_FROM_ISR ((BaseType_t)8)
67#define tmrCOMMAND_CHANGE_PERIOD_FROM_ISR ((BaseType_t)9)
68
69/**
70 * Type by which software timers are referenced. For example, a call to
71 * xTimerCreate() returns an TimerHandle_t variable that can then be used to
72 * reference the subject timer in calls to other software timer API functions
73 * (for example, xTimerStart(), xTimerReset(), etc.).
74 */
75typedef void *TimerHandle_t;
76
77/*
78 * Defines the prototype to which timer callback functions must conform.
79 */
80typedef void (*TimerCallbackFunction_t)(TimerHandle_t xTimer);
81
82/*
83 * Defines the prototype to which functions used with the
84 * xTimerPendFunctionCallFromISR() function must conform.
85 */
86typedef void (*PendedFunction_t)(void *, uint32_t);
87
88/**
89 * TimerHandle_t xTimerCreate( const char * const pcTimerName,
90 * TickType_t xTimerPeriodInTicks,
91 * UBaseType_t uxAutoReload,
92 * void * pvTimerID,
93 * TimerCallbackFunction_t pxCallbackFunction );
94 *
95 * Creates a new software timer instance, and returns a handle by which the
96 * created software timer can be referenced.
97 *
98 * Internally, within the FreeRTOS implementation, software timers use a block
99 * of memory, in which the timer data structure is stored. If a software timer
100 * is created using xTimerCreate() then the required memory is automatically
101 * dynamically allocated inside the xTimerCreate() function. (see
102 * http://www.freertos.org/a00111.html). If a software timer is created using
103 * xTimerCreateStatic() then the application writer must provide the memory that
104 * will get used by the software timer. xTimerCreateStatic() therefore allows a
105 * software timer to be created without using any dynamic memory allocation.
106 *
107 * Timers are created in the dormant state. The xTimerStart(), xTimerReset(),
108 * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and
109 * xTimerChangePeriodFromISR() API functions can all be used to transition a
110 * timer into the active state.
111 *
112 * @param pcTimerName A text name that is assigned to the timer. This is done
113 * purely to assist debugging. The kernel itself only ever references a timer
114 * by its handle, and never by its name.
115 *
116 * @param xTimerPeriodInTicks The timer period. The time is defined in tick
117 * periods so the constant portTICK_PERIOD_MS can be used to convert a time that
118 * has been specified in milliseconds. For example, if the timer must expire
119 * after 100 ticks, then xTimerPeriodInTicks should be set to 100.
120 * Alternatively, if the timer must expire after 500ms, then xPeriod can be set
121 * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or
122 * equal to 1000.
123 *
124 * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will
125 * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter.
126 * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and
127 * enter the dormant state after it expires.
128 *
129 * @param pvTimerID An identifier that is assigned to the timer being created.
130 * Typically this would be used in the timer callback function to identify which
131 * timer expired when the same callback function is assigned to more than one
132 * timer.
133 *
134 * @param pxCallbackFunction The function to call when the timer expires.
135 * Callback functions must have the prototype defined by TimerCallbackFunction_t,
136 * which is "void vCallbackFunction( TimerHandle_t xTimer );".
137 *
138 * @return If the timer is successfully created then a handle to the newly
139 * created timer is returned. If the timer cannot be created (because either
140 * there is insufficient FreeRTOS heap remaining to allocate the timer
141 * structures, or the timer period was set to 0) then NULL is returned.
142 *
143 * Example usage:
144 * @verbatim
145 * #define NUM_TIMERS 5
146 *
147 * // An array to hold handles to the created timers.
148 * TimerHandle_t xTimers[ NUM_TIMERS ];
149 *
150 * // An array to hold a count of the number of times each timer expires.
151 * int32_t lExpireCounters[ NUM_TIMERS ] = { 0 };
152 *
153 * // Define a callback function that will be used by multiple timer instances.
154 * // The callback function does nothing but count the number of times the
155 * // associated timer expires, and stop the timer once the timer has expired
156 * // 10 times.
157 * void vTimerCallback( TimerHandle_t pxTimer )
158 * {
159 * int32_t lArrayIndex;
160 * const int32_t xMaxExpiryCountBeforeStopping = 10;
161 *
162 * // Optionally do something if the pxTimer parameter is NULL.
163 * configASSERT( pxTimer );
164 *
165 * // Which timer expired?
166 * lArrayIndex = ( int32_t ) pvTimerGetTimerID( pxTimer );
167 *
168 * // Increment the number of times that pxTimer has expired.
169 * lExpireCounters[ lArrayIndex ] += 1;
170 *
171 * // If the timer has expired 10 times then stop it from running.
172 * if( lExpireCounters[ lArrayIndex ] == xMaxExpiryCountBeforeStopping )
173 * {
174 * // Do not use a block time if calling a timer API function from a
175 * // timer callback function, as doing so could cause a deadlock!
176 * xTimerStop( pxTimer, 0 );
177 * }
178 * }
179 *
180 * void main( void )
181 * {
182 * int32_t x;
183 *
184 * // Create then start some timers. Starting the timers before the scheduler
185 * // has been started means the timers will start running immediately that
186 * // the scheduler starts.
187 * for( x = 0; x < NUM_TIMERS; x++ )
188 * {
189 * xTimers[ x ] = xTimerCreate( "Timer", // Just a text name, not used by the kernel.
190 * ( 100 * x ), // The timer period in ticks.
191 * pdTRUE, // The timers will auto-reload themselves when they expire.
192 * ( void * ) x, // Assign each timer a unique id equal to its array index.
193 * vTimerCallback // Each timer calls the same callback when it expires.
194 * );
195 *
196 * if( xTimers[ x ] == NULL )
197 * {
198 * // The timer was not created.
199 * }
200 * else
201 * {
202 * // Start the timer. No block time is specified, and even if one was
203 * // it would be ignored because the scheduler has not yet been
204 * // started.
205 * if( xTimerStart( xTimers[ x ], 0 ) != pdPASS )
206 * {
207 * // The timer could not be set into the Active state.
208 * }
209 * }
210 * }
211 *
212 * // ...
213 * // Create tasks here.
214 * // ...
215 *
216 * // Starting the scheduler will start the timers running as they have already
217 * // been set into the active state.
218 * vTaskStartScheduler();
219 *
220 * // Should not reach here.
221 * for( ;; );
222 * }
223 * @endverbatim
224 */
225#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
226TimerHandle_t
227xTimerCreate(const char *const
228 pcTimerName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
229 const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void *const pvTimerID,
230 TimerCallbackFunction_t pxCallbackFunction) PRIVILEGED_FUNCTION;
231#endif
232
233/**
234 * TimerHandle_t xTimerCreateStatic(const char * const pcTimerName,
235 * TickType_t xTimerPeriodInTicks,
236 * UBaseType_t uxAutoReload,
237 * void * pvTimerID,
238 * TimerCallbackFunction_t pxCallbackFunction,
239 * StaticTimer_t *pxTimerBuffer );
240 *
241 * Creates a new software timer instance, and returns a handle by which the
242 * created software timer can be referenced.
243 *
244 * Internally, within the FreeRTOS implementation, software timers use a block
245 * of memory, in which the timer data structure is stored. If a software timer
246 * is created using xTimerCreate() then the required memory is automatically
247 * dynamically allocated inside the xTimerCreate() function. (see
248 * http://www.freertos.org/a00111.html). If a software timer is created using
249 * xTimerCreateStatic() then the application writer must provide the memory that
250 * will get used by the software timer. xTimerCreateStatic() therefore allows a
251 * software timer to be created without using any dynamic memory allocation.
252 *
253 * Timers are created in the dormant state. The xTimerStart(), xTimerReset(),
254 * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and
255 * xTimerChangePeriodFromISR() API functions can all be used to transition a
256 * timer into the active state.
257 *
258 * @param pcTimerName A text name that is assigned to the timer. This is done
259 * purely to assist debugging. The kernel itself only ever references a timer
260 * by its handle, and never by its name.
261 *
262 * @param xTimerPeriodInTicks The timer period. The time is defined in tick
263 * periods so the constant portTICK_PERIOD_MS can be used to convert a time that
264 * has been specified in milliseconds. For example, if the timer must expire
265 * after 100 ticks, then xTimerPeriodInTicks should be set to 100.
266 * Alternatively, if the timer must expire after 500ms, then xPeriod can be set
267 * to ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than or
268 * equal to 1000.
269 *
270 * @param uxAutoReload If uxAutoReload is set to pdTRUE then the timer will
271 * expire repeatedly with a frequency set by the xTimerPeriodInTicks parameter.
272 * If uxAutoReload is set to pdFALSE then the timer will be a one-shot timer and
273 * enter the dormant state after it expires.
274 *
275 * @param pvTimerID An identifier that is assigned to the timer being created.
276 * Typically this would be used in the timer callback function to identify which
277 * timer expired when the same callback function is assigned to more than one
278 * timer.
279 *
280 * @param pxCallbackFunction The function to call when the timer expires.
281 * Callback functions must have the prototype defined by TimerCallbackFunction_t,
282 * which is "void vCallbackFunction( TimerHandle_t xTimer );".
283 *
284 * @param pxTimerBuffer Must point to a variable of type StaticTimer_t, which
285 * will be then be used to hold the software timer's data structures, removing
286 * the need for the memory to be allocated dynamically.
287 *
288 * @return If the timer is created then a handle to the created timer is
289 * returned. If pxTimerBuffer was NULL then NULL is returned.
290 *
291 * Example usage:
292 * @verbatim
293 *
294 * // The buffer used to hold the software timer's data structure.
295 * static StaticTimer_t xTimerBuffer;
296 *
297 * // A variable that will be incremented by the software timer's callback
298 * // function.
299 * UBaseType_t uxVariableToIncrement = 0;
300 *
301 * // A software timer callback function that increments a variable passed to
302 * // it when the software timer was created. After the 5th increment the
303 * // callback function stops the software timer.
304 * static void prvTimerCallback( TimerHandle_t xExpiredTimer )
305 * {
306 * UBaseType_t *puxVariableToIncrement;
307 * BaseType_t xReturned;
308 *
309 * // Obtain the address of the variable to increment from the timer ID.
310 * puxVariableToIncrement = ( UBaseType_t * ) pvTimerGetTimerID( xExpiredTimer );
311 *
312 * // Increment the variable to show the timer callback has executed.
313 * ( *puxVariableToIncrement )++;
314 *
315 * // If this callback has executed the required number of times, stop the
316 * // timer.
317 * if( *puxVariableToIncrement == 5 )
318 * {
319 * // This is called from a timer callback so must not block.
320 * xTimerStop( xExpiredTimer, staticDONT_BLOCK );
321 * }
322 * }
323 *
324 *
325 * void main( void )
326 * {
327 * // Create the software time. xTimerCreateStatic() has an extra parameter
328 * // than the normal xTimerCreate() API function. The parameter is a pointer
329 * // to the StaticTimer_t structure that will hold the software timer
330 * // structure. If the parameter is passed as NULL then the structure will be
331 * // allocated dynamically, just as if xTimerCreate() had been called.
332 * xTimer = xTimerCreateStatic( "T1", // Text name for the task. Helps debugging only. Not used by
333 *FreeRTOS. xTimerPeriod, // The period of the timer in ticks. pdTRUE, // This is an auto-reload timer. (
334 *void * ) &uxVariableToIncrement, // A variable incremented by the software
335 *timer's callback function prvTimerCallback, // The function to execute when the timer expires. &xTimerBuffer ); //
336 *The buffer that will hold the software timer structure.
337 *
338 * // The scheduler has not started yet so a block time is not used.
339 * xReturned = xTimerStart( xTimer, 0 );
340 *
341 * // ...
342 * // Create tasks here.
343 * // ...
344 *
345 * // Starting the scheduler will start the timers running as they have already
346 * // been set into the active state.
347 * vTaskStartScheduler();
348 *
349 * // Should not reach here.
350 * for( ;; );
351 * }
352 * @endverbatim
353 */
354#if (configSUPPORT_STATIC_ALLOCATION == 1)
355TimerHandle_t xTimerCreateStatic(const char *const pcTimerName, /*lint !e971 Unqualified char types are allowed for
356 strings and single characters only. */
357 const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload,
358 void *const pvTimerID, TimerCallbackFunction_t pxCallbackFunction,
359 StaticTimer_t *pxTimerBuffer) PRIVILEGED_FUNCTION;
360#endif /* configSUPPORT_STATIC_ALLOCATION */
361
362/**
363 * void *pvTimerGetTimerID( TimerHandle_t xTimer );
364 *
365 * Returns the ID assigned to the timer.
366 *
367 * IDs are assigned to timers using the pvTimerID parameter of the call to
368 * xTimerCreated() that was used to create the timer, and by calling the
369 * vTimerSetTimerID() API function.
370 *
371 * If the same callback function is assigned to multiple timers then the timer
372 * ID can be used as time specific (timer local) storage.
373 *
374 * @param xTimer The timer being queried.
375 *
376 * @return The ID assigned to the timer being queried.
377 *
378 * Example usage:
379 *
380 * See the xTimerCreate() API function example usage scenario.
381 */
382void *pvTimerGetTimerID(const TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
383
384/**
385 * void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID );
386 *
387 * Sets the ID assigned to the timer.
388 *
389 * IDs are assigned to timers using the pvTimerID parameter of the call to
390 * xTimerCreated() that was used to create the timer.
391 *
392 * If the same callback function is assigned to multiple timers then the timer
393 * ID can be used as time specific (timer local) storage.
394 *
395 * @param xTimer The timer being updated.
396 *
397 * @param pvNewID The ID to assign to the timer.
398 *
399 * Example usage:
400 *
401 * See the xTimerCreate() API function example usage scenario.
402 */
403void vTimerSetTimerID(TimerHandle_t xTimer, void *pvNewID) PRIVILEGED_FUNCTION;
404
405/**
406 * BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer );
407 *
408 * Queries a timer to see if it is active or dormant.
409 *
410 * A timer will be dormant if:
411 * 1) It has been created but not started, or
412 * 2) It is an expired one-shot timer that has not been restarted.
413 *
414 * Timers are created in the dormant state. The xTimerStart(), xTimerReset(),
415 * xTimerStartFromISR(), xTimerResetFromISR(), xTimerChangePeriod() and
416 * xTimerChangePeriodFromISR() API functions can all be used to transition a timer into the
417 * active state.
418 *
419 * @param xTimer The timer being queried.
420 *
421 * @return pdFALSE will be returned if the timer is dormant. A value other than
422 * pdFALSE will be returned if the timer is active.
423 *
424 * Example usage:
425 * @verbatim
426 * // This function assumes xTimer has already been created.
427 * void vAFunction( TimerHandle_t xTimer )
428 * {
429 * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive(
430 * xTimer ) )"
431 * {
432 * // xTimer is active, do something.
433 * }
434 * else
435 * {
436 * // xTimer is not active, do something else.
437 * }
438 * }
439 * @endverbatim
440 */
441BaseType_t xTimerIsTimerActive(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
442
443/**
444 * TaskHandle_t xTimerGetTimerDaemonTaskHandle( void );
445 *
446 * Simply returns the handle of the timer service/daemon task. It it not valid
447 * to call xTimerGetTimerDaemonTaskHandle() before the scheduler has been started.
448 */
449TaskHandle_t xTimerGetTimerDaemonTaskHandle(void) PRIVILEGED_FUNCTION;
450
451/**
452 * BaseType_t xTimerStart( TimerHandle_t xTimer, TickType_t xTicksToWait );
453 *
454 * Timer functionality is provided by a timer service/daemon task. Many of the
455 * public FreeRTOS timer API functions send commands to the timer service task
456 * through a queue called the timer command queue. The timer command queue is
457 * private to the kernel itself and is not directly accessible to application
458 * code. The length of the timer command queue is set by the
459 * configTIMER_QUEUE_LENGTH configuration constant.
460 *
461 * xTimerStart() starts a timer that was previously created using the
462 * xTimerCreate() API function. If the timer had already been started and was
463 * already in the active state, then xTimerStart() has equivalent functionality
464 * to the xTimerReset() API function.
465 *
466 * Starting a timer ensures the timer is in the active state. If the timer
467 * is not stopped, deleted, or reset in the mean time, the callback function
468 * associated with the timer will get called 'n' ticks after xTimerStart() was
469 * called, where 'n' is the timers defined period.
470 *
471 * It is valid to call xTimerStart() before the scheduler has been started, but
472 * when this is done the timer will not actually start until the scheduler is
473 * started, and the timers expiry time will be relative to when the scheduler is
474 * started, not relative to when xTimerStart() was called.
475 *
476 * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStart()
477 * to be available.
478 *
479 * @param xTimer The handle of the timer being started/restarted.
480 *
481 * @param xTicksToWait Specifies the time, in ticks, that the calling task should
482 * be held in the Blocked state to wait for the start command to be successfully
483 * sent to the timer command queue, should the queue already be full when
484 * xTimerStart() was called. xTicksToWait is ignored if xTimerStart() is called
485 * before the scheduler is started.
486 *
487 * @return pdFAIL will be returned if the start command could not be sent to
488 * the timer command queue even after xTicksToWait ticks had passed. pdPASS will
489 * be returned if the command was successfully sent to the timer command queue.
490 * When the command is actually processed will depend on the priority of the
491 * timer service/daemon task relative to other tasks in the system, although the
492 * timers expiry time is relative to when xTimerStart() is actually called. The
493 * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY
494 * configuration constant.
495 *
496 * Example usage:
497 *
498 * See the xTimerCreate() API function example usage scenario.
499 *
500 */
501#define xTimerStart(xTimer, xTicksToWait) \
502 xTimerGenericCommand((xTimer), tmrCOMMAND_START, (xTaskGetTickCount()), NULL, (xTicksToWait))
503
504/**
505 * BaseType_t xTimerStop( TimerHandle_t xTimer, TickType_t xTicksToWait );
506 *
507 * Timer functionality is provided by a timer service/daemon task. Many of the
508 * public FreeRTOS timer API functions send commands to the timer service task
509 * through a queue called the timer command queue. The timer command queue is
510 * private to the kernel itself and is not directly accessible to application
511 * code. The length of the timer command queue is set by the
512 * configTIMER_QUEUE_LENGTH configuration constant.
513 *
514 * xTimerStop() stops a timer that was previously started using either of the
515 * The xTimerStart(), xTimerReset(), xTimerStartFromISR(), xTimerResetFromISR(),
516 * xTimerChangePeriod() or xTimerChangePeriodFromISR() API functions.
517 *
518 * Stopping a timer ensures the timer is not in the active state.
519 *
520 * The configUSE_TIMERS configuration constant must be set to 1 for xTimerStop()
521 * to be available.
522 *
523 * @param xTimer The handle of the timer being stopped.
524 *
525 * @param xTicksToWait Specifies the time, in ticks, that the calling task should
526 * be held in the Blocked state to wait for the stop command to be successfully
527 * sent to the timer command queue, should the queue already be full when
528 * xTimerStop() was called. xTicksToWait is ignored if xTimerStop() is called
529 * before the scheduler is started.
530 *
531 * @return pdFAIL will be returned if the stop command could not be sent to
532 * the timer command queue even after xTicksToWait ticks had passed. pdPASS will
533 * be returned if the command was successfully sent to the timer command queue.
534 * When the command is actually processed will depend on the priority of the
535 * timer service/daemon task relative to other tasks in the system. The timer
536 * service/daemon task priority is set by the configTIMER_TASK_PRIORITY
537 * configuration constant.
538 *
539 * Example usage:
540 *
541 * See the xTimerCreate() API function example usage scenario.
542 *
543 */
544#define xTimerStop(xTimer, xTicksToWait) xTimerGenericCommand((xTimer), tmrCOMMAND_STOP, 0U, NULL, (xTicksToWait))
545
546/**
547 * BaseType_t xTimerChangePeriod( TimerHandle_t xTimer,
548 * TickType_t xNewPeriod,
549 * TickType_t xTicksToWait );
550 *
551 * Timer functionality is provided by a timer service/daemon task. Many of the
552 * public FreeRTOS timer API functions send commands to the timer service task
553 * through a queue called the timer command queue. The timer command queue is
554 * private to the kernel itself and is not directly accessible to application
555 * code. The length of the timer command queue is set by the
556 * configTIMER_QUEUE_LENGTH configuration constant.
557 *
558 * xTimerChangePeriod() changes the period of a timer that was previously
559 * created using the xTimerCreate() API function.
560 *
561 * xTimerChangePeriod() can be called to change the period of an active or
562 * dormant state timer.
563 *
564 * The configUSE_TIMERS configuration constant must be set to 1 for
565 * xTimerChangePeriod() to be available.
566 *
567 * @param xTimer The handle of the timer that is having its period changed.
568 *
569 * @param xNewPeriod The new period for xTimer. Timer periods are specified in
570 * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time
571 * that has been specified in milliseconds. For example, if the timer must
572 * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively,
573 * if the timer must expire after 500ms, then xNewPeriod can be set to
574 * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than
575 * or equal to 1000.
576 *
577 * @param xTicksToWait Specifies the time, in ticks, that the calling task should
578 * be held in the Blocked state to wait for the change period command to be
579 * successfully sent to the timer command queue, should the queue already be
580 * full when xTimerChangePeriod() was called. xTicksToWait is ignored if
581 * xTimerChangePeriod() is called before the scheduler is started.
582 *
583 * @return pdFAIL will be returned if the change period command could not be
584 * sent to the timer command queue even after xTicksToWait ticks had passed.
585 * pdPASS will be returned if the command was successfully sent to the timer
586 * command queue. When the command is actually processed will depend on the
587 * priority of the timer service/daemon task relative to other tasks in the
588 * system. The timer service/daemon task priority is set by the
589 * configTIMER_TASK_PRIORITY configuration constant.
590 *
591 * Example usage:
592 * @verbatim
593 * // This function assumes xTimer has already been created. If the timer
594 * // referenced by xTimer is already active when it is called, then the timer
595 * // is deleted. If the timer referenced by xTimer is not active when it is
596 * // called, then the period of the timer is set to 500ms and the timer is
597 * // started.
598 * void vAFunction( TimerHandle_t xTimer )
599 * {
600 * if( xTimerIsTimerActive( xTimer ) != pdFALSE ) // or more simply and equivalently "if( xTimerIsTimerActive(
601 *xTimer ) )"
602 * {
603 * // xTimer is already active - delete it.
604 * xTimerDelete( xTimer );
605 * }
606 * else
607 * {
608 * // xTimer is not active, change its period to 500ms. This will also
609 * // cause the timer to start. Block for a maximum of 100 ticks if the
610 * // change period command cannot immediately be sent to the timer
611 * // command queue.
612 * if( xTimerChangePeriod( xTimer, 500 / portTICK_PERIOD_MS, 100 ) == pdPASS )
613 * {
614 * // The command was successfully sent.
615 * }
616 * else
617 * {
618 * // The command could not be sent, even after waiting for 100 ticks
619 * // to pass. Take appropriate action here.
620 * }
621 * }
622 * }
623 * @endverbatim
624 */
625#define xTimerChangePeriod(xTimer, xNewPeriod, xTicksToWait) \
626 xTimerGenericCommand((xTimer), tmrCOMMAND_CHANGE_PERIOD, (xNewPeriod), NULL, (xTicksToWait))
627
628/**
629 * BaseType_t xTimerDelete( TimerHandle_t xTimer, TickType_t xTicksToWait );
630 *
631 * Timer functionality is provided by a timer service/daemon task. Many of the
632 * public FreeRTOS timer API functions send commands to the timer service task
633 * through a queue called the timer command queue. The timer command queue is
634 * private to the kernel itself and is not directly accessible to application
635 * code. The length of the timer command queue is set by the
636 * configTIMER_QUEUE_LENGTH configuration constant.
637 *
638 * xTimerDelete() deletes a timer that was previously created using the
639 * xTimerCreate() API function.
640 *
641 * The configUSE_TIMERS configuration constant must be set to 1 for
642 * xTimerDelete() to be available.
643 *
644 * @param xTimer The handle of the timer being deleted.
645 *
646 * @param xTicksToWait Specifies the time, in ticks, that the calling task should
647 * be held in the Blocked state to wait for the delete command to be
648 * successfully sent to the timer command queue, should the queue already be
649 * full when xTimerDelete() was called. xTicksToWait is ignored if xTimerDelete()
650 * is called before the scheduler is started.
651 *
652 * @return pdFAIL will be returned if the delete command could not be sent to
653 * the timer command queue even after xTicksToWait ticks had passed. pdPASS will
654 * be returned if the command was successfully sent to the timer command queue.
655 * When the command is actually processed will depend on the priority of the
656 * timer service/daemon task relative to other tasks in the system. The timer
657 * service/daemon task priority is set by the configTIMER_TASK_PRIORITY
658 * configuration constant.
659 *
660 * Example usage:
661 *
662 * See the xTimerChangePeriod() API function example usage scenario.
663 */
664#define xTimerDelete(xTimer, xTicksToWait) xTimerGenericCommand((xTimer), tmrCOMMAND_DELETE, 0U, NULL, (xTicksToWait))
665
666/**
667 * BaseType_t xTimerReset( TimerHandle_t xTimer, TickType_t xTicksToWait );
668 *
669 * Timer functionality is provided by a timer service/daemon task. Many of the
670 * public FreeRTOS timer API functions send commands to the timer service task
671 * through a queue called the timer command queue. The timer command queue is
672 * private to the kernel itself and is not directly accessible to application
673 * code. The length of the timer command queue is set by the
674 * configTIMER_QUEUE_LENGTH configuration constant.
675 *
676 * xTimerReset() re-starts a timer that was previously created using the
677 * xTimerCreate() API function. If the timer had already been started and was
678 * already in the active state, then xTimerReset() will cause the timer to
679 * re-evaluate its expiry time so that it is relative to when xTimerReset() was
680 * called. If the timer was in the dormant state then xTimerReset() has
681 * equivalent functionality to the xTimerStart() API function.
682 *
683 * Resetting a timer ensures the timer is in the active state. If the timer
684 * is not stopped, deleted, or reset in the mean time, the callback function
685 * associated with the timer will get called 'n' ticks after xTimerReset() was
686 * called, where 'n' is the timers defined period.
687 *
688 * It is valid to call xTimerReset() before the scheduler has been started, but
689 * when this is done the timer will not actually start until the scheduler is
690 * started, and the timers expiry time will be relative to when the scheduler is
691 * started, not relative to when xTimerReset() was called.
692 *
693 * The configUSE_TIMERS configuration constant must be set to 1 for xTimerReset()
694 * to be available.
695 *
696 * @param xTimer The handle of the timer being reset/started/restarted.
697 *
698 * @param xTicksToWait Specifies the time, in ticks, that the calling task should
699 * be held in the Blocked state to wait for the reset command to be successfully
700 * sent to the timer command queue, should the queue already be full when
701 * xTimerReset() was called. xTicksToWait is ignored if xTimerReset() is called
702 * before the scheduler is started.
703 *
704 * @return pdFAIL will be returned if the reset command could not be sent to
705 * the timer command queue even after xTicksToWait ticks had passed. pdPASS will
706 * be returned if the command was successfully sent to the timer command queue.
707 * When the command is actually processed will depend on the priority of the
708 * timer service/daemon task relative to other tasks in the system, although the
709 * timers expiry time is relative to when xTimerStart() is actually called. The
710 * timer service/daemon task priority is set by the configTIMER_TASK_PRIORITY
711 * configuration constant.
712 *
713 * Example usage:
714 * @verbatim
715 * // When a key is pressed, an LCD back-light is switched on. If 5 seconds pass
716 * // without a key being pressed, then the LCD back-light is switched off. In
717 * // this case, the timer is a one-shot timer.
718 *
719 * TimerHandle_t xBacklightTimer = NULL;
720 *
721 * // The callback function assigned to the one-shot timer. In this case the
722 * // parameter is not used.
723 * void vBacklightTimerCallback( TimerHandle_t pxTimer )
724 * {
725 * // The timer expired, therefore 5 seconds must have passed since a key
726 * // was pressed. Switch off the LCD back-light.
727 * vSetBacklightState( BACKLIGHT_OFF );
728 * }
729 *
730 * // The key press event handler.
731 * void vKeyPressEventHandler( char cKey )
732 * {
733 * // Ensure the LCD back-light is on, then reset the timer that is
734 * // responsible for turning the back-light off after 5 seconds of
735 * // key inactivity. Wait 10 ticks for the command to be successfully sent
736 * // if it cannot be sent immediately.
737 * vSetBacklightState( BACKLIGHT_ON );
738 * if( xTimerReset( xBacklightTimer, 100 ) != pdPASS )
739 * {
740 * // The reset command was not executed successfully. Take appropriate
741 * // action here.
742 * }
743 *
744 * // Perform the rest of the key processing here.
745 * }
746 *
747 * void main( void )
748 * {
749 * int32_t x;
750 *
751 * // Create then start the one-shot timer that is responsible for turning
752 * // the back-light off if no keys are pressed within a 5 second period.
753 * xBacklightTimer = xTimerCreate( "BacklightTimer", // Just a text name, not used by the kernel.
754 * ( 5000 / portTICK_PERIOD_MS), // The timer period in ticks.
755 * pdFALSE, // The timer is a one-shot timer.
756 * 0, // The id is not used by the callback so can take any
757 * value. vBacklightTimerCallback // The callback function that switches the LCD back-light off.
758 * );
759 *
760 * if( xBacklightTimer == NULL )
761 * {
762 * // The timer was not created.
763 * }
764 * else
765 * {
766 * // Start the timer. No block time is specified, and even if one was
767 * // it would be ignored because the scheduler has not yet been
768 * // started.
769 * if( xTimerStart( xBacklightTimer, 0 ) != pdPASS )
770 * {
771 * // The timer could not be set into the Active state.
772 * }
773 * }
774 *
775 * // ...
776 * // Create tasks here.
777 * // ...
778 *
779 * // Starting the scheduler will start the timer running as it has already
780 * // been set into the active state.
781 * vTaskStartScheduler();
782 *
783 * // Should not reach here.
784 * for( ;; );
785 * }
786 * @endverbatim
787 */
788#define xTimerReset(xTimer, xTicksToWait) \
789 xTimerGenericCommand((xTimer), tmrCOMMAND_RESET, (xTaskGetTickCount()), NULL, (xTicksToWait))
790
791/**
792 * BaseType_t xTimerStartFromISR( TimerHandle_t xTimer,
793 * BaseType_t *pxHigherPriorityTaskWoken );
794 *
795 * A version of xTimerStart() that can be called from an interrupt service
796 * routine.
797 *
798 * @param xTimer The handle of the timer being started/restarted.
799 *
800 * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most
801 * of its time in the Blocked state, waiting for messages to arrive on the timer
802 * command queue. Calling xTimerStartFromISR() writes a message to the timer
803 * command queue, so has the potential to transition the timer service/daemon
804 * task out of the Blocked state. If calling xTimerStartFromISR() causes the
805 * timer service/daemon task to leave the Blocked state, and the timer service/
806 * daemon task has a priority equal to or greater than the currently executing
807 * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will
808 * get set to pdTRUE internally within the xTimerStartFromISR() function. If
809 * xTimerStartFromISR() sets this value to pdTRUE then a context switch should
810 * be performed before the interrupt exits.
811 *
812 * @return pdFAIL will be returned if the start command could not be sent to
813 * the timer command queue. pdPASS will be returned if the command was
814 * successfully sent to the timer command queue. When the command is actually
815 * processed will depend on the priority of the timer service/daemon task
816 * relative to other tasks in the system, although the timers expiry time is
817 * relative to when xTimerStartFromISR() is actually called. The timer
818 * service/daemon task priority is set by the configTIMER_TASK_PRIORITY
819 * configuration constant.
820 *
821 * Example usage:
822 * @verbatim
823 * // This scenario assumes xBacklightTimer has already been created. When a
824 * // key is pressed, an LCD back-light is switched on. If 5 seconds pass
825 * // without a key being pressed, then the LCD back-light is switched off. In
826 * // this case, the timer is a one-shot timer, and unlike the example given for
827 * // the xTimerReset() function, the key press event handler is an interrupt
828 * // service routine.
829 *
830 * // The callback function assigned to the one-shot timer. In this case the
831 * // parameter is not used.
832 * void vBacklightTimerCallback( TimerHandle_t pxTimer )
833 * {
834 * // The timer expired, therefore 5 seconds must have passed since a key
835 * // was pressed. Switch off the LCD back-light.
836 * vSetBacklightState( BACKLIGHT_OFF );
837 * }
838 *
839 * // The key press interrupt service routine.
840 * void vKeyPressEventInterruptHandler( void )
841 * {
842 * BaseType_t xHigherPriorityTaskWoken = pdFALSE;
843 *
844 * // Ensure the LCD back-light is on, then restart the timer that is
845 * // responsible for turning the back-light off after 5 seconds of
846 * // key inactivity. This is an interrupt service routine so can only
847 * // call FreeRTOS API functions that end in "FromISR".
848 * vSetBacklightState( BACKLIGHT_ON );
849 *
850 * // xTimerStartFromISR() or xTimerResetFromISR() could be called here
851 * // as both cause the timer to re-calculate its expiry time.
852 * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was
853 * // declared (in this function).
854 * if( xTimerStartFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS )
855 * {
856 * // The start command was not executed successfully. Take appropriate
857 * // action here.
858 * }
859 *
860 * // Perform the rest of the key processing here.
861 *
862 * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch
863 * // should be performed. The syntax required to perform a context switch
864 * // from inside an ISR varies from port to port, and from compiler to
865 * // compiler. Inspect the demos for the port you are using to find the
866 * // actual syntax required.
867 * if( xHigherPriorityTaskWoken != pdFALSE )
868 * {
869 * // Call the interrupt safe yield function here (actual function
870 * // depends on the FreeRTOS port being used).
871 * }
872 * }
873 * @endverbatim
874 */
875#define xTimerStartFromISR(xTimer, pxHigherPriorityTaskWoken) \
876 xTimerGenericCommand( \
877 (xTimer), tmrCOMMAND_START_FROM_ISR, (xTaskGetTickCountFromISR()), (pxHigherPriorityTaskWoken), 0U)
878
879/**
880 * BaseType_t xTimerStopFromISR( TimerHandle_t xTimer,
881 * BaseType_t *pxHigherPriorityTaskWoken );
882 *
883 * A version of xTimerStop() that can be called from an interrupt service
884 * routine.
885 *
886 * @param xTimer The handle of the timer being stopped.
887 *
888 * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most
889 * of its time in the Blocked state, waiting for messages to arrive on the timer
890 * command queue. Calling xTimerStopFromISR() writes a message to the timer
891 * command queue, so has the potential to transition the timer service/daemon
892 * task out of the Blocked state. If calling xTimerStopFromISR() causes the
893 * timer service/daemon task to leave the Blocked state, and the timer service/
894 * daemon task has a priority equal to or greater than the currently executing
895 * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will
896 * get set to pdTRUE internally within the xTimerStopFromISR() function. If
897 * xTimerStopFromISR() sets this value to pdTRUE then a context switch should
898 * be performed before the interrupt exits.
899 *
900 * @return pdFAIL will be returned if the stop command could not be sent to
901 * the timer command queue. pdPASS will be returned if the command was
902 * successfully sent to the timer command queue. When the command is actually
903 * processed will depend on the priority of the timer service/daemon task
904 * relative to other tasks in the system. The timer service/daemon task
905 * priority is set by the configTIMER_TASK_PRIORITY configuration constant.
906 *
907 * Example usage:
908 * @verbatim
909 * // This scenario assumes xTimer has already been created and started. When
910 * // an interrupt occurs, the timer should be simply stopped.
911 *
912 * // The interrupt service routine that stops the timer.
913 * void vAnExampleInterruptServiceRoutine( void )
914 * {
915 * BaseType_t xHigherPriorityTaskWoken = pdFALSE;
916 *
917 * // The interrupt has occurred - simply stop the timer.
918 * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined
919 * // (within this function). As this is an interrupt service routine, only
920 * // FreeRTOS API functions that end in "FromISR" can be used.
921 * if( xTimerStopFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS )
922 * {
923 * // The stop command was not executed successfully. Take appropriate
924 * // action here.
925 * }
926 *
927 * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch
928 * // should be performed. The syntax required to perform a context switch
929 * // from inside an ISR varies from port to port, and from compiler to
930 * // compiler. Inspect the demos for the port you are using to find the
931 * // actual syntax required.
932 * if( xHigherPriorityTaskWoken != pdFALSE )
933 * {
934 * // Call the interrupt safe yield function here (actual function
935 * // depends on the FreeRTOS port being used).
936 * }
937 * }
938 * @endverbatim
939 */
940#define xTimerStopFromISR(xTimer, pxHigherPriorityTaskWoken) \
941 xTimerGenericCommand((xTimer), tmrCOMMAND_STOP_FROM_ISR, 0, (pxHigherPriorityTaskWoken), 0U)
942
943/**
944 * BaseType_t xTimerChangePeriodFromISR( TimerHandle_t xTimer,
945 * TickType_t xNewPeriod,
946 * BaseType_t *pxHigherPriorityTaskWoken );
947 *
948 * A version of xTimerChangePeriod() that can be called from an interrupt
949 * service routine.
950 *
951 * @param xTimer The handle of the timer that is having its period changed.
952 *
953 * @param xNewPeriod The new period for xTimer. Timer periods are specified in
954 * tick periods, so the constant portTICK_PERIOD_MS can be used to convert a time
955 * that has been specified in milliseconds. For example, if the timer must
956 * expire after 100 ticks, then xNewPeriod should be set to 100. Alternatively,
957 * if the timer must expire after 500ms, then xNewPeriod can be set to
958 * ( 500 / portTICK_PERIOD_MS ) provided configTICK_RATE_HZ is less than
959 * or equal to 1000.
960 *
961 * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most
962 * of its time in the Blocked state, waiting for messages to arrive on the timer
963 * command queue. Calling xTimerChangePeriodFromISR() writes a message to the
964 * timer command queue, so has the potential to transition the timer service/
965 * daemon task out of the Blocked state. If calling xTimerChangePeriodFromISR()
966 * causes the timer service/daemon task to leave the Blocked state, and the
967 * timer service/daemon task has a priority equal to or greater than the
968 * currently executing task (the task that was interrupted), then
969 * *pxHigherPriorityTaskWoken will get set to pdTRUE internally within the
970 * xTimerChangePeriodFromISR() function. If xTimerChangePeriodFromISR() sets
971 * this value to pdTRUE then a context switch should be performed before the
972 * interrupt exits.
973 *
974 * @return pdFAIL will be returned if the command to change the timers period
975 * could not be sent to the timer command queue. pdPASS will be returned if the
976 * command was successfully sent to the timer command queue. When the command
977 * is actually processed will depend on the priority of the timer service/daemon
978 * task relative to other tasks in the system. The timer service/daemon task
979 * priority is set by the configTIMER_TASK_PRIORITY configuration constant.
980 *
981 * Example usage:
982 * @verbatim
983 * // This scenario assumes xTimer has already been created and started. When
984 * // an interrupt occurs, the period of xTimer should be changed to 500ms.
985 *
986 * // The interrupt service routine that changes the period of xTimer.
987 * void vAnExampleInterruptServiceRoutine( void )
988 * {
989 * BaseType_t xHigherPriorityTaskWoken = pdFALSE;
990 *
991 * // The interrupt has occurred - change the period of xTimer to 500ms.
992 * // xHigherPriorityTaskWoken was set to pdFALSE where it was defined
993 * // (within this function). As this is an interrupt service routine, only
994 * // FreeRTOS API functions that end in "FromISR" can be used.
995 * if( xTimerChangePeriodFromISR( xTimer, &xHigherPriorityTaskWoken ) != pdPASS )
996 * {
997 * // The command to change the timers period was not executed
998 * // successfully. Take appropriate action here.
999 * }
1000 *
1001 * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch
1002 * // should be performed. The syntax required to perform a context switch
1003 * // from inside an ISR varies from port to port, and from compiler to
1004 * // compiler. Inspect the demos for the port you are using to find the
1005 * // actual syntax required.
1006 * if( xHigherPriorityTaskWoken != pdFALSE )
1007 * {
1008 * // Call the interrupt safe yield function here (actual function
1009 * // depends on the FreeRTOS port being used).
1010 * }
1011 * }
1012 * @endverbatim
1013 */
1014#define xTimerChangePeriodFromISR(xTimer, xNewPeriod, pxHigherPriorityTaskWoken) \
1015 xTimerGenericCommand((xTimer), tmrCOMMAND_CHANGE_PERIOD_FROM_ISR, (xNewPeriod), (pxHigherPriorityTaskWoken), 0U)
1016
1017/**
1018 * BaseType_t xTimerResetFromISR( TimerHandle_t xTimer,
1019 * BaseType_t *pxHigherPriorityTaskWoken );
1020 *
1021 * A version of xTimerReset() that can be called from an interrupt service
1022 * routine.
1023 *
1024 * @param xTimer The handle of the timer that is to be started, reset, or
1025 * restarted.
1026 *
1027 * @param pxHigherPriorityTaskWoken The timer service/daemon task spends most
1028 * of its time in the Blocked state, waiting for messages to arrive on the timer
1029 * command queue. Calling xTimerResetFromISR() writes a message to the timer
1030 * command queue, so has the potential to transition the timer service/daemon
1031 * task out of the Blocked state. If calling xTimerResetFromISR() causes the
1032 * timer service/daemon task to leave the Blocked state, and the timer service/
1033 * daemon task has a priority equal to or greater than the currently executing
1034 * task (the task that was interrupted), then *pxHigherPriorityTaskWoken will
1035 * get set to pdTRUE internally within the xTimerResetFromISR() function. If
1036 * xTimerResetFromISR() sets this value to pdTRUE then a context switch should
1037 * be performed before the interrupt exits.
1038 *
1039 * @return pdFAIL will be returned if the reset command could not be sent to
1040 * the timer command queue. pdPASS will be returned if the command was
1041 * successfully sent to the timer command queue. When the command is actually
1042 * processed will depend on the priority of the timer service/daemon task
1043 * relative to other tasks in the system, although the timers expiry time is
1044 * relative to when xTimerResetFromISR() is actually called. The timer service/daemon
1045 * task priority is set by the configTIMER_TASK_PRIORITY configuration constant.
1046 *
1047 * Example usage:
1048 * @verbatim
1049 * // This scenario assumes xBacklightTimer has already been created. When a
1050 * // key is pressed, an LCD back-light is switched on. If 5 seconds pass
1051 * // without a key being pressed, then the LCD back-light is switched off. In
1052 * // this case, the timer is a one-shot timer, and unlike the example given for
1053 * // the xTimerReset() function, the key press event handler is an interrupt
1054 * // service routine.
1055 *
1056 * // The callback function assigned to the one-shot timer. In this case the
1057 * // parameter is not used.
1058 * void vBacklightTimerCallback( TimerHandle_t pxTimer )
1059 * {
1060 * // The timer expired, therefore 5 seconds must have passed since a key
1061 * // was pressed. Switch off the LCD back-light.
1062 * vSetBacklightState( BACKLIGHT_OFF );
1063 * }
1064 *
1065 * // The key press interrupt service routine.
1066 * void vKeyPressEventInterruptHandler( void )
1067 * {
1068 * BaseType_t xHigherPriorityTaskWoken = pdFALSE;
1069 *
1070 * // Ensure the LCD back-light is on, then reset the timer that is
1071 * // responsible for turning the back-light off after 5 seconds of
1072 * // key inactivity. This is an interrupt service routine so can only
1073 * // call FreeRTOS API functions that end in "FromISR".
1074 * vSetBacklightState( BACKLIGHT_ON );
1075 *
1076 * // xTimerStartFromISR() or xTimerResetFromISR() could be called here
1077 * // as both cause the timer to re-calculate its expiry time.
1078 * // xHigherPriorityTaskWoken was initialised to pdFALSE when it was
1079 * // declared (in this function).
1080 * if( xTimerResetFromISR( xBacklightTimer, &xHigherPriorityTaskWoken ) != pdPASS )
1081 * {
1082 * // The reset command was not executed successfully. Take appropriate
1083 * // action here.
1084 * }
1085 *
1086 * // Perform the rest of the key processing here.
1087 *
1088 * // If xHigherPriorityTaskWoken equals pdTRUE, then a context switch
1089 * // should be performed. The syntax required to perform a context switch
1090 * // from inside an ISR varies from port to port, and from compiler to
1091 * // compiler. Inspect the demos for the port you are using to find the
1092 * // actual syntax required.
1093 * if( xHigherPriorityTaskWoken != pdFALSE )
1094 * {
1095 * // Call the interrupt safe yield function here (actual function
1096 * // depends on the FreeRTOS port being used).
1097 * }
1098 * }
1099 * @endverbatim
1100 */
1101#define xTimerResetFromISR(xTimer, pxHigherPriorityTaskWoken) \
1102 xTimerGenericCommand( \
1103 (xTimer), tmrCOMMAND_RESET_FROM_ISR, (xTaskGetTickCountFromISR()), (pxHigherPriorityTaskWoken), 0U)
1104
1105/**
1106 * BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend,
1107 * void *pvParameter1,
1108 * uint32_t ulParameter2,
1109 * BaseType_t *pxHigherPriorityTaskWoken );
1110 *
1111 *
1112 * Used from application interrupt service routines to defer the execution of a
1113 * function to the RTOS daemon task (the timer service task, hence this function
1114 * is implemented in timers.c and is prefixed with 'Timer').
1115 *
1116 * Ideally an interrupt service routine (ISR) is kept as short as possible, but
1117 * sometimes an ISR either has a lot of processing to do, or needs to perform
1118 * processing that is not deterministic. In these cases
1119 * xTimerPendFunctionCallFromISR() can be used to defer processing of a function
1120 * to the RTOS daemon task.
1121 *
1122 * A mechanism is provided that allows the interrupt to return directly to the
1123 * task that will subsequently execute the pended callback function. This
1124 * allows the callback function to execute contiguously in time with the
1125 * interrupt - just as if the callback had executed in the interrupt itself.
1126 *
1127 * @param xFunctionToPend The function to execute from the timer service/
1128 * daemon task. The function must conform to the PendedFunction_t
1129 * prototype.
1130 *
1131 * @param pvParameter1 The value of the callback function's first parameter.
1132 * The parameter has a void * type to allow it to be used to pass any type.
1133 * For example, unsigned longs can be cast to a void *, or the void * can be
1134 * used to point to a structure.
1135 *
1136 * @param ulParameter2 The value of the callback function's second parameter.
1137 *
1138 * @param pxHigherPriorityTaskWoken As mentioned above, calling this function
1139 * will result in a message being sent to the timer daemon task. If the
1140 * priority of the timer daemon task (which is set using
1141 * configTIMER_TASK_PRIORITY in FreeRTOSConfig.h) is higher than the priority of
1142 * the currently running task (the task the interrupt interrupted) then
1143 * *pxHigherPriorityTaskWoken will be set to pdTRUE within
1144 * xTimerPendFunctionCallFromISR(), indicating that a context switch should be
1145 * requested before the interrupt exits. For that reason
1146 * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the
1147 * example code below.
1148 *
1149 * @return pdPASS is returned if the message was successfully sent to the
1150 * timer daemon task, otherwise pdFALSE is returned.
1151 *
1152 * Example usage:
1153 * @verbatim
1154 *
1155 * // The callback function that will execute in the context of the daemon task.
1156 * // Note callback functions must all use this same prototype.
1157 * void vProcessInterface( void *pvParameter1, uint32_t ulParameter2 )
1158 * {
1159 * BaseType_t xInterfaceToService;
1160 *
1161 * // The interface that requires servicing is passed in the second
1162 * // parameter. The first parameter is not used in this case.
1163 * xInterfaceToService = ( BaseType_t ) ulParameter2;
1164 *
1165 * // ...Perform the processing here...
1166 * }
1167 *
1168 * // An ISR that receives data packets from multiple interfaces
1169 * void vAnISR( void )
1170 * {
1171 * BaseType_t xInterfaceToService, xHigherPriorityTaskWoken;
1172 *
1173 * // Query the hardware to determine which interface needs processing.
1174 * xInterfaceToService = prvCheckInterfaces();
1175 *
1176 * // The actual processing is to be deferred to a task. Request the
1177 * // vProcessInterface() callback function is executed, passing in the
1178 * // number of the interface that needs processing. The interface to
1179 * // service is passed in the second parameter. The first parameter is
1180 * // not used in this case.
1181 * xHigherPriorityTaskWoken = pdFALSE;
1182 * xTimerPendFunctionCallFromISR( vProcessInterface, NULL, ( uint32_t ) xInterfaceToService,
1183 *&xHigherPriorityTaskWoken );
1184 *
1185 * // If xHigherPriorityTaskWoken is now set to pdTRUE then a context
1186 * // switch should be requested. The macro used is port specific and will
1187 * // be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() - refer to
1188 * // the documentation page for the port being used.
1189 * portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
1190 *
1191 * }
1192 * @endverbatim
1193 */
1194BaseType_t xTimerPendFunctionCallFromISR(PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2,
1195 BaseType_t *pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
1196
1197/**
1198 * BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend,
1199 * void *pvParameter1,
1200 * uint32_t ulParameter2,
1201 * TickType_t xTicksToWait );
1202 *
1203 *
1204 * Used to defer the execution of a function to the RTOS daemon task (the timer
1205 * service task, hence this function is implemented in timers.c and is prefixed
1206 * with 'Timer').
1207 *
1208 * @param xFunctionToPend The function to execute from the timer service/
1209 * daemon task. The function must conform to the PendedFunction_t
1210 * prototype.
1211 *
1212 * @param pvParameter1 The value of the callback function's first parameter.
1213 * The parameter has a void * type to allow it to be used to pass any type.
1214 * For example, unsigned longs can be cast to a void *, or the void * can be
1215 * used to point to a structure.
1216 *
1217 * @param ulParameter2 The value of the callback function's second parameter.
1218 *
1219 * @param xTicksToWait Calling this function will result in a message being
1220 * sent to the timer daemon task on a queue. xTicksToWait is the amount of
1221 * time the calling task should remain in the Blocked state (so not using any
1222 * processing time) for space to become available on the timer queue if the
1223 * queue is found to be full.
1224 *
1225 * @return pdPASS is returned if the message was successfully sent to the
1226 * timer daemon task, otherwise pdFALSE is returned.
1227 *
1228 */
1229BaseType_t xTimerPendFunctionCall(PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2,
1230 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1231
1232/**
1233 * const char * const pcTimerGetName( TimerHandle_t xTimer );
1234 *
1235 * Returns the name that was assigned to a timer when the timer was created.
1236 *
1237 * @param xTimer The handle of the timer being queried.
1238 *
1239 * @return The name assigned to the timer specified by the xTimer parameter.
1240 */
1241const char *pcTimerGetName(TimerHandle_t xTimer)
1242 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1243
1244/**
1245 * TickType_t xTimerGetPeriod( TimerHandle_t xTimer );
1246 *
1247 * Returns the period of a timer.
1248 *
1249 * @param xTimer The handle of the timer being queried.
1250 *
1251 * @return The period of the timer in ticks.
1252 */
1253TickType_t xTimerGetPeriod(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
1254
1255/**
1256 * TickType_t xTimerGetExpiryTime( TimerHandle_t xTimer );
1257 *
1258 * Returns the time in ticks at which the timer will expire. If this is less
1259 * than the current tick count then the expiry time has overflowed from the
1260 * current time.
1261 *
1262 * @param xTimer The handle of the timer being queried.
1263 *
1264 * @return If the timer is running then the time in ticks at which the timer
1265 * will next expire is returned. If the timer is not running then the return
1266 * value is undefined.
1267 */
1268TickType_t xTimerGetExpiryTime(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
1269
1270/*
1271 * Functions beyond this part are not part of the public API and are intended
1272 * for use by the kernel only.
1273 */
1274BaseType_t xTimerCreateTimerTask(void) PRIVILEGED_FUNCTION;
1275BaseType_t xTimerGenericCommand(TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue,
1276 BaseType_t *const pxHigherPriorityTaskWoken,
1277 const TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1278
1279#if (configUSE_TRACE_FACILITY == 1)
1280void vTimerSetTimerNumber(TimerHandle_t xTimer, UBaseType_t uxTimerNumber) PRIVILEGED_FUNCTION;
1281UBaseType_t uxTimerGetTimerNumber(TimerHandle_t xTimer) PRIVILEGED_FUNCTION;
1282#endif
1283
1284#ifdef __cplusplus
1285}
1286#endif
1287#endif /* TIMERS_H */
Definition FreeRTOS.h:1114