diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-06-19 21:43:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-07-04 10:11:02 -0400 |
commit | 045bfa4e8d177ca934815dd16fa8700543578328 (patch) | |
tree | 442330c5a3730c51c9f3d44416f0b501ddc445e1 /src/Kconfig | |
parent | 20c597635650d6a0944f9b6e33c438508a0c691f (diff) | |
download | kutter-045bfa4e8d177ca934815dd16fa8700543578328.tar.gz kutter-045bfa4e8d177ca934815dd16fa8700543578328.tar.xz kutter-045bfa4e8d177ca934815dd16fa8700543578328.zip |
rp2040: Add initial support for the rp2040 mcu
Support the rp2040 (as tested on a Raspberry Pi Pico board). This
adds basic uart, timer, gpio, and watchdog support.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index 7278ada0..f1081907 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -21,6 +21,8 @@ choice bool "LPC176x (Smoothieboard)" config MACH_STM32 bool "STMicroelectronics STM32" + config MACH_RP2040 + bool "Raspberry Pi RP2040" config MACH_PRU bool "Beaglebone PRU" config MACH_LINUX @@ -34,6 +36,7 @@ source "src/atsam/Kconfig" source "src/atsamd/Kconfig" source "src/lpc176x/Kconfig" source "src/stm32/Kconfig" +source "src/rp2040/Kconfig" source "src/pru/Kconfig" source "src/linux/Kconfig" source "src/simulator/Kconfig" |