GM6000 Digital Heater Controller Branch: main
SDX-1330
event_groups.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 EVENT_GROUPS_H
30#define EVENT_GROUPS_H
31
32#ifndef INC_FREERTOS_H
33#error "include FreeRTOS.h" must appear in source files before "include event_groups.h"
34#endif
35
36/* FreeRTOS includes. */
37#include "timers.h"
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43/**
44 * An event group is a collection of bits to which an application can assign a
45 * meaning. For example, an application may create an event group to convey
46 * the status of various CAN bus related events in which bit 0 might mean "A CAN
47 * message has been received and is ready for processing", bit 1 might mean "The
48 * application has queued a message that is ready for sending onto the CAN
49 * network", and bit 2 might mean "It is time to send a SYNC message onto the
50 * CAN network" etc. A task can then test the bit values to see which events
51 * are active, and optionally enter the Blocked state to wait for a specified
52 * bit or a group of specified bits to be active. To continue the CAN bus
53 * example, a CAN controlling task can enter the Blocked state (and therefore
54 * not consume any processing time) until either bit 0, bit 1 or bit 2 are
55 * active, at which time the bit that was actually active would inform the task
56 * which action it had to take (process a received message, send a message, or
57 * send a SYNC).
58 *
59 * The event groups implementation contains intelligence to avoid race
60 * conditions that would otherwise occur were an application to use a simple
61 * variable for the same purpose. This is particularly important with respect
62 * to when a bit within an event group is to be cleared, and when bits have to
63 * be set and then tested atomically - as is the case where event groups are
64 * used to create a synchronisation point between multiple tasks (a
65 * 'rendezvous').
66 *
67 * \defgroup EventGroup
68 */
69
70/**
71 * event_groups.h
72 *
73 * Type by which event groups are referenced. For example, a call to
74 * xEventGroupCreate() returns an EventGroupHandle_t variable that can then
75 * be used as a parameter to other event group functions.
76 *
77 * \defgroup EventGroupHandle_t EventGroupHandle_t
78 * \ingroup EventGroup
79 */
80typedef void *EventGroupHandle_t;
81
82/*
83 * The type that holds event bits always matches TickType_t - therefore the
84 * number of bits it holds is set by configUSE_16_BIT_TICKS (16 bits if set to 1,
85 * 32 bits if set to 0.
86 *
87 * \defgroup EventBits_t EventBits_t
88 * \ingroup EventGroup
89 */
90typedef TickType_t EventBits_t;
91
92/**
93 * event_groups.h
94 *<pre>
95 EventGroupHandle_t xEventGroupCreate( void );
96 </pre>
97 *
98 * Create a new event group.
99 *
100 * Internally, within the FreeRTOS implementation, event groups use a [small]
101 * block of memory, in which the event group's structure is stored. If an event
102 * groups is created using xEventGropuCreate() then the required memory is
103 * automatically dynamically allocated inside the xEventGroupCreate() function.
104 * (see http://www.freertos.org/a00111.html). If an event group is created
105 * using xEventGropuCreateStatic() then the application writer must instead
106 * provide the memory that will get used by the event group.
107 * xEventGroupCreateStatic() therefore allows an event group to be created
108 * without using any dynamic memory allocation.
109 *
110 * Although event groups are not related to ticks, for internal implementation
111 * reasons the number of bits available for use in an event group is dependent
112 * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If
113 * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit
114 * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has
115 * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store
116 * event bits within an event group.
117 *
118 * @return If the event group was created then a handle to the event group is
119 * returned. If there was insufficient FreeRTOS heap available to create the
120 * event group then NULL is returned. See http://www.freertos.org/a00111.html
121 *
122 * Example usage:
123 <pre>
124 // Declare a variable to hold the created event group.
125 EventGroupHandle_t xCreatedEventGroup;
126
127 // Attempt to create the event group.
128 xCreatedEventGroup = xEventGroupCreate();
129
130 // Was the event group created successfully?
131 if( xCreatedEventGroup == NULL )
132 {
133 // The event group was not created because there was insufficient
134 // FreeRTOS heap available.
135 }
136 else
137 {
138 // The event group was created.
139 }
140 </pre>
141 * \defgroup xEventGroupCreate xEventGroupCreate
142 * \ingroup EventGroup
143 */
144#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
145EventGroupHandle_t xEventGroupCreate(void) PRIVILEGED_FUNCTION;
146#endif
147
148/**
149 * event_groups.h
150 *<pre>
151 EventGroupHandle_t xEventGroupCreateStatic( EventGroupHandle_t * pxEventGroupBuffer );
152 </pre>
153 *
154 * Create a new event group.
155 *
156 * Internally, within the FreeRTOS implementation, event groups use a [small]
157 * block of memory, in which the event group's structure is stored. If an event
158 * groups is created using xEventGropuCreate() then the required memory is
159 * automatically dynamically allocated inside the xEventGroupCreate() function.
160 * (see http://www.freertos.org/a00111.html). If an event group is created
161 * using xEventGropuCreateStatic() then the application writer must instead
162 * provide the memory that will get used by the event group.
163 * xEventGroupCreateStatic() therefore allows an event group to be created
164 * without using any dynamic memory allocation.
165 *
166 * Although event groups are not related to ticks, for internal implementation
167 * reasons the number of bits available for use in an event group is dependent
168 * on the configUSE_16_BIT_TICKS setting in FreeRTOSConfig.h. If
169 * configUSE_16_BIT_TICKS is 1 then each event group contains 8 usable bits (bit
170 * 0 to bit 7). If configUSE_16_BIT_TICKS is set to 0 then each event group has
171 * 24 usable bits (bit 0 to bit 23). The EventBits_t type is used to store
172 * event bits within an event group.
173 *
174 * @param pxEventGroupBuffer pxEventGroupBuffer must point to a variable of type
175 * StaticEventGroup_t, which will be then be used to hold the event group's data
176 * structures, removing the need for the memory to be allocated dynamically.
177 *
178 * @return If the event group was created then a handle to the event group is
179 * returned. If pxEventGroupBuffer was NULL then NULL is returned.
180 *
181 * Example usage:
182 <pre>
183 // StaticEventGroup_t is a publicly accessible structure that has the same
184 // size and alignment requirements as the real event group structure. It is
185 // provided as a mechanism for applications to know the size of the event
186 // group (which is dependent on the architecture and configuration file
187 // settings) without breaking the strict data hiding policy by exposing the
188 // real event group internals. This StaticEventGroup_t variable is passed
189 // into the xSemaphoreCreateEventGroupStatic() function and is used to store
190 // the event group's data structures
191 StaticEventGroup_t xEventGroupBuffer;
192
193 // Create the event group without dynamically allocating any memory.
194 xEventGroup = xEventGroupCreateStatic( &xEventGroupBuffer );
195 </pre>
196 */
197#if (configSUPPORT_STATIC_ALLOCATION == 1)
198EventGroupHandle_t xEventGroupCreateStatic(StaticEventGroup_t *pxEventGroupBuffer) PRIVILEGED_FUNCTION;
199#endif
200
201/**
202 * event_groups.h
203 *<pre>
204 EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,
205 const EventBits_t uxBitsToWaitFor,
206 const BaseType_t xClearOnExit,
207 const BaseType_t xWaitForAllBits,
208 const TickType_t xTicksToWait );
209 </pre>
210 *
211 * [Potentially] block to wait for one or more bits to be set within a
212 * previously created event group.
213 *
214 * This function cannot be called from an interrupt.
215 *
216 * @param xEventGroup The event group in which the bits are being tested. The
217 * event group must have previously been created using a call to
218 * xEventGroupCreate().
219 *
220 * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test
221 * inside the event group. For example, to wait for bit 0 and/or bit 2 set
222 * uxBitsToWaitFor to 0x05. To wait for bits 0 and/or bit 1 and/or bit 2 set
223 * uxBitsToWaitFor to 0x07. Etc.
224 *
225 * @param xClearOnExit If xClearOnExit is set to pdTRUE then any bits within
226 * uxBitsToWaitFor that are set within the event group will be cleared before
227 * xEventGroupWaitBits() returns if the wait condition was met (if the function
228 * returns for a reason other than a timeout). If xClearOnExit is set to
229 * pdFALSE then the bits set in the event group are not altered when the call to
230 * xEventGroupWaitBits() returns.
231 *
232 * @param xWaitForAllBits If xWaitForAllBits is set to pdTRUE then
233 * xEventGroupWaitBits() will return when either all the bits in uxBitsToWaitFor
234 * are set or the specified block time expires. If xWaitForAllBits is set to
235 * pdFALSE then xEventGroupWaitBits() will return when any one of the bits set
236 * in uxBitsToWaitFor is set or the specified block time expires. The block
237 * time is specified by the xTicksToWait parameter.
238 *
239 * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait
240 * for one/all (depending on the xWaitForAllBits value) of the bits specified by
241 * uxBitsToWaitFor to become set.
242 *
243 * @return The value of the event group at the time either the bits being waited
244 * for became set, or the block time expired. Test the return value to know
245 * which bits were set. If xEventGroupWaitBits() returned because its timeout
246 * expired then not all the bits being waited for will be set. If
247 * xEventGroupWaitBits() returned because the bits it was waiting for were set
248 * then the returned value is the event group value before any bits were
249 * automatically cleared in the case that xClearOnExit parameter was set to
250 * pdTRUE.
251 *
252 * Example usage:
253 <pre>
254 #define BIT_0 ( 1 << 0 )
255 #define BIT_4 ( 1 << 4 )
256
257 void aFunction( EventGroupHandle_t xEventGroup )
258 {
259 EventBits_t uxBits;
260 const TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
261
262 // Wait a maximum of 100ms for either bit 0 or bit 4 to be set within
263 // the event group. Clear the bits before exiting.
264 uxBits = xEventGroupWaitBits(
265 xEventGroup, // The event group being tested.
266 BIT_0 | BIT_4, // The bits within the event group to wait for.
267 pdTRUE, // BIT_0 and BIT_4 should be cleared before returning.
268 pdFALSE, // Don't wait for both bits, either bit will do.
269 xTicksToWait ); // Wait a maximum of 100ms for either bit to be set.
270
271 if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
272 {
273 // xEventGroupWaitBits() returned because both bits were set.
274 }
275 else if( ( uxBits & BIT_0 ) != 0 )
276 {
277 // xEventGroupWaitBits() returned because just BIT_0 was set.
278 }
279 else if( ( uxBits & BIT_4 ) != 0 )
280 {
281 // xEventGroupWaitBits() returned because just BIT_4 was set.
282 }
283 else
284 {
285 // xEventGroupWaitBits() returned because xTicksToWait ticks passed
286 // without either BIT_0 or BIT_4 becoming set.
287 }
288 }
289 </pre>
290 * \defgroup xEventGroupWaitBits xEventGroupWaitBits
291 * \ingroup EventGroup
292 */
293EventBits_t xEventGroupWaitBits(EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor,
294 const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits,
295 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
296
297/**
298 * event_groups.h
299 *<pre>
300 EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear );
301 </pre>
302 *
303 * Clear bits within an event group. This function cannot be called from an
304 * interrupt.
305 *
306 * @param xEventGroup The event group in which the bits are to be cleared.
307 *
308 * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear
309 * in the event group. For example, to clear bit 3 only, set uxBitsToClear to
310 * 0x08. To clear bit 3 and bit 0 set uxBitsToClear to 0x09.
311 *
312 * @return The value of the event group before the specified bits were cleared.
313 *
314 * Example usage:
315 <pre>
316 #define BIT_0 ( 1 << 0 )
317 #define BIT_4 ( 1 << 4 )
318
319 void aFunction( EventGroupHandle_t xEventGroup )
320 {
321 EventBits_t uxBits;
322
323 // Clear bit 0 and bit 4 in xEventGroup.
324 uxBits = xEventGroupClearBits(
325 xEventGroup, // The event group being updated.
326 BIT_0 | BIT_4 );// The bits being cleared.
327
328 if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
329 {
330 // Both bit 0 and bit 4 were set before xEventGroupClearBits() was
331 // called. Both will now be clear (not set).
332 }
333 else if( ( uxBits & BIT_0 ) != 0 )
334 {
335 // Bit 0 was set before xEventGroupClearBits() was called. It will
336 // now be clear.
337 }
338 else if( ( uxBits & BIT_4 ) != 0 )
339 {
340 // Bit 4 was set before xEventGroupClearBits() was called. It will
341 // now be clear.
342 }
343 else
344 {
345 // Neither bit 0 nor bit 4 were set in the first place.
346 }
347 }
348 </pre>
349 * \defgroup xEventGroupClearBits xEventGroupClearBits
350 * \ingroup EventGroup
351 */
352EventBits_t xEventGroupClearBits(EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear) PRIVILEGED_FUNCTION;
353
354/**
355 * event_groups.h
356 *<pre>
357 BaseType_t xEventGroupClearBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
358 </pre>
359 *
360 * A version of xEventGroupClearBits() that can be called from an interrupt.
361 *
362 * Setting bits in an event group is not a deterministic operation because there
363 * are an unknown number of tasks that may be waiting for the bit or bits being
364 * set. FreeRTOS does not allow nondeterministic operations to be performed
365 * while interrupts are disabled, so protects event groups that are accessed
366 * from tasks by suspending the scheduler rather than disabling interrupts. As
367 * a result event groups cannot be accessed directly from an interrupt service
368 * routine. Therefore xEventGroupClearBitsFromISR() sends a message to the
369 * timer task to have the clear operation performed in the context of the timer
370 * task.
371 *
372 * @param xEventGroup The event group in which the bits are to be cleared.
373 *
374 * @param uxBitsToClear A bitwise value that indicates the bit or bits to clear.
375 * For example, to clear bit 3 only, set uxBitsToClear to 0x08. To clear bit 3
376 * and bit 0 set uxBitsToClear to 0x09.
377 *
378 * @return If the request to execute the function was posted successfully then
379 * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned
380 * if the timer service queue was full.
381 *
382 * Example usage:
383 <pre>
384 #define BIT_0 ( 1 << 0 )
385 #define BIT_4 ( 1 << 4 )
386
387 // An event group which it is assumed has already been created by a call to
388 // xEventGroupCreate().
389 EventGroupHandle_t xEventGroup;
390
391 void anInterruptHandler( void )
392 {
393 // Clear bit 0 and bit 4 in xEventGroup.
394 xResult = xEventGroupClearBitsFromISR(
395 xEventGroup, // The event group being updated.
396 BIT_0 | BIT_4 ); // The bits being set.
397
398 if( xResult == pdPASS )
399 {
400 // The message was posted successfully.
401 }
402 }
403 </pre>
404 * \defgroup xEventGroupClearBitsFromISR xEventGroupClearBitsFromISR
405 * \ingroup EventGroup
406 */
407#if (configUSE_TRACE_FACILITY == 1)
408BaseType_t xEventGroupClearBitsFromISR(EventGroupHandle_t xEventGroup,
409 const EventBits_t uxBitsToSet) PRIVILEGED_FUNCTION;
410#else
411#define xEventGroupClearBitsFromISR(xEventGroup, uxBitsToClear) \
412 xTimerPendFunctionCallFromISR(vEventGroupClearBitsCallback, (void *)xEventGroup, (uint32_t)uxBitsToClear, NULL)
413#endif
414
415/**
416 * event_groups.h
417 *<pre>
418 EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet );
419 </pre>
420 *
421 * Set bits within an event group.
422 * This function cannot be called from an interrupt. xEventGroupSetBitsFromISR()
423 * is a version that can be called from an interrupt.
424 *
425 * Setting bits in an event group will automatically unblock tasks that are
426 * blocked waiting for the bits.
427 *
428 * @param xEventGroup The event group in which the bits are to be set.
429 *
430 * @param uxBitsToSet A bitwise value that indicates the bit or bits to set.
431 * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3
432 * and bit 0 set uxBitsToSet to 0x09.
433 *
434 * @return The value of the event group at the time the call to
435 * xEventGroupSetBits() returns. There are two reasons why the returned value
436 * might have the bits specified by the uxBitsToSet parameter cleared. First,
437 * if setting a bit results in a task that was waiting for the bit leaving the
438 * blocked state then it is possible the bit will be cleared automatically
439 * (see the xClearBitOnExit parameter of xEventGroupWaitBits()). Second, any
440 * unblocked (or otherwise Ready state) task that has a priority above that of
441 * the task that called xEventGroupSetBits() will execute and may change the
442 * event group value before the call to xEventGroupSetBits() returns.
443 *
444 * Example usage:
445 <pre>
446 #define BIT_0 ( 1 << 0 )
447 #define BIT_4 ( 1 << 4 )
448
449 void aFunction( EventGroupHandle_t xEventGroup )
450 {
451 EventBits_t uxBits;
452
453 // Set bit 0 and bit 4 in xEventGroup.
454 uxBits = xEventGroupSetBits(
455 xEventGroup, // The event group being updated.
456 BIT_0 | BIT_4 );// The bits being set.
457
458 if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )
459 {
460 // Both bit 0 and bit 4 remained set when the function returned.
461 }
462 else if( ( uxBits & BIT_0 ) != 0 )
463 {
464 // Bit 0 remained set when the function returned, but bit 4 was
465 // cleared. It might be that bit 4 was cleared automatically as a
466 // task that was waiting for bit 4 was removed from the Blocked
467 // state.
468 }
469 else if( ( uxBits & BIT_4 ) != 0 )
470 {
471 // Bit 4 remained set when the function returned, but bit 0 was
472 // cleared. It might be that bit 0 was cleared automatically as a
473 // task that was waiting for bit 0 was removed from the Blocked
474 // state.
475 }
476 else
477 {
478 // Neither bit 0 nor bit 4 remained set. It might be that a task
479 // was waiting for both of the bits to be set, and the bits were
480 // cleared as the task left the Blocked state.
481 }
482 }
483 </pre>
484 * \defgroup xEventGroupSetBits xEventGroupSetBits
485 * \ingroup EventGroup
486 */
487EventBits_t xEventGroupSetBits(EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet) PRIVILEGED_FUNCTION;
488
489/**
490 * event_groups.h
491 *<pre>
492 BaseType_t xEventGroupSetBitsFromISR( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, BaseType_t
493 *pxHigherPriorityTaskWoken );
494 </pre>
495 *
496 * A version of xEventGroupSetBits() that can be called from an interrupt.
497 *
498 * Setting bits in an event group is not a deterministic operation because there
499 * are an unknown number of tasks that may be waiting for the bit or bits being
500 * set. FreeRTOS does not allow nondeterministic operations to be performed in
501 * interrupts or from critical sections. Therefore xEventGroupSetBitsFromISR()
502 * sends a message to the timer task to have the set operation performed in the
503 * context of the timer task - where a scheduler lock is used in place of a
504 * critical section.
505 *
506 * @param xEventGroup The event group in which the bits are to be set.
507 *
508 * @param uxBitsToSet A bitwise value that indicates the bit or bits to set.
509 * For example, to set bit 3 only, set uxBitsToSet to 0x08. To set bit 3
510 * and bit 0 set uxBitsToSet to 0x09.
511 *
512 * @param pxHigherPriorityTaskWoken As mentioned above, calling this function
513 * will result in a message being sent to the timer daemon task. If the
514 * priority of the timer daemon task is higher than the priority of the
515 * currently running task (the task the interrupt interrupted) then
516 * *pxHigherPriorityTaskWoken will be set to pdTRUE by
517 * xEventGroupSetBitsFromISR(), indicating that a context switch should be
518 * requested before the interrupt exits. For that reason
519 * *pxHigherPriorityTaskWoken must be initialised to pdFALSE. See the
520 * example code below.
521 *
522 * @return If the request to execute the function was posted successfully then
523 * pdPASS is returned, otherwise pdFALSE is returned. pdFALSE will be returned
524 * if the timer service queue was full.
525 *
526 * Example usage:
527 <pre>
528 #define BIT_0 ( 1 << 0 )
529 #define BIT_4 ( 1 << 4 )
530
531 // An event group which it is assumed has already been created by a call to
532 // xEventGroupCreate().
533 EventGroupHandle_t xEventGroup;
534
535 void anInterruptHandler( void )
536 {
537 BaseType_t xHigherPriorityTaskWoken, xResult;
538
539 // xHigherPriorityTaskWoken must be initialised to pdFALSE.
540 xHigherPriorityTaskWoken = pdFALSE;
541
542 // Set bit 0 and bit 4 in xEventGroup.
543 xResult = xEventGroupSetBitsFromISR(
544 xEventGroup, // The event group being updated.
545 BIT_0 | BIT_4 // The bits being set.
546 &xHigherPriorityTaskWoken );
547
548 // Was the message posted successfully?
549 if( xResult == pdPASS )
550 {
551 // If xHigherPriorityTaskWoken is now set to pdTRUE then a context
552 // switch should be requested. The macro used is port specific and
553 // will be either portYIELD_FROM_ISR() or portEND_SWITCHING_ISR() -
554 // refer to the documentation page for the port being used.
555 portYIELD_FROM_ISR( xHigherPriorityTaskWoken );
556 }
557 }
558 </pre>
559 * \defgroup xEventGroupSetBitsFromISR xEventGroupSetBitsFromISR
560 * \ingroup EventGroup
561 */
562#if (configUSE_TRACE_FACILITY == 1)
563BaseType_t xEventGroupSetBitsFromISR(EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet,
564 BaseType_t *pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
565#else
566#define xEventGroupSetBitsFromISR(xEventGroup, uxBitsToSet, pxHigherPriorityTaskWoken) \
567 xTimerPendFunctionCallFromISR( \
568 vEventGroupSetBitsCallback, (void *)xEventGroup, (uint32_t)uxBitsToSet, pxHigherPriorityTaskWoken)
569#endif
570
571/**
572 * event_groups.h
573 *<pre>
574 EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,
575 const EventBits_t uxBitsToSet,
576 const EventBits_t uxBitsToWaitFor,
577 TickType_t xTicksToWait );
578 </pre>
579 *
580 * Atomically set bits within an event group, then wait for a combination of
581 * bits to be set within the same event group. This functionality is typically
582 * used to synchronise multiple tasks, where each task has to wait for the other
583 * tasks to reach a synchronisation point before proceeding.
584 *
585 * This function cannot be used from an interrupt.
586 *
587 * The function will return before its block time expires if the bits specified
588 * by the uxBitsToWait parameter are set, or become set within that time. In
589 * this case all the bits specified by uxBitsToWait will be automatically
590 * cleared before the function returns.
591 *
592 * @param xEventGroup The event group in which the bits are being tested. The
593 * event group must have previously been created using a call to
594 * xEventGroupCreate().
595 *
596 * @param uxBitsToSet The bits to set in the event group before determining
597 * if, and possibly waiting for, all the bits specified by the uxBitsToWait
598 * parameter are set.
599 *
600 * @param uxBitsToWaitFor A bitwise value that indicates the bit or bits to test
601 * inside the event group. For example, to wait for bit 0 and bit 2 set
602 * uxBitsToWaitFor to 0x05. To wait for bits 0 and bit 1 and bit 2 set
603 * uxBitsToWaitFor to 0x07. Etc.
604 *
605 * @param xTicksToWait The maximum amount of time (specified in 'ticks') to wait
606 * for all of the bits specified by uxBitsToWaitFor to become set.
607 *
608 * @return The value of the event group at the time either the bits being waited
609 * for became set, or the block time expired. Test the return value to know
610 * which bits were set. If xEventGroupSync() returned because its timeout
611 * expired then not all the bits being waited for will be set. If
612 * xEventGroupSync() returned because all the bits it was waiting for were
613 * set then the returned value is the event group value before any bits were
614 * automatically cleared.
615 *
616 * Example usage:
617 <pre>
618 // Bits used by the three tasks.
619 #define TASK_0_BIT ( 1 << 0 )
620 #define TASK_1_BIT ( 1 << 1 )
621 #define TASK_2_BIT ( 1 << 2 )
622
623 #define ALL_SYNC_BITS ( TASK_0_BIT | TASK_1_BIT | TASK_2_BIT )
624
625 // Use an event group to synchronise three tasks. It is assumed this event
626 // group has already been created elsewhere.
627 EventGroupHandle_t xEventBits;
628
629 void vTask0( void *pvParameters )
630 {
631 EventBits_t uxReturn;
632 TickType_t xTicksToWait = 100 / portTICK_PERIOD_MS;
633
634 for( ;; )
635 {
636 // Perform task functionality here.
637
638 // Set bit 0 in the event flag to note this task has reached the
639 // sync point. The other two tasks will set the other two bits defined
640 // by ALL_SYNC_BITS. All three tasks have reached the synchronisation
641 // point when all the ALL_SYNC_BITS are set. Wait a maximum of 100ms
642 // for this to happen.
643 uxReturn = xEventGroupSync( xEventBits, TASK_0_BIT, ALL_SYNC_BITS, xTicksToWait );
644
645 if( ( uxReturn & ALL_SYNC_BITS ) == ALL_SYNC_BITS )
646 {
647 // All three tasks reached the synchronisation point before the call
648 // to xEventGroupSync() timed out.
649 }
650 }
651 }
652
653 void vTask1( void *pvParameters )
654 {
655 for( ;; )
656 {
657 // Perform task functionality here.
658
659 // Set bit 1 in the event flag to note this task has reached the
660 // synchronisation point. The other two tasks will set the other two
661 // bits defined by ALL_SYNC_BITS. All three tasks have reached the
662 // synchronisation point when all the ALL_SYNC_BITS are set. Wait
663 // indefinitely for this to happen.
664 xEventGroupSync( xEventBits, TASK_1_BIT, ALL_SYNC_BITS, portMAX_DELAY );
665
666 // xEventGroupSync() was called with an indefinite block time, so
667 // this task will only reach here if the syncrhonisation was made by all
668 // three tasks, so there is no need to test the return value.
669 }
670 }
671
672 void vTask2( void *pvParameters )
673 {
674 for( ;; )
675 {
676 // Perform task functionality here.
677
678 // Set bit 2 in the event flag to note this task has reached the
679 // synchronisation point. The other two tasks will set the other two
680 // bits defined by ALL_SYNC_BITS. All three tasks have reached the
681 // synchronisation point when all the ALL_SYNC_BITS are set. Wait
682 // indefinitely for this to happen.
683 xEventGroupSync( xEventBits, TASK_2_BIT, ALL_SYNC_BITS, portMAX_DELAY );
684
685 // xEventGroupSync() was called with an indefinite block time, so
686 // this task will only reach here if the syncrhonisation was made by all
687 // three tasks, so there is no need to test the return value.
688 }
689 }
690
691 </pre>
692 * \defgroup xEventGroupSync xEventGroupSync
693 * \ingroup EventGroup
694 */
695EventBits_t xEventGroupSync(EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet,
696 const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
697
698/**
699 * event_groups.h
700 *<pre>
701 EventBits_t xEventGroupGetBits( EventGroupHandle_t xEventGroup );
702 </pre>
703 *
704 * Returns the current value of the bits in an event group. This function
705 * cannot be used from an interrupt.
706 *
707 * @param xEventGroup The event group being queried.
708 *
709 * @return The event group bits at the time xEventGroupGetBits() was called.
710 *
711 * \defgroup xEventGroupGetBits xEventGroupGetBits
712 * \ingroup EventGroup
713 */
714#define xEventGroupGetBits(xEventGroup) xEventGroupClearBits(xEventGroup, 0)
715
716/**
717 * event_groups.h
718 *<pre>
719 EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup );
720 </pre>
721 *
722 * A version of xEventGroupGetBits() that can be called from an ISR.
723 *
724 * @param xEventGroup The event group being queried.
725 *
726 * @return The event group bits at the time xEventGroupGetBitsFromISR() was called.
727 *
728 * \defgroup xEventGroupGetBitsFromISR xEventGroupGetBitsFromISR
729 * \ingroup EventGroup
730 */
731EventBits_t xEventGroupGetBitsFromISR(EventGroupHandle_t xEventGroup) PRIVILEGED_FUNCTION;
732
733/**
734 * event_groups.h
735 *<pre>
736 void xEventGroupDelete( EventGroupHandle_t xEventGroup );
737 </pre>
738 *
739 * Delete an event group that was previously created by a call to
740 * xEventGroupCreate(). Tasks that are blocked on the event group will be
741 * unblocked and obtain 0 as the event group's value.
742 *
743 * @param xEventGroup The event group being deleted.
744 */
745void vEventGroupDelete(EventGroupHandle_t xEventGroup) PRIVILEGED_FUNCTION;
746
747/* For internal use only. */
748void vEventGroupSetBitsCallback(void *pvEventGroup, const uint32_t ulBitsToSet) PRIVILEGED_FUNCTION;
749void vEventGroupClearBitsCallback(void *pvEventGroup, const uint32_t ulBitsToClear) PRIVILEGED_FUNCTION;
750
751#if (configUSE_TRACE_FACILITY == 1)
752UBaseType_t uxEventGroupGetNumber(void *xEventGroup) PRIVILEGED_FUNCTION;
753void vEventGroupSetNumber(void *xEventGroup, UBaseType_t uxEventGroupNumber) PRIVILEGED_FUNCTION;
754#endif
755
756#ifdef __cplusplus
757}
758#endif
759
760#endif /* EVENT_GROUPS_H */
Definition FreeRTOS.h:1086