mirror of
https://github.com/andreili/klipper.git
synced 2025-09-21 04:14:41 +02:00
This adds basic support for running on the Atmel SAM3x8e micro-controllers that are found in the Arudino Due boards. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
26 lines
363 B
Plaintext
26 lines
363 B
Plaintext
# Kconfig settings for SAM3x8e processors
|
|
|
|
if MACH_SAM3X8E
|
|
|
|
config BOARD_DIRECTORY
|
|
string
|
|
default "sam3x8e"
|
|
|
|
config MCU
|
|
string
|
|
default "sam3x8e"
|
|
|
|
config CLOCK_FREQ
|
|
int
|
|
default 42000000 # 84000000/2
|
|
|
|
config SERIAL
|
|
bool
|
|
default y
|
|
config SERIAL_BAUD
|
|
depends on SERIAL
|
|
int "Baud rate for serial port"
|
|
default 250000
|
|
|
|
endif
|