1. 14 2月, 2019 4 次提交
  2. 27 1月, 2019 1 次提交
  3. 23 1月, 2019 1 次提交
  4. 22 1月, 2019 9 次提交
  5. 14 1月, 2019 1 次提交
  6. 12 1月, 2019 1 次提交
  7. 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
  8. 10 1月, 2019 6 次提交
  9. 09 1月, 2019 2 次提交
    • D
      Added ESP32 FM DevKit - Fixed unused pins definitions. (#2288) · 452c27a7
      dragon-engineer 提交于
      * Added ESP32 FM DevKit
      
      * Added ESP32 FM DevKit variant
      
      Fixed pin definitions for unused pins.
      452c27a7
    • M
      Handle APB frequency change (#2250) · 2fd39b1a
      Me No Dev 提交于
      * Add APB change callbacks and move cpu code to own file
      
      * Properly set esp_timer and FreeRTOS tick dividers
      
      * Improve updated devisors
      
      * No need to update REF_TICK yet
      
      * Add initial handling for UART baud change
      
      * fix uartWriteBuf and uartDetectBaudrate
      
      * trigger callbacks even when APB did not change
      
      * toggle UART ISR on CPU change
      
      * add XTAL freq getter and add cpu freq validation
      
      * Support CPU frequency changes in I2C (#2287)
      
      **esp32-hal-i2c.c**
      * add callback for cpu frequency changes
      * adjust fifo thresholds based on cpu frequency and i2c bus frequency
      * reduce i2c bus frequency if differential is too small
      **Wire.h**
      * version to 1.1.0
      
      * Implement clock change for the other peripherals
      
      * remove bad CPU clock values from the menu
      
      * Add note to CPU freqs that support WiFi and BT
      2fd39b1a
  10. 07 1月, 2019 2 次提交
  11. 04 1月, 2019 1 次提交
  12. 02 1月, 2019 1 次提交
  13. 31 12月, 2018 1 次提交
  14. 29 12月, 2018 4 次提交
  15. 24 12月, 2018 3 次提交