Skip to content

Commit a76ee51

Browse files
authored
Fix size of task task notification entry in TCB (#82)
This was reported here - https://forums.freertos.org/t/about-task-notifications/19190 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
1 parent 13545e9 commit a76ee51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch10.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ group to perform an equivalent operation. This is because each
8181
communication object (queue, semaphore or event group) must be created
8282
before it can be used, whereas enabling task notification functionality
8383
has a fixed overhead. The RAM cost for task notifications is
84-
`configTASK_NOTIFICATION_ARRAY_ENTRIES` * 8 bytes per task. The
84+
`configTASK_NOTIFICATION_ARRAY_ENTRIES` * 5 bytes per task. The
8585
default value for `configTASK_NOTIFICATION_ARRAY_ENTRIES` is 1 making
86-
the default size for task notifications is 8 bytes per task.
86+
the default size for task notifications is 5 bytes per task.
8787

8888
### 10.2.3 Limitations of Task Notifications
8989

0 commit comments

Comments
 (0)