diff options
author | Damien George <damien.p.george@gmail.com> | 2015-08-03 00:05:16 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-08-03 00:14:48 +0100 |
commit | 0851751615580d02bd6f841e13651923f05fde59 (patch) | |
tree | 28b788def0d7a128b57512a923a84657d65d11be /stmhal/i2c.c | |
parent | 6f1c00869c761ff84b21939a057d7752e0c01be9 (diff) | |
download | micropython-0851751615580d02bd6f841e13651923f05fde59.tar.gz micropython-0851751615580d02bd6f841e13651923f05fde59.zip |
stmhal: Factor GPIO clock enable logic into mp_hal_gpio_clock_enable.
Extracted GPIO clock enable logic into mp_hal_gpio_clock_enable
and called from anyplace which might need to use GPIO functions
on ports other than A-D.
Thanks to Dave Hylands for the patch.
Diffstat (limited to 'stmhal/i2c.c')
-rw-r--r-- | stmhal/i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/i2c.c b/stmhal/i2c.c index 81fc33e8f2..59f3a4fe4b 100644 --- a/stmhal/i2c.c +++ b/stmhal/i2c.c @@ -196,6 +196,7 @@ void i2c_init(I2C_HandleTypeDef *i2c) { // init the GPIO lines for (uint i = 0; i < 2; i++) { + mp_hal_gpio_clock_enable(pins[i]->gpio); GPIO_InitStructure.Pin = pins[i]->pin_mask; HAL_GPIO_Init(pins[i]->gpio, &GPIO_InitStructure); } |