summaryrefslogtreecommitdiff
path: root/apps/platform/mikroe-stm32f4/Kconfig
blob: a26765ccfff67ebad46871c7c3b9961ed704fd0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

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