aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f1/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/stm32f1/Kconfig')
-rw-r--r--src/stm32f1/Kconfig28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/stm32f1/Kconfig b/src/stm32f1/Kconfig
new file mode 100644
index 00000000..f386a991
--- /dev/null
+++ b/src/stm32f1/Kconfig
@@ -0,0 +1,28 @@
+# Kconfig settings for STM32F1 processors
+
+if MACH_STM32F1
+
+config STM32F1_SELECT
+ bool
+ default y
+ select HAVE_GPIO
+ select HAVE_GPIO_ADC
+
+config BOARD_DIRECTORY
+ string
+ default "stm32f1"
+
+config CLOCK_FREQ
+ int
+ default 8000000 # 72000000 / 9
+
+config SERIAL
+ bool
+ default y
+
+config SERIAL_BAUD
+ depends on SERIAL
+ int "Baud rate for serial port"
+ default 250000
+
+endif