diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-11-14 13:01:21 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-11-14 13:01:21 -0500 |
commit | 9bd0d4757696375e946a1410fcc8036d2670ae30 (patch) | |
tree | a51b700677f26c1dddbc4860377f6306bf223fca /src/rp2040 | |
parent | a46dba08e2c1946c0460b8b485dd96046842c448 (diff) | |
download | kutter-9bd0d4757696375e946a1410fcc8036d2670ae30.tar.gz kutter-9bd0d4757696375e946a1410fcc8036d2670ae30.tar.xz kutter-9bd0d4757696375e946a1410fcc8036d2670ae30.zip |
rp2040: Improve indentation in Kconfig file
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/rp2040')
-rw-r--r-- | src/rp2040/Kconfig | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/src/rp2040/Kconfig b/src/rp2040/Kconfig index 523ab6d9..5ec7c918 100644 --- a/src/rp2040/Kconfig +++ b/src/rp2040/Kconfig @@ -116,40 +116,40 @@ config RP2040_STAGE2_CLKDIV ###################################################################### choice - prompt "Communication Interface" - config RPXXXX_USB - bool "USBSERIAL" - select USBSERIAL - config RPXXXX_SERIAL_UART0_PINS_0_1 - bool "UART0 on GPIO0/GPIO1" - select SERIAL - config RPXXXX_SERIAL_UART0_PINS_12_13 - bool "UART0 on GPIO12/GPIO13" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART0_PINS_16_17 - bool "UART0 on GPIO16/GPIO17" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART0_PINS_28_29 - bool "UART0 on GPIO28/GPIO29" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART1_PINS_4_5 - bool "UART1 on GPIO4/GPIO5" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART1_PINS_8_9 - bool "UART1 on GPIO8/GPIO9" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART1_PINS_20_21 - bool "UART1 on GPIO20/GPIO21" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_SERIAL_UART1_PINS_24_25 - bool "UART1 on GPIO24/GPIO25" if LOW_LEVEL_OPTIONS - select SERIAL - config RPXXXX_CANBUS - bool "CAN bus" - select CANSERIAL - config RPXXXX_USBCANBUS - bool "USB to CAN bus bridge" - select USBCANBUS + prompt "Communication Interface" + config RPXXXX_USB + bool "USBSERIAL" + select USBSERIAL + config RPXXXX_SERIAL_UART0_PINS_0_1 + bool "UART0 on GPIO0/GPIO1" + select SERIAL + config RPXXXX_SERIAL_UART0_PINS_12_13 + bool "UART0 on GPIO12/GPIO13" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART0_PINS_16_17 + bool "UART0 on GPIO16/GPIO17" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART0_PINS_28_29 + bool "UART0 on GPIO28/GPIO29" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART1_PINS_4_5 + bool "UART1 on GPIO4/GPIO5" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART1_PINS_8_9 + bool "UART1 on GPIO8/GPIO9" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART1_PINS_20_21 + bool "UART1 on GPIO20/GPIO21" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_SERIAL_UART1_PINS_24_25 + bool "UART1 on GPIO24/GPIO25" if LOW_LEVEL_OPTIONS + select SERIAL + config RPXXXX_CANBUS + bool "CAN bus" + select CANSERIAL + config RPXXXX_USBCANBUS + bool "USB to CAN bus bridge" + select USBCANBUS endchoice config RPXXXX_CANBUS_GPIO_RX |