aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f0/Kconfig
diff options
context:
space:
mode:
authorEug Krashtan <eug.krashtan@gmail.com>2019-12-28 13:29:10 +0200
committerKevin O'Connor <kevin@koconnor.net>2020-01-14 17:08:01 -0500
commitb70416167b9abdcafacea81e9ef92c509360f735 (patch)
tree7cf36ea0ea19ba2058c7a7457483c5d13eaab9b0 /src/stm32f0/Kconfig
parenta34dbc7029fc9bbaabf8c13b2ef8f5f4052c12a2 (diff)
downloadkutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.gz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.xz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.zip
stm32f0: Remove hal based stm32f0 implementation
Signed-off-by: Eug Krashtan <eug.krashtan@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f0/Kconfig')
-rw-r--r--src/stm32f0/Kconfig44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/stm32f0/Kconfig b/src/stm32f0/Kconfig
deleted file mode 100644
index 6914acfa..00000000
--- a/src/stm32f0/Kconfig
+++ /dev/null
@@ -1,44 +0,0 @@
-# Kconfig settings for STM32F0 processors
-
-if MACH_STM32F0_HAL
-
-config STM32F0_HAL_SELECT
- bool
- default y
- select HAVE_GPIO
- select HAVE_GPIO_ADC
- select HAVE_GPIO_I2C
- select HAVE_GPIO_SPI
- select HAVE_GPIO_BITBANGING
-
-config BOARD_DIRECTORY
- string
- default "stm32f0"
-
-config CLOCK_FREQ
- int
- default 48000000
-
-config CANSERIAL
- bool "Use CAN bus for communication (instead of serial)"
- default y
-config SERIAL
- depends on !CANSERIAL
- bool
- default y
-
-config SERIAL_BAUD
- int "CAN bus speed" if LOW_LEVEL_OPTIONS && CANSERIAL
- default 500000 if CANSERIAL
-
-config DEBUG_OUT
- bool "Use debug output to UART TX pin"
- depends on CANSERIAL
- default y
-
-config USE_LOG
- string
- default "USE_LOG" if DEBUG_OUT
- default "NO_LOG" if !DEBUG_OUT
-
-endif