We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 167c86e + 36625cd commit 1d691e5Copy full SHA for 1d691e5
2 files changed
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## 2.0.2 (2024-10-02)
2
+
3
+## Bug Fixes
4
5
+- fix iic errors
6
7
## 2.0.1 (2024-08-05)
8
9
## Bug Fixes
project/stm32f407/interface/src/iic.c
@@ -72,7 +72,7 @@ uint8_t iic_init(void)
72
73
/* iic gpio init */
74
GPIO_Initure.Pin = GPIO_PIN_8 | GPIO_PIN_9;
75
- GPIO_Initure.Mode = GPIO_MODE_OUTPUT_PP;
+ GPIO_Initure.Mode = GPIO_MODE_OUTPUT_OD;
76
GPIO_Initure.Pull = GPIO_PULLUP;
77
GPIO_Initure.Speed = GPIO_SPEED_FREQ_HIGH;
78
HAL_GPIO_Init(GPIOB, &GPIO_Initure);
0 commit comments