1. 27 Aug, 2022 1 commit
  2. 25 Aug, 2022 1 commit
  3. 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
  4. 22 Aug, 2022 4 commits
  5. 21 Aug, 2022 7 commits
  6. 20 Aug, 2022 3 commits
  7. 19 Aug, 2022 2 commits
  8. 18 Aug, 2022 1 commit
  9. 15 Aug, 2022 1 commit
  10. 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
  11. 11 Aug, 2022 1 commit
  12. 10 Aug, 2022 2 commits
  13. 09 Aug, 2022 1 commit
  14. 08 Aug, 2022 2 commits
  15. 06 Aug, 2022 1 commit
  16. 30 Jul, 2022 2 commits
    • Earle F. Philhower, III's avatar
      Stop random crashes while writing to flash (#730) · 005cba3a
      Earle F. Philhower, III authored
      FreeRTOS SMP was updated to:
      a) Move ths SYSTICK handler, which cannot be disabled and can fire
         even with IRQs disabled, to RAM
      b) Add a flag from the core to the SYSTICK handler to hold off on
         any PendSV (task switch) calls while we are doing the idleOtherCore.
      
      The core now sets this flag, _holdPendSV, and adds add'l FreeRTOS SMP
      calls to really, really tell the OS we can't, don't, and better not
      be swapped out while writing to flash.
      
      Fixes #719
      005cba3a
    • Earle F. Philhower, III's avatar
      Increase LWIP MEM_SIZE to > TCP_SND_BUF (#731) · bb029cc2
      Earle F. Philhower, III authored
      The send buffers are set to 8 * MSS = ~11.5K.  MEM_SIZE is now set to
      be larger than that, 16K, in order to help avoid having tcp_write fail
      with ENOMEM.  The attempt to use a smaller size is still included, which
      will allow a tcp_write of up to 16 * 16K = 256K, i.e. all of memory.
      
      Fixes #725
      bb029cc2
  17. 29 Jul, 2022 2 commits
  18. 28 Jul, 2022 2 commits
  19. 27 Jul, 2022 1 commit
    • Pontus Oldberg's avatar
      Added to possibility to have extra compiler directives for a board. (#713) · e6e87fd3
      Pontus Oldberg authored
      * Adds support for Challenger RP2040 WiFi boards
      
      * Added Challenger board to makeboards build script
      
      * Adds new challenger board with LTE modem.
      
      * Updated after getting approved PID from Raspberry Pi
      
      * Add support for reverse numbering of analog pins.
      
      * Added minimal HW support for onboard WiFi modem.
      
      * Added challenger-nb-rp2040-wifi and RPICO32 module.
      
      * Updated PID for RPICO32
      
      * Added a simple support class for challenger LTE boards
      
      * Update ChallengerLTE.cpp
      
      Fixed spelling error
      
      * Adds option for setting USB max power in makeboards.py
      
      * Added new board Challenger RP2040 LoRa
      
      * Added new lora board to readme.
      
      * Added missing SERIAL2 and LoRa module GIO pins.
      
      * Added support for enabling UART CTS and RTS pins.
      
      * Updated boards.txt after merge conflict of makeboards.py
      
      * Fixed incorrect indention
      
      * Fixed PR comments
      
      * Add new Challenger RP2040 WiFi/BLE board (https://ilabs.se/challenger-rp2040-wifi-ble-datasheet)
      
      * * Updated PID for WiFi/BLE board
      * Added abstraction pins for both versions of wifi modules
      * Added support for replacing support class serial port.
      * Added support for retrieving support class serial port.
      
      * Fixed spelling errors.
      
      * Updated helper class for Challenger NB board.
      
      * Added Challenger sdrtc and subghz boards.
      
      * Updated readme.
      
      * Re ran makeboards to generate new index.
      
      * Added to possibility to have extra compiler directives for a board.
      
      * Added extra compiler options to JSON generation.
      
      * Allows having a list of extra macros to define
      
      * Fixed incorrect USB PID for Challenger NB board.
      
      * Added board initialization for all wifi boards.
      Co-authored-by: default avatarEarle F. Philhower, III <earlephilhower@yahoo.com>
      e6e87fd3
  20. 24 Jul, 2022 1 commit