From 15e0364968aff9c6c3cc7b4893e8ec0311047ce2 Mon Sep 17 00:00:00 2001 From: Robert Berger Date: Wed, 20 Sep 2023 11:03:56 +0200 Subject: [PATCH] xQueueSendToFromFromISR --> xQueueSendToFrontFromISR (#795) Co-authored-by: Robert Berger Co-authored-by: chinglee-iot <61685396+chinglee-iot@users.noreply.github.com> --- include/queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/queue.h b/include/queue.h index 000003306..821545672 100644 --- a/include/queue.h +++ b/include/queue.h @@ -995,7 +995,7 @@ void vQueueDelete( QueueHandle_t xQueue ) PRIVILEGED_FUNCTION; * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task * to unblock, and the unblocked task has a priority higher than the currently - * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then + * running task. If xQueueSendToFrontFromISR() sets this value to pdTRUE then * a context switch should be requested before the interrupt is exited. * * @return pdTRUE if the data was successfully sent to the queue, otherwise