1. 23 9月, 2019 1 次提交
  2. 22 9月, 2019 3 次提交
  3. 21 9月, 2019 2 次提交
  4. 17 9月, 2019 2 次提交
  5. 13 9月, 2019 1 次提交
  6. 11 9月, 2019 4 次提交
  7. 09 9月, 2019 5 次提交
  8. 05 9月, 2019 4 次提交
  9. 01 9月, 2019 1 次提交
  10. 28 8月, 2019 2 次提交
  11. 27 8月, 2019 1 次提交
  12. 21 8月, 2019 4 次提交
  13. 20 8月, 2019 10 次提交
    • J
      Bugfix/http client (#2867) · f4acac4c
      Jeroen88 提交于
      * Fix persistance issue found, see ESP8266 issue #6152
      
      * Correcting the parsing of the header for HTTP1.0
      
      * Send 'Connection: Close' header in case of HTTP1.0
      
      * Let reuse connection depend on protocol used: HTTP1.0 or HTTP1.1
      
      * Fixed reuse, added null ptr checks, added check for _trainsportTraits in connect() in case _client was set null
      
      * Fix reuse connection issues, similar to ESP8266 PR #6176
      f4acac4c
    • R
      Ble notification/indication status and timeout (#2998) · 5137fc5c
      Roman Savrulin 提交于
      * add timed wait
      
      * Added Notification/Indication data and status callbacks
      
      * imply null-object pattern for BLE callback
      5137fc5c
    • R
      Flush UART RX queue too (#3009) · 03066e42
      Roman Savrulin 提交于
      03066e42
    • L
      ESP.getCpuFreqMHz fix (#3007) · cd5257ad
      lbernstone 提交于
      * ESP.getCpuFreqMHz was returning the CONFIG_ variable.  Now calls the getCpuFrequencyMhz function.
      
      * Changed the Esp function to uint32_t to match
      cd5257ad
    • R
      links http -> https (#3010) · ee6336a3
      Rotzbua 提交于
      more secure
      ee6336a3
    • D
      The progress callback is now correctly invoked with Update.write (#3024) · 61f71930
      ducalex 提交于
      The progress callback was only invoked with Update.writeStream before
      61f71930
    • L
      Cast TimerWakeup conversion factor as ULL (#3027) · ec40c4c9
      lbernstone 提交于
      ec40c4c9
    • B
      Fix BLE stop advertising not working (#3034) · 2bda4a96
      Bernd Giesecke 提交于
      BLEAdvertising::handleGAPEvent -> ESP_GAP_BLE_ADV_STOP_COMPLETE_EVT should NOT call start()!
      2bda4a96
    • A
      Add generic IP utilities (#3038) · 91b9fae1
      Ahmed Al-Qaidom 提交于
      * Add generic IP calculations
      
      Add:
      calculateNetworkID(IPAddress ip, IPAddress subnet) => Calculate the network id using the ip and subnet (e.g. 192.168.0.0)
      calculateBroadcast(IPAddress ip, IPAddress subnet) => Calculate the broadcast ip using the ip and subnet (e.g. 192.168.0.255)
      calculateSubnetCIDR(IPAddress subnetMask) => Calculate the subnet CIDR using the subnet (e.g. 24)
      
      Add:
      broadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
      networkID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
      subnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
      
      Add:
      broadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
      networkID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
      subnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
      
      Add:
      softAPBroadcastIP() => Retrieve the network id (e.g. 192.168.0.0)
      softAPNetwrokID() => Retrieve the broadcast IP (e.g. 192.168.0.255)
      softAPSubnetCIDR() => Retrieve the subnet CIDR (e.g. 24)
      91b9fae1
    • A
      Include stdint for uint16_t (#3069) · 2a1fde77
      A C SREEDHAR REDDY 提交于
      2a1fde77