12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- choice
- prompt "SoC/CPU/Configuration Selection"
- osource "$(KCONFIG_BINARY_DIR)/Kconfig.soc"
- osource "soc/$(ARCH)/*/Kconfig.soc"
- endchoice
- menu "Hardware Configuration"
- osource "$(KCONFIG_BINARY_DIR)/Kconfig.soc.arch"
- osource "soc/$(ARCH)/Kconfig"
- osource "soc/$(ARCH)/*/Kconfig"
- module = SOC
- module-str = SOC
- source "subsys/logging/Kconfig.template.log_config"
- endmenu
- config SOC_COMPATIBLE_NRF
- bool
- config SOC_COMPATIBLE_NRF52X
- bool
- config SOC_COMPATIBLE_NRF52832
- bool
- config SOC_DEPRECATED_RELEASE
- string
- help
- This hidden option is set in the SoC configuration and indicates
- the Zephyr release that the SoC configuration will be removed.
- When set, any build for that SoC will generate a clearly visible
- deprecation warning.
- config SOC_HAS_TIMING_FUNCTIONS
- bool
- help
- Should be selected if SoC provides custom method for retrieving
- timestamps and cycle count.
|