1. 06 Jan, 2019 1 commit
  2. 04 Jan, 2019 1 commit
  3. 02 Jan, 2019 1 commit
  4. 31 Dec, 2018 1 commit
  5. 28 Dec, 2018 4 commits
  6. 24 Dec, 2018 2 commits
  7. 23 Dec, 2018 2 commits
  8. 20 Dec, 2018 2 commits
    • chuck todd's avatar
      Support CPU frequency changes (#2222) · 310e78e6
      chuck todd authored
      The I2C hardware has limitations on min and max bus frequency directly related to CPU frequency, bus speed cannot be greater than 1/100 CPU clock, nor less than CPU clock / 8192.
      310e78e6
    • Me No Dev's avatar
      CPU and APB Frequency support (#2220) · c827bb41
      Me No Dev authored
      * Add support to HAL for APB frequencies different than 80MHz
      
      * Add support for CPU frequencies in the IDE board menu
      
      * Switch to fast set_config
      
      * Add method to uart so debug can be reassigned after apb frequency switch
      
      * Return real APB frequency
      c827bb41
  9. 19 Dec, 2018 1 commit
  10. 18 Dec, 2018 3 commits
  11. 17 Dec, 2018 1 commit
  12. 16 Dec, 2018 6 commits
  13. 15 Dec, 2018 4 commits
  14. 11 Dec, 2018 1 commit
  15. 10 Dec, 2018 1 commit
  16. 06 Dec, 2018 5 commits
  17. 04 Dec, 2018 1 commit
  18. 03 Dec, 2018 3 commits
    • Thorsten von Eicken's avatar
      WiFiClientSecure: add support for PSK (pre-shared key) ciphers (#2133) · af7e489f
      Thorsten von Eicken authored
      * WiFiClientSecure: add support for PSK (pre-shared key) ciphers
      
      * add example for WiFiClientSecure PSK
      
      * WiFiClientSecure: added README
      af7e489f
    • Luc's avatar
      removing log (#2140) · 5cfff190
      Luc authored
      * Use right function for BSSID
      
      * removing log
      5cfff190
    • chuck todd's avatar
      I2C ReSTART returns Success (#2141) · 7a332864
      chuck todd authored
      * Don't Return I2C_ERROR_CONTINUE on ReSTART
      
      ReSTART operations on the ESP32 have to be handled differently than on AVR chips, so ReSTART operations(`Wire.endTransmission(false), Wire.requestFrom(id,size,false);` are queued until a STOP is send (`Wire.endTransmission(TRUE), Wire.endTransmission(), Wire.requestFrom(id,size), Wire.requestFrom(id,size,TRUE)). To indicate the queuing I had used `I2C_ERROR_CONTINUE`, this caused compatibility issues with the existing Arduino I2C Code base. So, back to Lying to the public(for their own good of course) about success!  This update just returns `I2C_ERROR_OK` on ReSTART commands.
      
      * add comments
      
      add comments
      
      * Change Return error for ReSTART operation to I2C_ERROR_OK
      
      This change restores compatibility with pre-existing Arduino Libraries.  The ReSTART queuing operations are hidden behind the scenes.  Wire.endTransmission(id,len,FALSE); will know return I2C_ERROR_OK instead of I2C_ERROR_CONTINUE, Wire.lastError() will return the true condition of I2C_ERROR_CONTINUE.
      7a332864