mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 20:03:50 -04:00
Fix spelling typos (#1168)
* Fix spelling --------- Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>
This commit is contained in:
parent
8225a7f554
commit
de276eb023
133 changed files with 218 additions and 218 deletions
|
@ -100,7 +100,7 @@ PRIVILEGED_DATA static BaseType_t prvPortSchedulerRunning = pdFALSE;
|
|||
* @param ulBufferLength Length of the given buffer.
|
||||
* @param ulAccessRequested Access requested.
|
||||
*
|
||||
* @return pdTRUE if MPU region settins authorizes the requested access to the
|
||||
* @return pdTRUE if MPU region settings authorizes the requested access to the
|
||||
* given buffer, pdFALSE otherwise.
|
||||
*/
|
||||
PRIVILEGED_FUNCTION static BaseType_t prvMPURegionAuthorizesBuffer( const xMPU_REGION_REGISTERS * xTaskMPURegion,
|
||||
|
|
|
@ -236,7 +236,7 @@ typedef uint32_t TickType_t;
|
|||
#define portTICK_TYPE_IS_ATOMIC 1
|
||||
|
||||
/**
|
||||
* @brief The number of miliseconds between system ticks.
|
||||
* @brief The number of milliseconds between system ticks.
|
||||
*
|
||||
* @ingroup System Clock
|
||||
*/
|
||||
|
@ -380,7 +380,7 @@ void vPortExitCritical( void );
|
|||
* @note The processor privilege level is determined by checking the
|
||||
* mode bits [4:0] of the Current Program Status Register (CPSR).
|
||||
*
|
||||
* @return pdTRUE, if the processer is privileged, pdFALSE otherwise.
|
||||
* @return pdTRUE, if the processor is privileged, pdFALSE otherwise.
|
||||
*/
|
||||
BaseType_t xPortIsPrivileged( void );
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ extern "C" {
|
|||
#include "FreeRTOSConfig.h"
|
||||
|
||||
#ifndef configTOTAL_MPU_REGIONS
|
||||
#error "Set configTOTAL_MPU_REGIONS to the humber of MPU regions in FreeRTOSConfig.h"
|
||||
#error "Set configTOTAL_MPU_REGIONS to the number of MPU regions in FreeRTOSConfig.h"
|
||||
#elif( configTOTAL_MPU_REGIONS == 12 )
|
||||
#define portMPU_TOTAL_REGIONS ( 12UL )
|
||||
#elif( configTOTAL_MPU_REGIONS == 16 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue