Fix documentation mistake (#407)

ulTaskNotification -> ulTaskNotify
This commit is contained in:
prplz 2021-11-06 04:55:17 +11:00 committed by GitHub
parent a432a688ca
commit a40d52dc05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

1
.github/lexicon.txt vendored
View File

@ -2338,7 +2338,6 @@ ultablebase
ultaskgetidleruntimecounter ultaskgetidleruntimecounter
ultaskgetidleruntimepercent ultaskgetidleruntimepercent
ultaskhasfpucontext ultaskhasfpucontext
ultasknotificationtakeindexed
ultasknotifystateclear ultasknotifystateclear
ultasknotifytake ultasknotifytake
ultasknotifytakeindexed ultasknotifytakeindexed

View File

@ -2404,7 +2404,7 @@ BaseType_t xTaskGenericNotifyWait( UBaseType_t uxIndexToWaitOn,
* *
* When task notifications are being used as a binary or counting semaphore * When task notifications are being used as a binary or counting semaphore
* equivalent then the task being notified should wait for the notification * equivalent then the task being notified should wait for the notification
* using the ulTaskNotificationTakeIndexed() API function rather than the * using the ulTaskNotifyTakeIndexed() API function rather than the
* xTaskNotifyWaitIndexed() API function. * xTaskNotifyWaitIndexed() API function.
* *
* **NOTE** Each notification within the array operates independently - a task * **NOTE** Each notification within the array operates independently - a task
@ -2481,7 +2481,7 @@ BaseType_t xTaskGenericNotifyWait( UBaseType_t uxIndexToWaitOn,
* *
* When task notifications are being used as a binary or counting semaphore * When task notifications are being used as a binary or counting semaphore
* equivalent then the task being notified should wait for the notification * equivalent then the task being notified should wait for the notification
* using the ulTaskNotificationTakeIndexed() API function rather than the * using the ulTaskNotifyTakeIndexed() API function rather than the
* xTaskNotifyWaitIndexed() API function. * xTaskNotifyWaitIndexed() API function.
* *
* **NOTE** Each notification within the array operates independently - a task * **NOTE** Each notification within the array operates independently - a task