Loading...
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | # Kconfig.defconfig.series - ST Microelectronics STM32 all MCU lines # # Copyright (c) 2017, I-SENSE group of ICCS # # SPDX-License-Identifier: Apache-2.0 # # Here are set all the Kconfig symbols common to the whole STM32 family if SOC_FAMILY_STM32 if SERIAL config UART_STM32 default y endif #SERIAL if GPIO config GPIO_STM32 default y config GPIO_STM32_PORTA default y config GPIO_STM32_PORTB default y config GPIO_STM32_PORTC default y endif #GPIO if PINMUX config PINMUX_STM32 default y endif #PINMUX if WATCHDOG config IWDG_STM32 default y endif # WATCHDOG if PWM config PWM_STM32 default y endif # PWM if SPI config SPI_STM32 default y endif # SPI if I2C config I2C_STM32 default y endif if USB config USB_DC_STM32 default y endif # USB if RTC config RTC_STM32 default y endif # RTC if COUNTER config COUNTER_RTC_STM32 default y endif # COUNTER if CAN config CAN_STM32 default y endif if ADC config ADC_STM32 default y endif # ADC endif # SOC_FAMILY_STM32 |