mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix spell-check error
This commit is contained in:
parent
1c9ae96290
commit
8689b3759b
2
.github/.cSpellWords.txt
vendored
2
.github/.cSpellWords.txt
vendored
|
@ -87,6 +87,7 @@ CHSR
|
|||
CICR
|
||||
CISR
|
||||
CKDIV
|
||||
CKDIVMD
|
||||
CKEY
|
||||
CKGR
|
||||
CKLO
|
||||
|
@ -151,6 +152,7 @@ CPRE
|
|||
cpsid
|
||||
cpsie
|
||||
CPSR
|
||||
CPUCLK
|
||||
CPUID
|
||||
CRCB
|
||||
crflash
|
||||
|
|
|
@ -25,7 +25,7 @@ The test project can be found [here](https://github.com/FreeRTOS/FreeRTOS-Commun
|
|||
2. `Channel 0` and address `0xFFFEEC00` are used as default configuration for configIPIR_CHANNEL and configEXCLUSIVE_ADDRESS, in case of resource confliction other channel/address can be used. (2)
|
||||
3. The minimal stack size (configMINIMAL_STACK_SIZE) must be included the reserved memory for nested interrupt. This formula can be referred: `(task_context_size) * (1 + configMAX_INT_NESTING) + Stack_depth_of_taskcode`
|
||||
In which, `task_context_size` is calculated as `36*4bytes = 144bytes` (when FPU enabled) or `34*4bytes = 136` (when FPU disabled), configMAX_INT_NESTING is 02 as default.
|
||||
4. `configTIMER_PRESCALE`: This value is required in order to correctly configure clock for `CPUCLK_L`. Refer to HWUM at `Table 44.22` for `option byte`: If the user sets the option byte `CKDIVMD to 1`, then `configTIMER_PRESCALE = 4`. Otherwise, if `CKDIVMD is set to 0`, then `configTIMER_PRESCALE = 2`.
|
||||
4. `configTIMER_PRESCALE`: This value is required in order to correctly configure clock for `CPUCLK_L`. Refer to Hardware Manual at `Table 44.22` for `option byte`: If the user sets the option byte `CKDIVMD to 1`, then `configTIMER_PRESCALE = 4`. Otherwise, if `CKDIVMD is set to 0`, then `configTIMER_PRESCALE = 2`.
|
||||
|
||||
(1) This is applicable for F1KH-D8 with SMP only.
|
||||
|
||||
|
|
Loading…
Reference in a new issue