├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── check-arduino.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Packages_Patches ├── Fab_SAM_Arduino │ └── hardware │ │ ├── hardware │ │ └── 1.6.18-alpha2 │ │ │ └── boards.txt │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.8.0 │ │ └── boards.txt │ │ └── 1.9.0 │ │ └── boards.txt ├── Maixduino │ └── hardware │ │ └── k210 │ │ ├── 0.3.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── Stream.h │ │ └── 0.3.11 │ │ └── cores │ │ └── arduino │ │ └── Stream.h ├── STM32 │ └── hardware │ │ └── stm32 │ │ ├── 1.9.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── NUCLEO_F767ZI │ │ │ └── variant.h │ │ │ └── NUCLEO_L053R8 │ │ │ └── variant.h │ │ ├── 2.0.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ ├── L052R(6-8)H_L053R(6-8)H │ │ │ └── variant_generic.h │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.1.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.2.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ └── 2.3.0 │ │ ├── system │ │ ├── STM32F4xx │ │ │ └── stm32f4xx_hal_conf_default.h │ │ └── STM32F7xx │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ ├── STM32F7xx │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ └── STM32L0xx │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ └── variant_generic.h ├── Seeeduino │ └── hardware │ │ ├── nrf52 │ │ └── 1.0.0 │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ └── platform.txt │ │ ├── rp2040 │ │ ├── 1.9.3 │ │ │ └── variants │ │ │ │ └── rpipico │ │ │ │ └── pins_arduino.h │ │ └── 2.7.2 │ │ │ ├── boards.txt │ │ │ └── variants │ │ │ └── Seeed_XIAO_RP2040 │ │ │ └── pins_arduino.h │ │ └── samd │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.9 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.8.3 │ │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.h │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── SparkFun │ └── hardware │ │ └── samd │ │ └── 1.8.3 │ │ └── cores │ │ ├── arduino │ │ ├── Print.cpp │ │ └── Print.h │ │ └── arduino51 │ │ ├── Print.cpp │ │ └── Print.h ├── adafruit │ └── hardware │ │ ├── nrf52 │ │ ├── 0.19.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.5 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.21.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.23.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.24.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.0.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.1.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.2.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ └── 1.3.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ ├── NINA_B112_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ ├── NINA_B302_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ └── sparkfun_nrf52840_mini │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ └── samd │ │ ├── 1.5.14 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.10 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.11 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.7.9 │ │ ├── cores │ │ └── arduino │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── arduino │ └── hardware │ │ ├── mbed_portenta │ │ ├── 2.4.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.5.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.6.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.7.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.8.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.1.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.3.0 │ │ │ └── portenta_post_install.sh │ │ └── 3.4.1 │ │ │ └── portenta_post_install.sh │ │ ├── sam │ │ └── 1.6.12 │ │ │ └── platform.txt │ │ └── samd │ │ ├── 1.8.10 │ │ └── platform.txt │ │ ├── 1.8.11 │ │ └── platform.txt │ │ ├── 1.8.12 │ │ └── platform.txt │ │ ├── 1.8.13 │ │ └── platform.txt │ │ ├── 1.8.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.8 │ │ ├── cores │ │ │ ├── Arduino.h │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ └── 1.8.9 │ │ ├── cores │ │ └── arduino │ │ │ └── Arduino.h │ │ └── platform.txt ├── hardware │ └── teensy │ │ └── avr │ │ ├── boards.txt │ │ └── cores │ │ ├── teensy │ │ ├── Stream.cpp │ │ └── Stream.h │ │ ├── teensy3 │ │ ├── Stream.cpp │ │ └── Stream.h │ │ └── teensy4 │ │ ├── Stream.cpp │ │ └── Stream.h ├── industrialshields │ └── hardware │ │ └── avr │ │ ├── 1.1.36 │ │ └── cores │ │ │ └── industrialshields │ │ │ └── Udp.h │ │ └── 1.1.37 │ │ └── cores │ │ └── industrialshields │ │ └── Udp.h ├── realtek │ └── hardware │ │ └── AmebaD │ │ ├── 3.0.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.0.8 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.0 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.1 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.2 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.3 │ │ └── cores │ │ │ └── ambd │ │ │ └── avr │ │ │ └── pgmspace.h │ │ └── 3.1.4 │ │ └── cores │ │ └── ambd │ │ └── avr │ │ └── pgmspace.h └── rp2040 │ └── hardware │ └── rp2040 │ ├── 1.2.1 │ └── platform.txt │ ├── 1.2.2 │ └── platform.txt │ ├── 1.3.0 │ └── platform.txt │ ├── 1.3.1 │ ├── cores │ │ └── rp2040 │ │ │ └── Arduino.h │ └── platform.txt │ └── 1.4.0 │ ├── cores │ └── rp2040 │ │ └── Arduino.h │ └── platform.txt ├── README.md ├── changelog.md ├── examples ├── AP_SimpleWebServer │ ├── AP_SimpleWebServer.ino │ └── defines.h ├── AdvancedWebServer │ ├── AdvancedWebServer.ino │ └── defines.h ├── HTTPClient │ ├── BasicAuthGet │ │ ├── BasicAuthGet.ino │ │ └── defines.h │ ├── CustomHeader │ │ ├── CustomHeader.ino │ │ └── defines.h │ ├── DweetGet │ │ ├── DweetGet.ino │ │ └── defines.h │ ├── DweetPost │ │ ├── DweetPost.ino │ │ └── defines.h │ ├── HueBlink │ │ ├── HueBlink.ino │ │ └── defines.h │ ├── PostWithHeaders │ │ ├── PostWithHeaders.ino │ │ └── defines.h │ ├── SimpleDelete │ │ ├── SimpleDelete.ino │ │ └── defines.h │ ├── SimpleGet │ │ ├── SimpleGet.ino │ │ └── defines.h │ ├── SimpleHTTPExample │ │ ├── SimpleHTTPExample.ino │ │ └── defines.h │ ├── SimplePost │ │ ├── SimplePost.ino │ │ └── defines.h │ ├── SimplePut │ │ ├── SimplePut.ino │ │ └── defines.h │ ├── SimpleWebSocket │ │ ├── SimpleWebSocket.ino │ │ └── defines.h │ └── node_test_server │ │ ├── getPostPutDelete.js │ │ └── package.json ├── HelloServer │ ├── HelloServer.ino │ └── defines.h ├── HelloServer2 │ ├── HelloServer2.ino │ └── defines.h ├── HttpBasicAuth │ ├── HttpBasicAuth.ino │ └── defines.h ├── MQTTClient_Auth │ ├── MQTTClient_Auth.ino │ └── defines.h ├── MQTTClient_Basic │ ├── MQTTClient_Basic.ino │ └── defines.h ├── MQTT_ThingStream │ ├── MQTT_ThingStream.ino │ └── defines.h ├── PostServer │ ├── PostServer.ino │ └── defines.h ├── ScanNetworks │ ├── ScanNetworks.ino │ └── defines.h ├── SimpleAuthentication │ ├── SimpleAuthentication.ino │ └── defines.h ├── UdpNTPClient │ ├── UdpNTPClient.ino │ └── defines.h ├── UdpSendReceive │ ├── UdpSendReceive.ino │ └── defines.h ├── WebClient │ ├── WebClient.ino │ └── defines.h ├── WebClientRepeating │ ├── WebClientRepeating.ino │ └── defines.h ├── WebServer │ ├── WebServer.ino │ └── defines.h ├── WiFiMulti │ ├── AdvancedWebServer_WiFiMulti │ │ ├── AdvancedWebServer_WiFiMulti.ino │ │ └── defines.h │ ├── MQTTClient_Auth_WiFiMulti │ │ ├── MQTTClient_Auth_WiFiMulti.ino │ │ └── defines.h │ ├── MQTTClient_Basic_WiFiMulti │ │ ├── MQTTClient_Basic_WiFiMulti.ino │ │ └── defines.h │ ├── MQTT_ThingStream_WiFiMulti │ │ ├── MQTT_ThingStream_WiFiMulti.ino │ │ └── defines.h │ ├── WebClientRepeating_WiFiMulti │ │ ├── WebClientRepeating_WiFiMulti.ino │ │ └── defines.h │ ├── WebClient_WiFiMulti │ │ ├── WebClient_WiFiMulti.ino │ │ └── defines.h │ ├── WebServer_WiFiMulti │ │ ├── WebServer_WiFiMulti.ino │ │ └── defines.h │ └── WiFiUdpNtpClient_WiFiMulti │ │ ├── WiFiUdpNtpClient_WiFiMulti.ino │ │ └── defines.h ├── WiFiUdpNtpClient │ ├── WiFiUdpNtpClient.ino │ └── defines.h └── multiFileProject │ ├── defines.h │ ├── multiFileProject.cpp │ ├── multiFileProject.h │ └── multiFileProject.ino ├── keywords.txt ├── library.json ├── library.properties ├── pics ├── AdvancedWebServer.png ├── AdvancedWebServer_ESP32_C3.png ├── AdvancedWebServer_ESP32_S3.png ├── AdvancedWebServer_NanoRP2040Connect.png ├── AdvancedWebServer_Portenta_H7.png ├── AdvancedWebServer_WiFiMulti_NanoRP2040Connect.png ├── AdvancedWebServer_WiFiMulti_RP2040W.png └── AdvancedWebServer_v1.0.6.png ├── platformio └── platformio.ini ├── src ├── Parsing-impl.h ├── Uri.h ├── WiFiHttpClient.h ├── WiFiWebServer-impl.h ├── WiFiWebServer.h ├── WiFiWebServer.hpp ├── WiFi_HTTPClient │ ├── WiFi_HttpClient.cpp │ ├── WiFi_HttpClient.h │ ├── WiFi_URLEncoder.cpp │ ├── WiFi_URLEncoder.h │ ├── WiFi_WebSocketClient.cpp │ └── WiFi_WebSocketClient.h ├── libb64 │ ├── base64.cpp │ ├── base64.h │ ├── cdecode.c │ ├── cdecode.h │ ├── cencode.c │ └── cencode.h └── utility │ ├── ESP_RequestHandlersImpl.h │ ├── RequestHandler.h │ ├── RequestHandlersImpl.h │ ├── RingBuffer.cpp │ ├── RingBuffer.h │ ├── WiFiDebug.h │ ├── esp_detail │ ├── mimetable.cpp │ └── mimetable.h │ └── mimetable.h └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.11/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Maixduino/hardware/k210/0.3.11/cores/arduino/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_F767ZI/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_F767ZI/variant.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_L053R8/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/1.9.0/variants/NUCLEO_L053R8/variant.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/variants/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/variants/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/variants/L052R(6-8)H_L053R(6-8)H/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/variants/L052R(6-8)H_L053R(6-8)H/variant_generic.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.0.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.0.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.1.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.1.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.1.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.1.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.2.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.2.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.2.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.2.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.2.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.2.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.2.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.2.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.3.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.3.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.3.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.3.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.3.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.3.0/variants/STM32F7xx/F765Z(G-I)T_F767Z(G-I)T_F777ZIT/variant_NUCLEO_F767ZI.h -------------------------------------------------------------------------------- /Packages_Patches/STM32/hardware/stm32/2.3.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/STM32/hardware/stm32/2.3.0/variants/STM32L0xx/L052R(6-8)T_L053R(6-8)T_L063R8T/variant_generic.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/nrf52/1.0.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/rp2040/1.9.3/variants/rpipico/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/rp2040/1.9.3/variants/rpipico/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/variants/Seeed_XIAO_RP2040/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/rp2040/2.7.2/variants/Seeed_XIAO_RP2040/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.22.1/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.23.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.24.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/sparkfun_nrf52840_mini/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/sparkfun_nrf52840_mini/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/sparkfun_nrf52840_mini/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.0.0/variants/sparkfun_nrf52840_mini/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/sparkfun_nrf52840_mini/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/sparkfun_nrf52840_mini/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/sparkfun_nrf52840_mini/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.1.0/variants/sparkfun_nrf52840_mini/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/sparkfun_nrf52840_mini/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/sparkfun_nrf52840_mini/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/sparkfun_nrf52840_mini/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.2.0/variants/sparkfun_nrf52840_mini/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/sparkfun_nrf52840_mini/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/sparkfun_nrf52840_mini/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/sparkfun_nrf52840_mini/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/nrf52/1.3.0/variants/sparkfun_nrf52840_mini/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/libraries/SocketWrapper/src/MbedUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/libraries/SocketWrapper/src/MbedUdp.cpp -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/libraries/SocketWrapper/src/MbedUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/libraries/SocketWrapper/src/MbedUdp.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.4.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/libraries/SocketWrapper/src/MbedUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/libraries/SocketWrapper/src/MbedUdp.cpp -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/libraries/SocketWrapper/src/MbedUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/libraries/SocketWrapper/src/MbedUdp.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.5.2/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/libraries/SocketWrapper/src/MbedUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/libraries/SocketWrapper/src/MbedUdp.cpp -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/libraries/SocketWrapper/src/MbedUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/libraries/SocketWrapper/src/MbedUdp.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.6.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.7.2/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/2.8.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.0.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/cores/arduino/mbed/connectivity/lwipstack/include/lwipstack/lwipopts.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.1.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.3.0/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.3.0/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/mbed_portenta/3.4.1/portenta_post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/mbed_portenta/3.4.1/portenta_post_install.sh -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/sam/1.6.12/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/sam/1.6.12/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy3/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.cpp -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/hardware/teensy/avr/cores/teensy4/Stream.h -------------------------------------------------------------------------------- /Packages_Patches/industrialshields/hardware/avr/1.1.36/cores/industrialshields/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/industrialshields/hardware/avr/1.1.36/cores/industrialshields/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/industrialshields/hardware/avr/1.1.37/cores/industrialshields/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/industrialshields/hardware/avr/1.1.37/cores/industrialshields/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.0.10/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.0.10/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.0.8/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.0.8/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.0/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.0/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.1/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.1/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.2/cores/arduino/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.2/cores/arduino/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.3/cores/ambd/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.3/cores/ambd/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/realtek/hardware/AmebaD/3.1.4/cores/ambd/avr/pgmspace.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.2.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.2.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.2.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.2.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.1/cores/rp2040/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.1/cores/rp2040/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.3.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.3.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.4.0/cores/rp2040/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/cores/rp2040/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/AP_SimpleWebServer/AP_SimpleWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/AP_SimpleWebServer/AP_SimpleWebServer.ino -------------------------------------------------------------------------------- /examples/AP_SimpleWebServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/AP_SimpleWebServer/defines.h -------------------------------------------------------------------------------- /examples/AdvancedWebServer/AdvancedWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/AdvancedWebServer/AdvancedWebServer.ino -------------------------------------------------------------------------------- /examples/AdvancedWebServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/AdvancedWebServer/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/BasicAuthGet/BasicAuthGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/BasicAuthGet/BasicAuthGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/BasicAuthGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/BasicAuthGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/CustomHeader/CustomHeader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/CustomHeader/CustomHeader.ino -------------------------------------------------------------------------------- /examples/HTTPClient/CustomHeader/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/CustomHeader/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/DweetGet/DweetGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/DweetGet/DweetGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/DweetGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/DweetGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/DweetPost/DweetPost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/DweetPost/DweetPost.ino -------------------------------------------------------------------------------- /examples/HTTPClient/DweetPost/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/DweetPost/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/HueBlink/HueBlink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/HueBlink/HueBlink.ino -------------------------------------------------------------------------------- /examples/HTTPClient/HueBlink/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/HueBlink/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/PostWithHeaders/PostWithHeaders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/PostWithHeaders/PostWithHeaders.ino -------------------------------------------------------------------------------- /examples/HTTPClient/PostWithHeaders/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/PostWithHeaders/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleDelete/SimpleDelete.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleDelete/SimpleDelete.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleDelete/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleDelete/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleGet/SimpleGet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleGet/SimpleGet.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleGet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleGet/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleHTTPExample/SimpleHTTPExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleHTTPExample/SimpleHTTPExample.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleHTTPExample/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleHTTPExample/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePost/SimplePost.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimplePost/SimplePost.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePost/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimplePost/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePut/SimplePut.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimplePut/SimplePut.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimplePut/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimplePut/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleWebSocket/SimpleWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleWebSocket/SimpleWebSocket.ino -------------------------------------------------------------------------------- /examples/HTTPClient/SimpleWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/SimpleWebSocket/defines.h -------------------------------------------------------------------------------- /examples/HTTPClient/node_test_server/getPostPutDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/node_test_server/getPostPutDelete.js -------------------------------------------------------------------------------- /examples/HTTPClient/node_test_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HTTPClient/node_test_server/package.json -------------------------------------------------------------------------------- /examples/HelloServer/HelloServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HelloServer/HelloServer.ino -------------------------------------------------------------------------------- /examples/HelloServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HelloServer/defines.h -------------------------------------------------------------------------------- /examples/HelloServer2/HelloServer2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HelloServer2/HelloServer2.ino -------------------------------------------------------------------------------- /examples/HelloServer2/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HelloServer2/defines.h -------------------------------------------------------------------------------- /examples/HttpBasicAuth/HttpBasicAuth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HttpBasicAuth/HttpBasicAuth.ino -------------------------------------------------------------------------------- /examples/HttpBasicAuth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/HttpBasicAuth/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_Auth/MQTTClient_Auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTTClient_Auth/MQTTClient_Auth.ino -------------------------------------------------------------------------------- /examples/MQTTClient_Auth/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTTClient_Auth/defines.h -------------------------------------------------------------------------------- /examples/MQTTClient_Basic/MQTTClient_Basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTTClient_Basic/MQTTClient_Basic.ino -------------------------------------------------------------------------------- /examples/MQTTClient_Basic/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTTClient_Basic/defines.h -------------------------------------------------------------------------------- /examples/MQTT_ThingStream/MQTT_ThingStream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTT_ThingStream/MQTT_ThingStream.ino -------------------------------------------------------------------------------- /examples/MQTT_ThingStream/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/MQTT_ThingStream/defines.h -------------------------------------------------------------------------------- /examples/PostServer/PostServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/PostServer/PostServer.ino -------------------------------------------------------------------------------- /examples/PostServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/PostServer/defines.h -------------------------------------------------------------------------------- /examples/ScanNetworks/ScanNetworks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/ScanNetworks/ScanNetworks.ino -------------------------------------------------------------------------------- /examples/ScanNetworks/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/ScanNetworks/defines.h -------------------------------------------------------------------------------- /examples/SimpleAuthentication/SimpleAuthentication.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/SimpleAuthentication/SimpleAuthentication.ino -------------------------------------------------------------------------------- /examples/SimpleAuthentication/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/SimpleAuthentication/defines.h -------------------------------------------------------------------------------- /examples/UdpNTPClient/UdpNTPClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/UdpNTPClient/UdpNTPClient.ino -------------------------------------------------------------------------------- /examples/UdpNTPClient/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/UdpNTPClient/defines.h -------------------------------------------------------------------------------- /examples/UdpSendReceive/UdpSendReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/UdpSendReceive/UdpSendReceive.ino -------------------------------------------------------------------------------- /examples/UdpSendReceive/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/UdpSendReceive/defines.h -------------------------------------------------------------------------------- /examples/WebClient/WebClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebClient/WebClient.ino -------------------------------------------------------------------------------- /examples/WebClient/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebClient/defines.h -------------------------------------------------------------------------------- /examples/WebClientRepeating/WebClientRepeating.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebClientRepeating/WebClientRepeating.ino -------------------------------------------------------------------------------- /examples/WebClientRepeating/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebClientRepeating/defines.h -------------------------------------------------------------------------------- /examples/WebServer/WebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebServer/WebServer.ino -------------------------------------------------------------------------------- /examples/WebServer/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WebServer/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/AdvancedWebServer_WiFiMulti/AdvancedWebServer_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/AdvancedWebServer_WiFiMulti/AdvancedWebServer_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/AdvancedWebServer_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/AdvancedWebServer_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTTClient_Auth_WiFiMulti/MQTTClient_Auth_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTTClient_Auth_WiFiMulti/MQTTClient_Auth_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTTClient_Auth_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTTClient_Auth_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTTClient_Basic_WiFiMulti/MQTTClient_Basic_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTTClient_Basic_WiFiMulti/MQTTClient_Basic_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTTClient_Basic_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTTClient_Basic_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTT_ThingStream_WiFiMulti/MQTT_ThingStream_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTT_ThingStream_WiFiMulti/MQTT_ThingStream_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/MQTT_ThingStream_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/MQTT_ThingStream_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/WebClientRepeating_WiFiMulti/WebClientRepeating_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebClientRepeating_WiFiMulti/WebClientRepeating_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/WebClientRepeating_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebClientRepeating_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/WebClient_WiFiMulti/WebClient_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebClient_WiFiMulti/WebClient_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/WebClient_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebClient_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/WebServer_WiFiMulti/WebServer_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebServer_WiFiMulti/WebServer_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/WebServer_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WebServer_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiMulti/WiFiUdpNtpClient_WiFiMulti/WiFiUdpNtpClient_WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WiFiUdpNtpClient_WiFiMulti/WiFiUdpNtpClient_WiFiMulti.ino -------------------------------------------------------------------------------- /examples/WiFiMulti/WiFiUdpNtpClient_WiFiMulti/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiMulti/WiFiUdpNtpClient_WiFiMulti/defines.h -------------------------------------------------------------------------------- /examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino -------------------------------------------------------------------------------- /examples/WiFiUdpNtpClient/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/WiFiUdpNtpClient/defines.h -------------------------------------------------------------------------------- /examples/multiFileProject/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/multiFileProject/defines.h -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/multiFileProject/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/multiFileProject/multiFileProject.h -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/examples/multiFileProject/multiFileProject.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/library.properties -------------------------------------------------------------------------------- /pics/AdvancedWebServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_ESP32_C3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_ESP32_C3.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_ESP32_S3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_ESP32_S3.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_NanoRP2040Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_NanoRP2040Connect.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_Portenta_H7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_Portenta_H7.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_WiFiMulti_NanoRP2040Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_WiFiMulti_NanoRP2040Connect.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_WiFiMulti_RP2040W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_WiFiMulti_RP2040W.png -------------------------------------------------------------------------------- /pics/AdvancedWebServer_v1.0.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/pics/AdvancedWebServer_v1.0.6.png -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/Parsing-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/Parsing-impl.h -------------------------------------------------------------------------------- /src/Uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/Uri.h -------------------------------------------------------------------------------- /src/WiFiHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFiHttpClient.h -------------------------------------------------------------------------------- /src/WiFiWebServer-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFiWebServer-impl.h -------------------------------------------------------------------------------- /src/WiFiWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFiWebServer.h -------------------------------------------------------------------------------- /src/WiFiWebServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFiWebServer.hpp -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_HttpClient.cpp -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_HttpClient.h -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_URLEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_URLEncoder.cpp -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_URLEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_URLEncoder.h -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_WebSocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_WebSocketClient.cpp -------------------------------------------------------------------------------- /src/WiFi_HTTPClient/WiFi_WebSocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/WiFi_HTTPClient/WiFi_WebSocketClient.h -------------------------------------------------------------------------------- /src/libb64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/base64.cpp -------------------------------------------------------------------------------- /src/libb64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/base64.h -------------------------------------------------------------------------------- /src/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/cdecode.c -------------------------------------------------------------------------------- /src/libb64/cdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/cdecode.h -------------------------------------------------------------------------------- /src/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/cencode.c -------------------------------------------------------------------------------- /src/libb64/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/libb64/cencode.h -------------------------------------------------------------------------------- /src/utility/ESP_RequestHandlersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/ESP_RequestHandlersImpl.h -------------------------------------------------------------------------------- /src/utility/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/RequestHandler.h -------------------------------------------------------------------------------- /src/utility/RequestHandlersImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/RequestHandlersImpl.h -------------------------------------------------------------------------------- /src/utility/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/RingBuffer.cpp -------------------------------------------------------------------------------- /src/utility/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/RingBuffer.h -------------------------------------------------------------------------------- /src/utility/WiFiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/WiFiDebug.h -------------------------------------------------------------------------------- /src/utility/esp_detail/mimetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/esp_detail/mimetable.cpp -------------------------------------------------------------------------------- /src/utility/esp_detail/mimetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/esp_detail/mimetable.h -------------------------------------------------------------------------------- /src/utility/mimetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/src/utility/mimetable.h -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/WiFiWebServer/HEAD/utils/restyle.sh --------------------------------------------------------------------------------