1. 23 Feb, 2021 1 commit
  2. 22 Feb, 2021 5 commits
  3. 18 Feb, 2021 3 commits
  4. 17 Feb, 2021 1 commit
  5. 16 Feb, 2021 5 commits
  6. 15 Feb, 2021 4 commits
    • ushiboy's avatar
      Fixed a memory leak in BLE (issue #4753) (#4761) · e831680a
      ushiboy authored
      * Fixed crash on delete after disconnect
      
      * Fixed memory leak when getting characteristics
      
      * Removed guard
      Co-authored-by: default avatarushiboy <ushiboy.dev@gmail.com>
      e831680a
    • Szymon Zmilczak's avatar
      Added more inclusive CORS policy (#4767) · d9648738
      Szymon Zmilczak authored
      d9648738
    • Mitch Bradley's avatar
      Speed up upload by a factor of 17 (#4787) · 7e8993fc
      Mitch Bradley authored
      * Speed up upload by a factor of 17
      
      Uploads are very slow because of an unnecessary "client.connected()" check in _uploadReadByte().
      
      Here is what happens:
      client.connected() is called for every byte read.  WiFiClient::connected() calls recv(fd(), &dummy, 0, MSG_DONTWAIT); which takes a relatively long time, so the optimized path of returning a buffered byte via client.read() is effectively nullified.
      
      Removing the one line changed the upload speed for a 2 MB file (discarding the received data) from 22 KB/sec (before) to 367 KB/sec (after).
      
      The change is safe in the face of disconnects because client.read(), when it no longer has buffered data, calls (WiFiClient)  fillBuffer(), which calls recv(), so the disconnection will be detected in due course.
      
      * Move disconnect check into the timeout loop
      7e8993fc
    • Me No Dev's avatar
      Idf release/v3.3 d8082b7f3 · 15bae92a
      Me No Dev authored
      * Update IDF to d8082b7f3
      15bae92a
  7. 04 Feb, 2021 1 commit
  8. 03 Feb, 2021 2 commits
  9. 27 Jan, 2021 1 commit
  10. 21 Jan, 2021 4 commits
  11. 15 Jan, 2021 1 commit
  12. 14 Jan, 2021 1 commit
  13. 12 Jan, 2021 3 commits
  14. 11 Jan, 2021 8 commits