We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71b6cb commit 0ce5b2fCopy full SHA for 0ce5b2f
ports/esp32s2/common-hal/busio/I2C.c
@@ -112,6 +112,8 @@ void common_hal_busio_i2c_construct(busio_i2c_obj_t *self,
112
.mode = I2C_MODE_MASTER,
113
.sda_io_num = self->sda_pin->number,
114
.scl_io_num = self->scl_pin->number,
115
+ .sda_pullup_en = GPIO_PULLUP_DISABLE, /*!< Internal GPIO pull mode for I2C sda signal*/
116
+ .scl_pullup_en = GPIO_PULLUP_DISABLE, /*!< Internal GPIO pull mode for I2C scl signal*/
117
118
.master = {
119
.clk_speed = frequency,
0 commit comments