Tags: jweigelt/arduino-esp32
Tags
Update IDF to ebdcbe8c6 (espressif#2539) - ESP-Face to 2937054 - ESP32-Camera to 113629b
I2C fix READ of zero bytes hardware hang (espressif#2301) The i2c peripheral will hang if a READ request is issued with a zero data length. The peripheral drops into a continuous timeout interrupt response. The STOP command can not be set out to the I2C bus. The SLAVE device correctly ACK'd the address byte, with READ bit set, it has control of the SDA pin. The ESP32 send out the next SCL HIGH pulse but, since the SLAVE is in READ Mode, and the First bit it is sending happened to be a ZERO, the ESP32 cannot send the STOP. When it releases SDA during the SCL HIGH, the pin does not change state. The pin stays low because the SLAVE is outputing a LOW! The ESP32 drops into a perminent WAIT state waiting for SDA to go HIGH (the STOP). **esp32-hal-i2c.c** * add databuff length checks to `i2cRead()` and `i2cWrite()`
Update IDF to e931fe9 and add esp-face (espressif#2291) * Update IDF to e931fe9 and add esp-face * Fix PIO builds fail because of sketch size * Fix example build failing for Arduino
* merge only annotated tag messages into release notes (espressif#1683)
Added instructions for installation with boards manager (espressif#1630) * Added instructions for installation with boards manager (stolen directly from esp8266) * changed to production link instead of dev * Added to main README. Made mods to images as requested. * Added links for development package
PreviousNext