diff options
author | Elias Bakken <elias@iagent.no> | 2024-05-25 21:47:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-25 15:47:48 -0400 |
commit | 3078912f1d9e063906b9b40eda73d63065900212 (patch) | |
tree | 52eb7d930e09bd8976c525735ba23ed789440335 /test/configs | |
parent | b6a0063235dd58bc9c1bb5767e87e09c9927f39a (diff) | |
download | kutter-3078912f1d9e063906b9b40eda73d63065900212.tar.gz kutter-3078912f1d9e063906b9b40eda73d63065900212.tar.xz kutter-3078912f1d9e063906b9b40eda73d63065900212.zip |
stm32: STM32F031 updates (#6607)
Add support for STM32F031x6 which is the 32 KB version of the STM32F031 MCU.
Add new I2C bus variant.
Signed-off by: Elias Bakken <elias@iagent.no>
Diffstat (limited to 'test/configs')
-rw-r--r-- | test/configs/stm32f031.config | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/configs/stm32f031.config b/test/configs/stm32f031.config index aa9c282b..a8c95cfe 100644 --- a/test/configs/stm32f031.config +++ b/test/configs/stm32f031.config @@ -1,5 +1,9 @@ -# Base config file for STM32F031 boards +# Base config file for STM32F031x4 (16KB) boards with serial on PA14/PA15 CONFIG_MACH_STM32=y CONFIG_MACH_STM32F031=y -CONFIG_WANT_GPIO_BITBANGING=n +CONFIG_LOW_LEVEL_OPTIONS=y +CONFIG_STM32_SERIAL_USART2_ALT_PA15_PA14=y +CONFIG_STM32_CLOCK_REF_INTERNAL=y +CONFIG_STM32_FLASH_START_0000=y CONFIG_WANT_DISPLAYS=n +CONFIG_WANT_GPIO_BITBANGING=n |