Merge pull request #4801 from dhalbert/unlock-board-i2c-on-reset
unlock board.I2C() on reset
This commit is contained in:
commit
de89fc7011
@ -143,7 +143,9 @@ void reset_board_busses(void) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
// make sure I2C lock is not held over a soft reset
|
||||||
if (i2c_singleton != NULL) {
|
if (i2c_singleton != NULL) {
|
||||||
|
common_hal_busio_i2c_unlock(i2c_singleton);
|
||||||
if (!display_using_i2c) {
|
if (!display_using_i2c) {
|
||||||
common_hal_busio_i2c_deinit(i2c_singleton);
|
common_hal_busio_i2c_deinit(i2c_singleton);
|
||||||
i2c_singleton = NULL;
|
i2c_singleton = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user