Skip to content

Commit

Permalink
Change I2C pin definition to have order SCL,SDA
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasbakken committed May 25, 2024
1 parent 9d740a4 commit 14bc346
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
4 changes: 1 addition & 3 deletions src/stm32/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,7 @@ config CLOCK_FREQ

config FLASH_SIZE
hex
prompt "Flash size" if MACH_STM32F031
default 0x4000 if MACH_STM32F031
default 0x8000 if MACH_STM32F042
default 0x8000 if MACH_STM32F031 || MACH_STM32F042
default 0x20000 if MACH_STM32F070 || MACH_STM32F072
default 0x10000 if MACH_STM32F103 || MACH_STM32L412 # Flash size of stm32f103x8 (64KiB)
default 0x40000 if MACH_STM32F2 || MACH_STM32F401 || MACH_STM32H723
Expand Down
6 changes: 3 additions & 3 deletions src/stm32/stm32f0_i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ struct i2c_info {
DECL_CONSTANT_STR("BUS_PINS_i2c1_PF1_PF0", "PF1,PF0");
DECL_ENUMERATION("i2c_bus", "i2c1_PB8_PB9", 2);
DECL_CONSTANT_STR("BUS_PINS_i2c1_PB8_PB9", "PB8,PB9");
DECL_ENUMERATION("i2c_bus", "i2c1_PB7_PB8", 3);
DECL_CONSTANT_STR("BUS_PINS_i2c1_PB7_PB8", "PB7,PB8");
DECL_ENUMERATION("i2c_bus", "i2c1_PB8_PB7", 3);
DECL_CONSTANT_STR("BUS_PINS_i2c1_PB8_PB7", "PB8,PB7");
// Deprecated "i2c1a" style mappings
DECL_ENUMERATION("i2c_bus", "i2c1", 0);
DECL_CONSTANT_STR("BUS_PINS_i2c1", "PB6,PB7");
Expand Down Expand Up @@ -95,7 +95,7 @@ static const struct i2c_info i2c_bus[] = {
{ I2C1, GPIO('B', 6), GPIO('B', 7), GPIO_FUNCTION(1) },
{ I2C1, GPIO('F', 1), GPIO('F', 0), GPIO_FUNCTION(1) },
{ I2C1, GPIO('B', 8), GPIO('B', 9), GPIO_FUNCTION(1) },
{ I2C1, GPIO('B', 7), GPIO('B', 8), GPIO_FUNCTION(1) },
{ I2C1, GPIO('B', 8), GPIO('B', 7), GPIO_FUNCTION(1) },
#elif CONFIG_MACH_STM32F7
{ I2C1, GPIO('B', 6), GPIO('B', 7), GPIO_FUNCTION(1) },
#elif CONFIG_MACH_STM32G0
Expand Down
2 changes: 1 addition & 1 deletion test/configs/stm32f031.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Base config file for STM32F031x4 (16KB) boards with serial on PA14/PA15
# Base config file for STM32F031 boards with serial on PA14/PA15
CONFIG_MACH_STM32=y
CONFIG_MACH_STM32F031=y
CONFIG_LOW_LEVEL_OPTIONS=y
Expand Down
11 changes: 0 additions & 11 deletions test/configs/stm32f031x6.config

This file was deleted.

0 comments on commit 14bc346

Please sign in to comment.