mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Rename the HAVE_USER_INTERFACE definition in preparation for other "bit banging" interfaces. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
31 lines
490 B
Plaintext
31 lines
490 B
Plaintext
# Kconfig settings for SAM4e8e processors
|
|
|
|
if MACH_SAM4E8E
|
|
|
|
config SAM_SELECT
|
|
bool
|
|
default y
|
|
select HAVE_GPIO
|
|
# select HAVE_GPIO_I2C
|
|
select HAVE_GPIO_ADC
|
|
select HAVE_GPIO_SPI
|
|
select HAVE_GPIO_BITBANGING
|
|
|
|
config BOARD_DIRECTORY
|
|
string
|
|
default "sam4e8e"
|
|
|
|
config CLOCK_FREQ
|
|
int
|
|
default 60000000 # 120000000/2
|
|
|
|
config SERIAL
|
|
bool
|
|
default y
|
|
config SERIAL_BAUD
|
|
depends on SERIAL
|
|
int "Baud rate for serial port"
|
|
default 250000
|
|
|
|
endif
|