aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f1/Kconfig
blob: 20afef85e271ecac80c2051b8f5b1c128988d316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Kconfig settings for STM32F1 processors

if MACH_STM32F1

config STM32F1_SELECT
    bool
    default y
    select HAVE_GPIO
    select HAVE_GPIO_ADC
    select HAVE_GPIO_SPI
    select HAVE_GPIO_BITBANGING

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