You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ch09.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,12 +365,12 @@ A task will not enter the Blocked state if its unblock condition is met
365
365
at the time `xEventGroupWaitBits()` is called.
366
366
367
367
Examples of conditions that will result in a task either entering the
368
-
Blocked state, or exiting the Blocked state, are provided in Table 5.
369
-
Table 5 only shows the least significant four binary bits of the event
368
+
Blocked state, or exiting the Blocked state, are provided in Table 6.
369
+
Table 6 only shows the least significant four binary bits of the event
370
370
group and uxBitsToWaitFor values—the other bits of those two values are
371
371
assumed to be zero.
372
372
373
-
<aname="tbl5"title="Table 5 The Effect of the uxBitsToWaitFor and xWaitForAllBits Parameters"></a>
373
+
<aname="tbl6"title="Table 6 The Effect of the uxBitsToWaitFor and xWaitForAllBits Parameters"></a>
374
374
375
375
* * *
376
376
| Existing Event Group Value | uxBitsToWaitFor value | xWaitForAllBits value | Resultant Behavior |
@@ -380,7 +380,7 @@ assumed to be zero.
380
380
| 0100 | 0110 | pdFALSE | The calling task will not enter the Blocked state because xWaitForAllBits is pdFALSE, and one of the two bits specified by uxBitsToWaitFor is already set in the event group. |
381
381
| 0100 | 0110 | pdTRUE | The calling task will enter the Blocked state because xWaitForAllBits is pdTRUE, and only one of the two bits specified by uxBitsToWaitFor is already set in the event group. The task will leave the Blocked state when both bit 1 and bit 2 are set in the event group. |
382
382
383
-
***Table 5****The Effect of the uxBitsToWaitFor and xWaitForAllBits Parameters*
383
+
***Table 6****The Effect of the uxBitsToWaitFor and xWaitForAllBits Parameters*
384
384
* * *
385
385
386
386
The calling task specifies bits to test using the `uxBitsToWaitFor`
@@ -414,7 +414,7 @@ operation (uninterruptable by other tasks or interrupts).
414
414
415
415
For example, if the calling task wants to wait for event bit 0 and/or
416
416
event bit 2 to become set in the event group, then set `uxBitsToWaitFor`
417
-
to 0x05 (binary 0101). Refer to Table 5 for further examples.
417
+
to 0x05 (binary 0101). Refer to Table 6 for further examples.
418
418
419
419
-`xClearOnExit`
420
420
@@ -446,7 +446,7 @@ operation (uninterruptable by other tasks or interrupts).
446
446
`uxBitsToWaitFor` are set (or the timeout specified by the `xTicksToWait`
0 commit comments