Skip to content

Commit 2e6e605

Browse files
Update reference number of Figures (#71)
* Update reference of figures
1 parent b0a9038 commit 2e6e605

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ch02.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ procedure to create a new project:
440440
| event\_groups.c | FreeRTOS/Source |
441441
| stream\_buffer.c | FreeRTOS/Source |
442442
| All C and assembler files | FreeRTOS/Source/portable/\[compiler\]/\[architecture\] |
443-
| *heap\_n.c* | *FreeRTOS/Source/portable/MemMang, where n is either 1, 2, 3, 4 or 5* |
443+
| heap\_n.c | FreeRTOS/Source/portable/MemMang, where n is either 1, 2, 3, 4 or 5 |
444444
445445
*Table 1 FreeRTOS source files to include in the project*
446446
* * *

ch03.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ These functions will be explained in the appropriate chapters in this book.
833833

834834
### 3.4.2 Static Internal Kernel Memory
835835

836-
When you enable the static memory allocator, the idle task and the timer task (if enabled) will use static memory supplied
836+
When the static memory allocator is enabled, the idle task and the timer task (if enabled) will use static memory supplied
837837
by user functions. These user functions are:
838838

839839
- `vApplicationGetTimerTaskMemory`

ch05.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ It is common in FreeRTOS designs for a task to receive data from more
631631
than one source. The receiving task needs to know where the data came
632632
from to determine what to do with it. An easy design pattern to achieve
633633
that uses a single queue to transfer structures that contain both the
634-
data value and data source, as demonstrated in Figure 34.
634+
data value and data source, as demonstrated in Figure 5.4.
635635

636636
<a name="fig5.4" title="Figure 5.4 An example scenario where structures are sent on a queue"></a>
637637

@@ -640,7 +640,7 @@ data value and data source, as demonstrated in Figure 34.
640640
*Figure 5.4 An example scenario where structures are sent on a queue*
641641
* * *
642642

643-
Referring to Figure 34:
643+
Referring to Figure 5.4:
644644

645645
- The created queue holds structures of type `Data_t`. The structure
646646
allows both a data value and an enumerated type indicating what the

0 commit comments

Comments
 (0)