You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
760 B

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_BOARD_MIKROE_STM32F4
if PLATFORM_CONFIGDATA
choice
prompt "Config Data save location"
default MIKROE_STM32F4_CONFIGDATA_PART
config MIKROE_STM32F4_CONFIGDATA_PART
bool "Dedicated FLASH partition using /dev/config"
config MIKROE_STM32F4_CONFIGDATA_FS
bool "File system file"
config MIKROE_STM32F4_CONFIGDATA_ROM
bool "Program ROM (R/O)"
endchoice
if MIKROE_STM32F4_CONFIGDATA_FS
config MIKROE_STM32F4_CONFIGDATA_FILENAME
string "Path of file to save config data"
---help---
Specifies the fully qualified filename where application configuration
data is stored on the filesystem.
endif
endif
endif