├── .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 ├── CONTRIBUTING.md ├── LICENSE ├── LibraryPatches ├── Ethernet │ └── src │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── Ethernet2 │ └── src │ │ ├── Ethernet2.cpp │ │ ├── Ethernet2.h │ │ ├── EthernetUdp2.cpp │ │ └── EthernetUdp2.h ├── Ethernet3 │ └── src │ │ ├── Ethernet3.cpp │ │ └── Ethernet3.h ├── EthernetLarge │ └── src │ │ ├── EthernetLarge.cpp │ │ ├── EthernetLarge.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── UIPEthernet-2.0.9 │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h ├── UIPEthernet │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h └── esp32 │ └── cores │ └── esp32 │ └── Server.h ├── Packages_Patches ├── Fab_SAM_Arduino │ └── hardware │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ └── 1.7.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.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 ├── ESP_AT_WiFi │ ├── AVR │ │ └── AVR_ESP_AT_DuckDNS_Client │ │ │ ├── AVR_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── RP2040 │ │ └── RP2040_ESP_AT_DuckDNS_Client │ │ │ ├── RP2040_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── SAM-DUE │ │ └── SAM-DUE_ESP_AT_DuckDNS_Client │ │ │ ├── SAM-DUE_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── SAMD │ │ └── SAMD_ESP_AT_DuckDNS_Client │ │ │ ├── SAMD_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── STM32 │ │ └── STM32_ESP_AT_DuckDNS_Client │ │ │ ├── STM32_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── Teensy │ │ └── Teensy_ESP_AT_DuckDNS_Client │ │ │ ├── Teensy_ESP_AT_DuckDNS_Client.ino │ │ │ ├── defines.h │ │ │ └── wifi_credentials.h │ ├── megaAVR │ │ └── megaAVR_ESP_AT_DuckDNS_Client │ │ │ ├── defines.h │ │ │ ├── megaAVR_ESP_AT_DuckDNS_Client.ino │ │ │ └── wifi_credentials.h │ └── nRF52 │ │ └── nRF52_ESP_AT_DuckDNS_Client │ │ ├── defines.h │ │ ├── nRF52_ESP_AT_DuckDNS_Client.ino │ │ └── wifi_credentials.h ├── Ethernet │ ├── AVR │ │ └── AVR_Ethernet_DuckDNS_Client │ │ │ ├── AVR_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── Portenta_H7 │ │ └── Portenta_H7_Ethernet_DuckDNS_Client │ │ │ ├── Portenta_H7_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── RP2040 │ │ └── RP2040_Ethernet_DuckDNS_Client │ │ │ ├── RP2040_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── SAM-DUE │ │ └── SAM-DUE_Ethernet_DuckDNS_Client │ │ │ ├── SAM-DUE_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── SAMD │ │ └── SAMD_Ethernet_DuckDNS_Client │ │ │ ├── SAMD_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── STM32 │ │ └── STM32_Ethernet_DuckDNS_Client │ │ │ ├── STM32_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── Teensy │ │ └── Teensy_Ethernet_DuckDNS_Client │ │ │ ├── Teensy_Ethernet_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── WT32_ETH01 │ │ └── WT32_ETH01_DuckDNS_Client │ │ │ ├── WT32_ETH01_DuckDNS_Client.ino │ │ │ └── defines.h │ ├── megaAVR │ │ └── megaAVR_Ethernet_DuckDNS_Client │ │ │ ├── defines.h │ │ │ └── megaAVR_Ethernet_DuckDNS_Client.ino │ ├── multiFileProject │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ ├── multiFileProject.ino │ │ └── wifi_credentials.h │ └── nRF52 │ │ └── nRF52_Ethernet_DuckDNS_Client │ │ ├── defines.h │ │ └── nRF52_Ethernet_DuckDNS_Client.ino ├── Generic │ ├── DuckDNS_Client │ │ ├── DuckDNS_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── DynDNS_Client │ │ ├── DynDNS_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── Dynu_Client │ │ ├── Dynu_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── No-ip_Client │ │ ├── No-ip_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── OVH_Client │ │ ├── OVH_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── afraid-org_Client │ │ ├── afraid-org_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── all-inkl_Client │ │ ├── all-inkl_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── dyndns-it_Client │ │ ├── defines.h │ │ ├── dyndns-it_Client.ino │ │ └── wifi_credentials.h │ ├── enom_Client │ │ ├── defines.h │ │ ├── enom_Client.ino │ │ └── wifi_credentials.h │ ├── freemyip_Client │ │ ├── defines.h │ │ ├── freemyip_Client.ino │ │ └── wifi_credentials.h │ ├── selfhost-de_Client │ │ ├── defines.h │ │ ├── selfhost-de_Client.ino │ │ └── wifi_credentials.h │ └── strato_Client │ │ ├── defines.h │ │ ├── strato_Client.ino │ │ └── wifi_credentials.h ├── WiFi │ └── Portenta_H7 │ │ └── Portenta_H7_DuckDNS_Client │ │ ├── Portenta_H7_DuckDNS_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h └── WiFiNINA │ ├── SAMD │ └── SAMD_WiFiNINA_DuckDNS_Client │ │ ├── SAMD_WiFiNINA_DuckDNS_Client.ino │ │ ├── defines.h │ │ └── wifi_credentials.h │ ├── megaAVR │ └── megaAVR_WiFiNINA_DuckDNS_Client │ │ ├── defines.h │ │ ├── megaAVR_WiFiNINA_DuckDNS_Client.ino │ │ └── wifi_credentials.h │ └── nRF52 │ └── nRF52_WiFiNINA_DuckDNS_Client │ ├── defines.h │ ├── nRF52_WiFiNINA_DuckDNS_Client.ino │ └── wifi_credentials.h ├── keywords.txt ├── library.json ├── library.properties ├── pics └── Portenta_Vision.jpg ├── platformio └── platformio.ini └── src ├── DDNS_Generic.h ├── DDNS_Generic.hpp ├── DDNS_Generic_Debug.h ├── DDNS_Generic_Impl.h ├── HTTP_ResponseParser.h └── HTTP_ResponseParser_Impl.h /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LICENSE -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/esp32/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/LibraryPatches/esp32/cores/esp32/Server.h -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/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/DDNS_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/Packages_Patches/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/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/DDNS_Generic/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/AVR_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/AVR_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/AVR/AVR_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/RP2040_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/RP2040_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/RP2040/RP2040_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/SAM-DUE_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/SAM-DUE_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAM-DUE/SAM-DUE_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/SAMD_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/SAMD_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/SAMD/SAMD_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/STM32_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/STM32_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/STM32/STM32_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/Teensy_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/Teensy_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/Teensy/Teensy_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/megaAVR_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/megaAVR_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/megaAVR/megaAVR_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/nRF52_ESP_AT_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/nRF52_ESP_AT_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/ESP_AT_WiFi/nRF52/nRF52_ESP_AT_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Ethernet/AVR/AVR_Ethernet_DuckDNS_Client/AVR_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/AVR/AVR_Ethernet_DuckDNS_Client/AVR_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/AVR/AVR_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/AVR/AVR_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Portenta_H7/Portenta_H7_Ethernet_DuckDNS_Client/Portenta_H7_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/Portenta_H7/Portenta_H7_Ethernet_DuckDNS_Client/Portenta_H7_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/Portenta_H7/Portenta_H7_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/Portenta_H7/Portenta_H7_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/RP2040/RP2040_Ethernet_DuckDNS_Client/RP2040_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/RP2040/RP2040_Ethernet_DuckDNS_Client/RP2040_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/RP2040/RP2040_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/RP2040/RP2040_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/SAM-DUE/SAM-DUE_Ethernet_DuckDNS_Client/SAM-DUE_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/SAM-DUE/SAM-DUE_Ethernet_DuckDNS_Client/SAM-DUE_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/SAM-DUE/SAM-DUE_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/SAM-DUE/SAM-DUE_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/SAMD/SAMD_Ethernet_DuckDNS_Client/SAMD_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/SAMD/SAMD_Ethernet_DuckDNS_Client/SAMD_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/SAMD/SAMD_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/SAMD/SAMD_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/STM32/STM32_Ethernet_DuckDNS_Client/STM32_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/STM32/STM32_Ethernet_DuckDNS_Client/STM32_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/STM32/STM32_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/STM32/STM32_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Teensy/Teensy_Ethernet_DuckDNS_Client/Teensy_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/Teensy/Teensy_Ethernet_DuckDNS_Client/Teensy_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/Teensy/Teensy_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/Teensy/Teensy_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/WT32_ETH01/WT32_ETH01_DuckDNS_Client/WT32_ETH01_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/WT32_ETH01/WT32_ETH01_DuckDNS_Client/WT32_ETH01_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/WT32_ETH01/WT32_ETH01_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/WT32_ETH01/WT32_ETH01_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/megaAVR/megaAVR_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/megaAVR/megaAVR_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/megaAVR/megaAVR_Ethernet_DuckDNS_Client/megaAVR_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/megaAVR/megaAVR_Ethernet_DuckDNS_Client/megaAVR_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/multiFileProject/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/multiFileProject/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/multiFileProject/multiFileProject.h -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject/multiFileProject.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/multiFileProject/multiFileProject.ino -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/multiFileProject/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Ethernet/nRF52/nRF52_Ethernet_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/nRF52/nRF52_Ethernet_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/nRF52/nRF52_Ethernet_DuckDNS_Client/nRF52_Ethernet_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Ethernet/nRF52/nRF52_Ethernet_DuckDNS_Client/nRF52_Ethernet_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Generic/DuckDNS_Client/DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DuckDNS_Client/DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/Generic/DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/DynDNS_Client/DynDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DynDNS_Client/DynDNS_Client.ino -------------------------------------------------------------------------------- /examples/Generic/DynDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DynDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/DynDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/DynDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/Dynu_Client/Dynu_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/Dynu_Client/Dynu_Client.ino -------------------------------------------------------------------------------- /examples/Generic/Dynu_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/Dynu_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/Dynu_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/Dynu_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/No-ip_Client/No-ip_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/No-ip_Client/No-ip_Client.ino -------------------------------------------------------------------------------- /examples/Generic/No-ip_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/No-ip_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/No-ip_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/No-ip_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/OVH_Client/OVH_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/OVH_Client/OVH_Client.ino -------------------------------------------------------------------------------- /examples/Generic/OVH_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/OVH_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/OVH_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/OVH_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/afraid-org_Client/afraid-org_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/afraid-org_Client/afraid-org_Client.ino -------------------------------------------------------------------------------- /examples/Generic/afraid-org_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/afraid-org_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/afraid-org_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/afraid-org_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/all-inkl_Client/all-inkl_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/all-inkl_Client/all-inkl_Client.ino -------------------------------------------------------------------------------- /examples/Generic/all-inkl_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/all-inkl_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/all-inkl_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/all-inkl_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/dyndns-it_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/dyndns-it_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/dyndns-it_Client/dyndns-it_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/dyndns-it_Client/dyndns-it_Client.ino -------------------------------------------------------------------------------- /examples/Generic/dyndns-it_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/dyndns-it_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/enom_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/enom_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/enom_Client/enom_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/enom_Client/enom_Client.ino -------------------------------------------------------------------------------- /examples/Generic/enom_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/enom_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/freemyip_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/freemyip_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/freemyip_Client/freemyip_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/freemyip_Client/freemyip_Client.ino -------------------------------------------------------------------------------- /examples/Generic/freemyip_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/freemyip_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/selfhost-de_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/selfhost-de_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/selfhost-de_Client/selfhost-de_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/selfhost-de_Client/selfhost-de_Client.ino -------------------------------------------------------------------------------- /examples/Generic/selfhost-de_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/selfhost-de_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/Generic/strato_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/strato_Client/defines.h -------------------------------------------------------------------------------- /examples/Generic/strato_Client/strato_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/strato_Client/strato_Client.ino -------------------------------------------------------------------------------- /examples/Generic/strato_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/Generic/strato_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/Portenta_H7_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/Portenta_H7_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFi/Portenta_H7/Portenta_H7_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/SAMD_WiFiNINA_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/SAMD_WiFiNINA_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/SAMD/SAMD_WiFiNINA_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/megaAVR_WiFiNINA_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/megaAVR_WiFiNINA_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/megaAVR/megaAVR_WiFiNINA_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/nRF52_WiFiNINA_DuckDNS_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/nRF52_WiFiNINA_DuckDNS_Client.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/wifi_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/examples/WiFiNINA/nRF52/nRF52_WiFiNINA_DuckDNS_Client/wifi_credentials.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/library.properties -------------------------------------------------------------------------------- /pics/Portenta_Vision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/pics/Portenta_Vision.jpg -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/DDNS_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/DDNS_Generic.h -------------------------------------------------------------------------------- /src/DDNS_Generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/DDNS_Generic.hpp -------------------------------------------------------------------------------- /src/DDNS_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/DDNS_Generic_Debug.h -------------------------------------------------------------------------------- /src/DDNS_Generic_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/DDNS_Generic_Impl.h -------------------------------------------------------------------------------- /src/HTTP_ResponseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/HTTP_ResponseParser.h -------------------------------------------------------------------------------- /src/HTTP_ResponseParser_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/DDNS_Generic/HEAD/src/HTTP_ResponseParser_Impl.h --------------------------------------------------------------------------------