Skip to content

Commit 1c1eb49

Browse files
committed
fix(swan_r5):revert changes to GPIO ports. While these ports are available on the L4R5, they aren't used. This fixes a build error on the stm32f412zg_discovery.
1 parent 9b179ff commit 1c1eb49

File tree

1 file changed

+1
-1
lines changed
  • ports/stm/common-hal/microcontroller

1 file changed

+1
-1
lines changed

ports/stm/common-hal/microcontroller/Pin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#if defined(TFBGA216)
3535
GPIO_TypeDef *ports[] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE, GPIOF, GPIOG, GPIOH, GPIOI, GPIOJ, GPIOK};
3636
#elif defined(LQFP144) || defined(WLCSP144)
37-
GPIO_TypeDef *ports[] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE, GPIOF, GPIOG, GPIOH, GPIOI};
37+
GPIO_TypeDef *ports[] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE, GPIOF, GPIOG};
3838
#elif defined(LQFP100_f4) || (LQFP100_x7)
3939
GPIO_TypeDef *ports[] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE};
4040
#elif defined(LQFP64)

0 commit comments

Comments
 (0)