aboutsummaryrefslogtreecommitdiffstats
path: root/src/Kconfig
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-07-28 23:15:54 -0400
committerKevinOConnor <kevin@koconnor.net>2019-08-05 11:25:40 -0400
commit8b9cc62359057a686929cc713ffe2931e2203946 (patch)
treeab2e5469d7919cc6ed652e2928f0eaf9a24420c3 /src/Kconfig
parentec3d865b517affd77678e5b1a45ef4691619726d (diff)
downloadkutter-8b9cc62359057a686929cc713ffe2931e2203946.tar.gz
kutter-8b9cc62359057a686929cc713ffe2931e2203946.tar.xz
kutter-8b9cc62359057a686929cc713ffe2931e2203946.zip
stm32: Rename stm32f4/ directory to stm32/
Now that the code in stm32f4/ can handle both stm32f1 and stm32f4 chips, rename the directory to just "stm32". Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 2d238c50..d065bc26 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -19,12 +19,10 @@ choice
bool "SAMD21/SAMD51"
config MACH_LPC176X
bool "LPC176x (Smoothieboard)"
+ config MACH_STM32
+ bool "STMicroelectronics STM32F1/F4"
config MACH_STM32F0
bool "STMicroelectronics STM32F042"
- config MACH_STM32F1
- bool "STMicroelectronics STM32F103"
- config MACH_STM32F4
- bool "STMicroelectronics STM32F4"
config MACH_PRU
bool "Beaglebone PRU"
config MACH_LINUX
@@ -37,9 +35,8 @@ source "src/avr/Kconfig"
source "src/atsam/Kconfig"
source "src/atsamd/Kconfig"
source "src/lpc176x/Kconfig"
+source "src/stm32/Kconfig"
source "src/stm32f0/Kconfig"
-source "src/stm32f1/Kconfig"
-source "src/stm32f4/Kconfig"
source "src/pru/Kconfig"
source "src/linux/Kconfig"
source "src/simulator/Kconfig"