1. 31 Aug, 2022 2 commits
  2. 30 Aug, 2022 3 commits
  3. 29 Aug, 2022 4 commits
  4. 28 Aug, 2022 3 commits
  5. 27 Aug, 2022 2 commits
  6. 25 Aug, 2022 1 commit
  7. 23 Aug, 2022 2 commits
    • Earle F. Philhower, III's avatar
      Add WebServer, WebServerSecure, HTTPUpdateServer, HTTPUpdateServerSecure (#791) · 0edba2ee
      Earle F. Philhower, III authored
      * Add HTTP-parser lib to support ESP32 WebServer
      * Add WebServer from ESP32.  Only supports HTTP
      * Separate HTTP server from the network server
      Instead of managing the WiFiServer/WiFiServerSecure in the same object
      as the HTTP handling, split them into separate objects.  This lets
      HTTP and HTTPS servers work without templates or duplicating code.
      The HTTP block just gets a `WiFiClient*` and works with that to only
      do HTTP processing, while the upper object handles the appropriate
      server and client types.
      * Add HTTPS server
      * Clean up some THandlerFunction refs
      * Refactor into a template-ized WebServer/WebServerSecure
      * Add DNSServer examples which need WebServer
      * Fix CoreMutex infinite recursion crash
      Core could crash while Serial debugging was going on and prints were
      happening from LWIP/IRQ land and the main app.
      * Add HTTPUpdateServer(Secure)
      * Add MIME include, optimize WebServer::send(size,len)
      When send()ing a large buffer, the WebServer::send() call would
      actually convert that buffer into a String (i.e. duplicate it, and
      potential issues with embedded \0s in binary data).
      Make a simple override to send(size, len) to allow writing from the
      source buffer instead.
      * Fix WiFiClient::send(Stream), add FSBrowser example
      0edba2ee
    • NuclearPhoenix's avatar
      c501306c
  8. 22 Aug, 2022 4 commits
  9. 21 Aug, 2022 7 commits
  10. 20 Aug, 2022 3 commits
  11. 19 Aug, 2022 2 commits
  12. 18 Aug, 2022 1 commit
  13. 15 Aug, 2022 1 commit
  14. 12 Aug, 2022 3 commits
    • Earle F. Philhower, III's avatar
      Update version · e9478951
      Earle F. Philhower, III authored
      e9478951
    • Earle F. Philhower, III's avatar
      Add OTA.O to make p.io builds function (#755) · bb91d978
      Earle F. Philhower, III authored
      Partial #754
      bb91d978
    • Earle F. Philhower, III's avatar
      Add OTA update support (#711) · da86a894
      Earle F. Philhower, III authored
      Adds a 12K OTA stub 3rd stage bootloader, which reads new firmware
      from the LittleFS filesystem and flashes on reboot.
      
      By storing the OTA commands in a file in flash, it is possible to
      recover from a power failure during OTA programming.  On power
      resume, the OTA block will simply re-program from the beginning.
      
      Support cryptographic signed OTA updates, if desired.  Includes
      host-side signing logic via openssl.
      
      Add PicoOTA library which encapsulates the file format for
      the updater, including CRC32 checking.
      
      Add LEAmDNS support to allow Arduino IDE discovery
      
      Add ArduinoOTA class for IDE uploads
      
      Add MD5Builder class
      
      Add Updater class which supports writing and validating
      cryptographically signed binaries from any source (http,
      Ethernet, WiFi, Serial, etc.)
      
      Add documentation and readmes.
      da86a894
  15. 11 Aug, 2022 1 commit
  16. 10 Aug, 2022 1 commit