forked from espressif/arduino-esp32
-
Notifications
You must be signed in to change notification settings - Fork 23
Home
chuck todd edited this page Mar 19, 2018
·
7 revisions
This fork is dedicated to I2C communications improvement.
The current (18MAR2018) Main Branch of arduino-esp32 has rudimentary I2C support. The main branch uses a polling model to monitor the i2c hardware peripheral for status changes. It does not implement a interrupt service routine to respond to the hardware, so it is very very timing sensitive.
My fork is based on a queue driven interrupt model.