1. 07 12月, 2018 3 次提交
  2. 05 12月, 2018 1 次提交
  3. 03 12月, 2018 5 次提交
    • T
      WiFiClientSecure: add support for PSK (pre-shared key) ciphers (#2133) · af7e489f
      Thorsten von Eicken 提交于
      * WiFiClientSecure: add support for PSK (pre-shared key) ciphers
      
      * add example for WiFiClientSecure PSK
      
      * WiFiClientSecure: added README
      af7e489f
    • L
      removing log (#2140) · 5cfff190
      Luc 提交于
      * Use right function for BSSID
      
      * removing log
      5cfff190
    • C
      I2C ReSTART returns Success (#2141) · 7a332864
      chuck todd 提交于
      * 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
    • V
      bugfix lopy/pins_arduino.h (#2135) · 8aa6e2e1
      Verkehrsrot 提交于
      Correction of Pin A14 that was double defined.
      8aa6e2e1
    • A
      Fixed Arduino SPI/Ethernet compile issue as described in issue #1623 (#2136) · b5f31701
      Arjan Filius 提交于
      * #1623, implementing suggested change
      
      Splitted suggested fix issue #1623 in a header and source part. Dit not completely dive into the code.
      Giving data twice as parameter feels wrong, but it compiles, and i can succesfully use the W5500 with SPI with this fix.
      Doesn't compile without.
      
      * #1623, implementing suggested change SPI.h/cpp
      
      Splitted suggested fix issue #1623 in a header and source part. Dit not completely dive into the code.
      Giving data twice as parameter feels wrong, but it compiles, and i can succesfully use the W5500 with SPI with this fix.
      Doesn't compile without.
      b5f31701
  4. 01 12月, 2018 2 次提交
  5. 29 11月, 2018 1 次提交
    • L
      Clean warnings when all warning enabled (#2112) · ce340faf
      Luc 提交于
      * Clean warnings when all warning enabled
      
      Not used variables / functions due to debug log
      
      Dual define with different values :
      cores\esp32/binary.h
      #define B110 6
      #define B1000000 64
      
      tools/sdk/include/newlib/sys/termios.h
      #define B110        3
      #define B1000000   23
      
      Local variable returned in WiFiclient Secure
      
      * change due to deprecated function
      
      * Update with proper variable and label
      
      * Update esp32-hal-i2c.c
      
      * Apply changes requested
      
      * Fix warnings due to #define conflict thanks @atanisoft
      ce340faf
  6. 28 11月, 2018 13 次提交
  7. 27 11月, 2018 6 次提交
  8. 20 11月, 2018 9 次提交