1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32/Kconfig: replace tabs with spaces

This commit is contained in:
Alexandre Abadie 2021-12-19 10:37:29 +01:00
parent ec46f1b3f1
commit 6f69996937
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -45,23 +45,23 @@ orsource "kconfigs/*/Kconfig.lines"
orsource "kconfigs/*/Kconfig.models"
choice
prompt "ReaDout Protection level"
default RDP0
help
Set minimum running RDP level.
RDP0 is full debug permissions, RDP1 disables read from Flash but
otherwise leaves debug enabled, RDP2 disables JTAG completely. If
there is a mismatch between desired RDP level here and RDP level
set on the chip, early cpu init will hang. This ensures production
devices with the wrong RDP level, by fault or malace intent, will
not run. See cpu manual for further details on RDP.
prompt "ReaDout Protection level"
default RDP0
help
Set minimum running RDP level.
RDP0 is full debug permissions, RDP1 disables read from Flash but
otherwise leaves debug enabled, RDP2 disables JTAG completely. If
there is a mismatch between desired RDP level here and RDP level
set on the chip, early cpu init will hang. This ensures production
devices with the wrong RDP level, by fault or malace intent, will
not run. See cpu manual for further details on RDP.
depends on (CPU_FAM_F1 || CPU_FAM_F2 || CPU_FAM_F3 || CPU_FAM_F4 || CPU_FAM_F7)
config RDP0
bool "RDP0"
bool "RDP0"
config RDP1
bool "RDP1"
bool "RDP1"
config RDP2
bool "RDP2"
bool "RDP2"
endchoice
if TEST_KCONFIG