tag:github.com,2008:https://github.com/RyujiSamejima/arduino-esp32/releases Tags from arduino-esp32 2019-10-02T11:45:42Z tag:github.com,2008:Repository/230928929/1.0.4 2019-10-02T11:45:42Z 1.0.4: Wait for client.available() to prevent ESP32 crashes (#3154) <p>Wait for client.available() to prevent ESP32 crashes (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/3154">espressif#3154</a>)</p> <p>* Wait for client.available() to prevent ESP32 crashes</p> <p>* Removed user-specific SSID &amp; passphrase</p> paynterf tag:github.com,2008:Repository/230928929/1.0.4-rc1 2019-10-01T08:54:21Z 1.0.4-rc1: Fix BLEUUID toString (#3289) <p>Fix BLEUUID toString (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/3289">espressif#3289</a>)</p> <p>uuid16 is Missing first 4 characters. <br />uuid is Missing last 2 characters.</p> tanakamasayuki tag:github.com,2008:Repository/230928929/1.0.3 2019-09-12T22:19:53Z 1.0.3: Fix Camera Example (#3202) <p>Fix Camera Example (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/3202">espressif#3202</a>)</p> <p>* Update app_httpd.cpp</p> <p>* Stop LWIP from using PSRAM and enable OV7725</p> me-no-dev tag:github.com,2008:Repository/230928929/1.0.3-rc3 2019-09-05T09:30:43Z 1.0.3-rc3: Add support for 160MHz rated CPUs (#3135) <p>Add support for 160MHz rated CPUs (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/3135">espressif#3135</a>)</p> <p>Some ESP32 chips are rated only to 160MHz. This change adds support for them and does not allow frequency to be switched to 240MHz</p> me-no-dev tag:github.com,2008:Repository/230928929/1.0.3-rc2 2019-08-20T18:11:00Z 1.0.3-rc2 me-no-dev tag:github.com,2008:Repository/230928929/1.0.3-rc1 2019-05-12T15:52:23Z 1.0.3-rc1: Update IDF to v3.2 977854975 (#2771) <p>Update IDF to v3.2 977854975 (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/2771">espressif#2771</a>)</p> <p>* Update IDF to v3.2 977854975</p> <p>* Update app_httpd.cpp</p> me-no-dev tag:github.com,2008:Repository/230928929/1.0.2 2019-04-16T01:08:50Z 1.0.2 me-no-dev tag:github.com,2008:Repository/230928929/1.0.2-rc2 2019-04-12T15:49:44Z 1.0.2-rc2: Fix LEDC channels above 8 not properly clearing <p>Fix LEDC channels above 8 not properly clearing</p> <p><span class="issue-keyword tooltipped tooltipped-se">Fixes</span>: <a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/issues/2660">espressif#2660</a></p> me-no-dev tag:github.com,2008:Repository/230928929/1.0.2-rc1 2019-03-03T16:19:11Z 1.0.2-rc1: Update IDF to ebdcbe8c6 (#2539) <p>Update IDF to ebdcbe8c6 (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/2539">espressif#2539</a>)</p> <p>- ESP-Face to 2937054 <br />- ESP32-Camera to 113629b</p> me-no-dev tag:github.com,2008:Repository/230928929/1.0.1 2019-01-10T20:37:13Z 1.0.1: I2C fix READ of zero bytes hardware hang (#2301) <p>I2C fix READ of zero bytes hardware hang (<a class="issue-link js-issue-link" href="https://github.com/espressif/arduino-esp32/pull/2301">espressif#2301</a>)</p> <p>The i2c peripheral will hang if a READ request is issued with a zero data length. The peripheral <br />drops into a continuous timeout interrupt response. The STOP command can not be set out to the I2C <br />bus. The SLAVE device correctly ACK'd the address byte, with READ bit set, it has control of the SDA <br /> pin. The ESP32 send out the next SCL HIGH pulse but, since the SLAVE is in READ Mode, and the First <br />bit it is sending happened to be a ZERO, the ESP32 cannot send the STOP. When it releases SDA during <br />the SCL HIGH, the pin does not change state. The pin stays low because the SLAVE is outputing a LOW! <br />The ESP32 drops into a perminent WAIT state waiting for SDA to go HIGH (the STOP).</p> <p>**esp32-hal-i2c.c** <br />* add databuff length checks to `i2cRead()` and `i2cWrite()`</p> stickbreaker