-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Closed
Labels
Description
On ESP32-S2 and latest build v1.17-231-g0892ebe09 (2021-12-14) from https://micropython.org/download/ESP32_S2_WROVER/
attempt to i2c_write with stop=False
cause restart:
import machine
>>> i = machine.I2C(0, scl=machine.Pin(9), sda=machine.Pin(8), freq=100000)
>>> i.scan()
[119]
>>> i.writeto(119, b'\xaa')
1
>>> i.writeto(119, b'\xaa', True)
1
>>> i.writeto(119, b'\xaa', False)
---- RESTARTED ----
same issue is with command: readfrom_mem
where is also used "repeat-start"