nuttx/configs/samv71-xult/Kconfig

117 lines
2.5 KiB
Plaintext
Raw Normal View History

#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
if ARCH_BOARD_SAMV71_XULT
config SAMV71XULT_MXTXPLND
bool "MaXTouch Xplained connected"
default n
if SAMV71XULT_MXTXPLND
choice
prompt "MaXTouch Xplained connection"
default SAMV71XULT_MXTXPLND_EXT1
config SAMV71XULT_MXTXPLND_EXT1
bool "Connected on EXT1 (2x10 pin)"
depends on EXPERIMENTAL
config SAMV71XULT_MXTXPLND_EXT2
bool "Connected on EXT2 (2x10 pin)"
depends on EXPERIMENTAL
config SAMV71XULT_MXTXPLND_LCD
bool "Connected on LCD (50-pin)"
endchoice # MaXTouch Xplained connection
if INPUT_MXT
2015-05-13 01:46:59 +02:00
config SAMV71XULT_MXT_SWAPXY
bool "Swap X/Y coordinates"
2015-05-13 01:46:59 +02:00
default n
---help---
If you are working in a landscape orientation, it should be
necessary to swap X/Y coordinates. But you will probably want
to do this in any portrait orientation.
config SAMV71XULT_MXT_I2CFREQUENCY
int "maXTouch I2C frequency"
default 400000
config SAMV71XULT_MXT_DEVMINOR
int "/dev/input minor number"
default 0
endif # INPUT_MXT
if LCD
config SAMV71XULT_LCD_BGCOLOR
hex "Initial background color"
default 0x00
endif # LCD
endif # SAMV71XULT_MXTXPLND
config SAMV71XULT_HSMCI0_AUTOMOUNT
bool "HSMCI0 automounter"
default n
depends on FS_AUTOMOUNTER && SAMA5_HSMCI0
if SAMV71XULT_HSMCI0_AUTOMOUNT
config SAMV71XULT_HSMCI0_AUTOMOUNT_FSTYPE
string "HSMCI0 file system type"
default "vfat"
config SAMV71XULT_HSMCI0_AUTOMOUNT_BLKDEV
string "HSMCI0 block device"
default "/dev/mmcsd0"
config SAMV71XULT_HSMCI0_AUTOMOUNT_MOUNTPOINT
string "HSMCI0 mount point"
default "/mnt/sdcard0"
config SAMV71XULT_HSMCI0_AUTOMOUNT_DDELAY
int "HSMCI0 debounce delay (milliseconds)"
default 1000
config SAMV71XULT_HSMCI0_AUTOMOUNT_UDELAY
int "HSMCI0 unmount retry delay (milliseconds)"
default 2000
endif # SAMV71XULT_HSMCI0_AUTOMOUNT
if AUDIO_WM8904
config SAMV71XULT_WM8904_I2CFREQUENCY
int "WM8904 I2C Frequency"
default 400000
range 1 400000
---help---
This option selects the I2C frequency to use when communicating with
the WM8904 device. The default, 400KHz, is the maximum supported by
the WM8904. If you have problems communicating with the WM8904,
then you might want to try lowering this rate.
choice
prompt "WM8904 MCLK source"
default SAMV71XULT_WM8904_SRCMAIN
config SAMV71XULT_WM8904_SRCMAIN
bool "Main Clock (12MHz)"
config SAMV71XULT_WM8904_SRCSCK
bool "Slow XTAL (32.768KHz)"
select SAMV71XULT_SLOWCLOCK
endchoice # WM8904 MCLK source
endif # AUDIO_WM8904
endif # ARCH_BOARD_SAMV71_XULT