-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for STM32F031x6 which is the 32 KB version of the STM32F031 MCU. Add new I2C bus variant. Signed-off by: Elias Bakken <[email protected]>
- Loading branch information
1 parent
03ea3b1
commit 7799a73
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |