aboutsummaryrefslogtreecommitdiff
path: root/examples/spiblink/master/Kconfig
blob: dc9e8b595c2c9a53f545a4f7bbe8b83a892982eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mainmenu "AVR-IOE spiblink master configuration"

# We need CONFIG_IOPORTS, but we don't care about anything else.
config SPIBLINK_MASTER_DEFAULTS
	bool
	default y
	select CONFIG_SPI
	select CONFIG_IOPORTS

config CONFIG_BUTTON_IO
	string "Input pin used to connect button"
	depends on SPIBLINK_MASTER_DEFAULTS
	default "IO_C1"

config CONFIG_LED_IO
	string "Output pin used to connect test led"
	depends on SPIBLINK_MASTER_DEFAULTS
	default "IO_B0"

source "../../../ioe.Kconfig"