mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Clean some spell check words. (#439)
This commit is contained in:
parent
c4f9e27c28
commit
abd887c687
5
.github/lexicon.txt
vendored
5
.github/lexicon.txt
vendored
|
@ -994,7 +994,6 @@ ldrb
|
||||||
ldrbs
|
ldrbs
|
||||||
ldub
|
ldub
|
||||||
len
|
len
|
||||||
lengh
|
|
||||||
les
|
les
|
||||||
lexpirecounters
|
lexpirecounters
|
||||||
libc
|
libc
|
||||||
|
@ -1166,7 +1165,6 @@ multidriverenable
|
||||||
multidrvenable
|
multidrvenable
|
||||||
mutex
|
mutex
|
||||||
mutexes
|
mutexes
|
||||||
mutexs
|
|
||||||
mux
|
mux
|
||||||
muxes
|
muxes
|
||||||
mv
|
mv
|
||||||
|
@ -2146,7 +2144,6 @@ tfmr
|
||||||
tgo
|
tgo
|
||||||
thalt
|
thalt
|
||||||
therad
|
therad
|
||||||
thie
|
|
||||||
thr
|
thr
|
||||||
threadstate
|
threadstate
|
||||||
thu
|
thu
|
||||||
|
@ -2652,7 +2649,6 @@ wdv
|
||||||
westat
|
westat
|
||||||
wfi
|
wfi
|
||||||
winavr
|
winavr
|
||||||
witin
|
|
||||||
wizc
|
wizc
|
||||||
wl
|
wl
|
||||||
wo
|
wo
|
||||||
|
@ -2912,7 +2908,6 @@ xram
|
||||||
xrbarconst
|
xrbarconst
|
||||||
xreceivedbytes
|
xreceivedbytes
|
||||||
xreceivedlength
|
xreceivedlength
|
||||||
xrecievedbytes
|
|
||||||
xregion
|
xregion
|
||||||
xregions
|
xregions
|
||||||
xregionssettings
|
xregionssettings
|
||||||
|
|
|
@ -125,7 +125,7 @@ typedef void * MessageBufferHandle_t;
|
||||||
* // Create a message buffer that can hold 100 bytes. The memory used to hold
|
* // Create a message buffer that can hold 100 bytes. The memory used to hold
|
||||||
* // both the message buffer structure and the messages themselves is allocated
|
* // both the message buffer structure and the messages themselves is allocated
|
||||||
* // dynamically. Each message added to the buffer consumes an additional 4
|
* // dynamically. Each message added to the buffer consumes an additional 4
|
||||||
* // bytes which are used to hold the lengh of the message.
|
* // bytes which are used to hold the length of the message.
|
||||||
* xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes );
|
* xMessageBuffer = xMessageBufferCreate( xMessageBufferSizeBytes );
|
||||||
*
|
*
|
||||||
* if( xMessageBuffer == NULL )
|
* if( xMessageBuffer == NULL )
|
||||||
|
|
|
@ -1420,7 +1420,7 @@ BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Utilities to query queues that are safe to use from an ISR. These utilities
|
* Utilities to query queues that are safe to use from an ISR. These utilities
|
||||||
* should be used only from witin an ISR, or within a critical section.
|
* should be used only from within an ISR, or within a critical section.
|
||||||
*/
|
*/
|
||||||
BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
|
BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
|
||||||
BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
|
BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
|
||||||
|
|
|
@ -808,7 +808,7 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
||||||
* Creates a new recursive mutex type semaphore instance, and returns a handle
|
* Creates a new recursive mutex type semaphore instance, and returns a handle
|
||||||
* by which the new recursive mutex can be referenced.
|
* by which the new recursive mutex can be referenced.
|
||||||
*
|
*
|
||||||
* Internally, within the FreeRTOS implementation, recursive mutexs use a block
|
* Internally, within the FreeRTOS implementation, recursive mutexes use a block
|
||||||
* of memory, in which the mutex structure is stored. If a recursive mutex is
|
* of memory, in which the mutex structure is stored. If a recursive mutex is
|
||||||
* created using xSemaphoreCreateRecursiveMutex() then the required memory is
|
* created using xSemaphoreCreateRecursiveMutex() then the required memory is
|
||||||
* automatically dynamically allocated inside the
|
* automatically dynamically allocated inside the
|
||||||
|
@ -877,7 +877,7 @@ typedef QueueHandle_t SemaphoreHandle_t;
|
||||||
* Creates a new recursive mutex type semaphore instance, and returns a handle
|
* Creates a new recursive mutex type semaphore instance, and returns a handle
|
||||||
* by which the new recursive mutex can be referenced.
|
* by which the new recursive mutex can be referenced.
|
||||||
*
|
*
|
||||||
* Internally, within the FreeRTOS implementation, recursive mutexs use a block
|
* Internally, within the FreeRTOS implementation, recursive mutexes use a block
|
||||||
* of memory, in which the mutex structure is stored. If a recursive mutex is
|
* of memory, in which the mutex structure is stored. If a recursive mutex is
|
||||||
* created using xSemaphoreCreateRecursiveMutex() then the required memory is
|
* created using xSemaphoreCreateRecursiveMutex() then the required memory is
|
||||||
* automatically dynamically allocated inside the
|
* automatically dynamically allocated inside the
|
||||||
|
|
|
@ -495,7 +495,7 @@ size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
|
||||||
*
|
*
|
||||||
* if( xReceivedBytes > 0 )
|
* if( xReceivedBytes > 0 )
|
||||||
* {
|
* {
|
||||||
* // A ucRxData contains another xRecievedBytes bytes of data, which can
|
* // A ucRxData contains another xReceivedBytes bytes of data, which can
|
||||||
* // be processed here....
|
* // be processed here....
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
|
|
|
@ -1352,7 +1352,7 @@ BaseType_t xTimerGenericCommand( TimerHandle_t xTimer,
|
||||||
* configSUPPORT_STATIC_ALLOCATION is set. For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
|
* configSUPPORT_STATIC_ALLOCATION is set. For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
|
||||||
*
|
*
|
||||||
* @param ppxTimerTaskTCBBuffer A handle to a statically allocated TCB buffer
|
* @param ppxTimerTaskTCBBuffer A handle to a statically allocated TCB buffer
|
||||||
* @param ppxTimerTaskStackBuffer A handle to a statically allocated Stack buffer for thie idle task
|
* @param ppxTimerTaskStackBuffer A handle to a statically allocated Stack buffer for the idle task
|
||||||
* @param pulTimerTaskStackSize A pointer to the number of elements that will fit in the allocated stack buffer
|
* @param pulTimerTaskStackSize A pointer to the number of elements that will fit in the allocated stack buffer
|
||||||
*/
|
*/
|
||||||
void vApplicationGetTimerTaskMemory( StaticTask_t ** ppxTimerTaskTCBBuffer,
|
void vApplicationGetTimerTaskMemory( StaticTask_t ** ppxTimerTaskTCBBuffer,
|
||||||
|
|
Loading…
Reference in a new issue