1. 03 3月, 2019 3 次提交
  2. 20 2月, 2019 1 次提交
  3. 18 2月, 2019 2 次提交
  4. 15 2月, 2019 1 次提交
  5. 14 2月, 2019 13 次提交
  6. 27 1月, 2019 1 次提交
  7. 23 1月, 2019 1 次提交
  8. 22 1月, 2019 9 次提交
  9. 14 1月, 2019 1 次提交
  10. 12 1月, 2019 1 次提交
  11. 11 1月, 2019 3 次提交
    • M
      Update README.md · f7cf583b
      Me No Dev 提交于
      Add download counter for releases
      f7cf583b
    • M
      Update issue templates · e8a2c16c
      Me No Dev 提交于
      e8a2c16c
    • C
      I2C fix READ of zero bytes hardware hang (#2301) · 9a7946e6
      chuck todd 提交于
      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()`
      9a7946e6
  12. 10 1月, 2019 4 次提交