├── .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 │ └── stale.yml ├── .gitignore ├── 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 │ │ ├── hardware │ │ └── 1.6.18-alpha2 │ │ │ └── boards.txt │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.8.0 │ │ └── boards.txt │ │ └── 1.9.0 │ │ └── boards.txt ├── Maixduino │ └── hardware │ │ └── k210 │ │ ├── 0.3.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── Stream.h │ │ └── 0.3.11 │ │ └── cores │ │ └── arduino │ │ └── Stream.h ├── STM32 │ └── hardware │ │ └── stm32 │ │ ├── 1.9.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── NUCLEO_F767ZI │ │ │ └── variant.h │ │ │ └── NUCLEO_L053R8 │ │ │ └── variant.h │ │ ├── 2.0.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ ├── L052R(6-8)H_L053R(6-8)H │ │ │ └── variant_generic.h │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.1.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.2.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ └── 2.3.0 │ │ ├── system │ │ ├── STM32F4xx │ │ │ └── stm32f4xx_hal_conf_default.h │ │ └── STM32F7xx │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ ├── STM32F7xx │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ └── STM32L0xx │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ └── variant_generic.h ├── Seeeduino │ └── hardware │ │ ├── nrf52 │ │ └── 1.0.0 │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ └── platform.txt │ │ ├── rp2040 │ │ ├── 1.9.3 │ │ │ └── variants │ │ │ │ └── rpipico │ │ │ │ └── pins_arduino.h │ │ └── 2.7.2 │ │ │ ├── boards.txt │ │ │ └── variants │ │ │ └── Seeed_XIAO_RP2040 │ │ │ └── pins_arduino.h │ │ └── samd │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.9 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.8.3 │ │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.h │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── SparkFun │ └── hardware │ │ └── samd │ │ └── 1.8.3 │ │ └── cores │ │ ├── arduino │ │ ├── Print.cpp │ │ └── Print.h │ │ └── arduino51 │ │ ├── Print.cpp │ │ └── Print.h ├── adafruit │ └── hardware │ │ ├── nrf52 │ │ ├── 0.22.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.23.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.24.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.0.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.1.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.2.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ └── 1.3.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ ├── NINA_B112_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ ├── NINA_B302_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ └── sparkfun_nrf52840_mini │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ └── samd │ │ ├── 1.5.14 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.10 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.11 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.7.9 │ │ ├── cores │ │ └── arduino │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── arduino │ └── hardware │ │ ├── mbed_portenta │ │ ├── 2.4.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.5.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.6.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.7.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.8.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.1.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.3.0 │ │ │ └── portenta_post_install.sh │ │ └── 3.4.1 │ │ │ └── portenta_post_install.sh │ │ ├── sam │ │ └── 1.6.12 │ │ │ └── platform.txt │ │ └── samd │ │ ├── 1.8.10 │ │ └── platform.txt │ │ ├── 1.8.11 │ │ └── platform.txt │ │ ├── 1.8.12 │ │ └── platform.txt │ │ ├── 1.8.13 │ │ └── platform.txt │ │ ├── 1.8.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.8 │ │ ├── cores │ │ │ ├── Arduino.h │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ └── 1.8.9 │ │ ├── cores │ │ └── arduino │ │ │ └── Arduino.h │ │ └── platform.txt ├── hardware │ └── teensy │ │ └── avr │ │ ├── boards.txt │ │ └── cores │ │ ├── teensy │ │ ├── Stream.cpp │ │ └── Stream.h │ │ ├── teensy3 │ │ ├── Stream.cpp │ │ └── Stream.h │ │ └── teensy4 │ │ ├── Stream.cpp │ │ └── Stream.h ├── industrialshields │ └── hardware │ │ └── avr │ │ ├── 1.1.36 │ │ └── cores │ │ │ └── industrialshields │ │ │ └── Udp.h │ │ └── 1.1.37 │ │ └── cores │ │ └── industrialshields │ │ └── Udp.h ├── realtek │ └── hardware │ │ └── AmebaD │ │ ├── 3.0.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.0.8 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.0 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.1 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.2 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.3 │ │ └── cores │ │ │ └── ambd │ │ │ └── avr │ │ │ └── pgmspace.h │ │ └── 3.1.4 │ │ └── cores │ │ └── ambd │ │ └── avr │ │ └── pgmspace.h └── rp2040 │ └── hardware │ └── rp2040 │ ├── 1.2.1 │ └── platform.txt │ ├── 1.2.2 │ └── platform.txt │ ├── 1.3.0 │ └── platform.txt │ ├── 1.3.1 │ ├── cores │ │ └── rp2040 │ │ │ └── Arduino.h │ └── platform.txt │ └── 1.4.0 │ ├── cores │ └── rp2040 │ │ └── Arduino.h │ └── platform.txt ├── README.md ├── changelog.md ├── examples ├── Ethernet │ ├── EtherMQTT │ │ ├── EtherMQTT.ino │ │ └── defines.h │ └── EtherMQTToverWebSocket │ │ ├── EtherMQTToverWebSocket.ino │ │ └── defines.h ├── QNEthernet │ ├── MQTT_QNEthernet │ │ ├── MQTT_QNEthernet.ino │ │ └── defines.h │ └── MQTToverWebSocket_QNEthernet │ │ ├── MQTToverWebSocket_QNEthernet.ino │ │ └── defines.h ├── RP2040W │ ├── WiFiMQTT │ │ └── WiFiMQTT.ino │ ├── WiFiMQTTSecure │ │ └── WiFiMQTTSecure.ino │ ├── WiFiMQTTSecureAWS │ │ └── WiFiMQTTSecureAWS.ino │ └── WiFiMQTToverWebSocket │ │ └── WiFiMQTToverWebSocket.ino ├── STM32 │ ├── EtherMQTT_STM32 │ │ ├── EtherMQTT_STM32.ino │ │ └── defines.h │ └── EtherMQTToverWebSocket_STM32 │ │ ├── EtherMQTToverWebSocket_STM32.ino │ │ └── defines.h ├── WiFi │ ├── WiFiMQTT │ │ ├── WiFiMQTT.ino │ │ └── defines.h │ ├── WiFiMQTTSecure │ │ └── WiFiMQTTSecure.ino │ ├── WiFiMQTTSecureAWS │ │ └── WiFiMQTTSecureAWS.ino │ ├── WiFiMQTToverWebSocket │ │ ├── WiFiMQTToverWebSocket.ino │ │ └── defines.h │ └── WiFiMQTToverWebSocketSecure │ │ └── WiFiMQTToverWebSocketSecure.ino ├── WiFi101 │ ├── WiFiMQTT │ │ ├── WiFiMQTT.ino │ │ └── defines.h │ └── WiFiMQTToverWebSocket │ │ ├── WiFiMQTToverWebSocket.ino │ │ └── defines.h └── WiFiNINA │ ├── WiFiNINA_MQTT │ ├── WiFiNINA_MQTT.ino │ └── defines.h │ ├── WiFiNINA_MQTTSecure │ ├── WiFiNINA_MQTTSecure.ino │ └── defines.h │ ├── WiFiNINA_MQTTSecureAWS │ ├── WiFiNINA_MQTTSecureAWS.ino │ └── defines.h │ ├── WiFiNINA_MQTToverWebSocket │ ├── WiFiNINA_MQTToverWebSocket.ino │ └── defines.h │ └── WiFiNINA_MQTToverWebSocketSecure │ └── WiFiNINA_MQTToverWebSocketSecure.ino ├── keywords.txt ├── library.json ├── library.properties ├── platformio └── platformio.ini ├── src ├── MQTTPubSubClient_Generic.h ├── MQTTPubSubClient_Generic │ ├── lwmqtt │ │ ├── client.c │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── lwmqtt.h │ │ ├── packet.c │ │ ├── packet.h │ │ └── string.c │ └── util │ │ ├── ArxContainer │ │ ├── ArxContainer.h │ │ ├── ArxContainer │ │ │ ├── has_include.h │ │ │ ├── has_libstdcplusplus.h │ │ │ ├── initializer_list.h │ │ │ └── replace_minmax_macros.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── library.json │ │ └── library.properties │ │ └── ArxTypeTraits │ │ ├── ArxTypeTraits.h │ │ ├── ArxTypeTraits │ │ ├── functional.h │ │ ├── has_include.h │ │ ├── has_libstdcplusplus.h │ │ ├── initializer_list.h │ │ ├── replace_minmax_macros.h │ │ ├── tuple.h │ │ └── type_traits.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── library.json │ │ └── library.properties └── MQTTPubSubClient_Generic_Debug.h └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LICENSE -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/esp32/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/LibraryPatches/esp32/cores/esp32/Server.h -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_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/MQTTPubSubClient_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_Generic/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_Generic/HEAD/Packages_Patches/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_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/MQTTPubSubClient_Generic/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/Ethernet/EtherMQTT/EtherMQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/Ethernet/EtherMQTT/EtherMQTT.ino -------------------------------------------------------------------------------- /examples/Ethernet/EtherMQTT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/Ethernet/EtherMQTT/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/EtherMQTToverWebSocket/EtherMQTToverWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/Ethernet/EtherMQTToverWebSocket/EtherMQTToverWebSocket.ino -------------------------------------------------------------------------------- /examples/Ethernet/EtherMQTToverWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/Ethernet/EtherMQTToverWebSocket/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTT_QNEthernet/MQTT_QNEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/QNEthernet/MQTT_QNEthernet/MQTT_QNEthernet.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTT_QNEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/QNEthernet/MQTT_QNEthernet/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/MQTToverWebSocket_QNEthernet/MQTToverWebSocket_QNEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/QNEthernet/MQTToverWebSocket_QNEthernet/MQTToverWebSocket_QNEthernet.ino -------------------------------------------------------------------------------- /examples/QNEthernet/MQTToverWebSocket_QNEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/QNEthernet/MQTToverWebSocket_QNEthernet/defines.h -------------------------------------------------------------------------------- /examples/RP2040W/WiFiMQTT/WiFiMQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/RP2040W/WiFiMQTT/WiFiMQTT.ino -------------------------------------------------------------------------------- /examples/RP2040W/WiFiMQTTSecure/WiFiMQTTSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/RP2040W/WiFiMQTTSecure/WiFiMQTTSecure.ino -------------------------------------------------------------------------------- /examples/RP2040W/WiFiMQTTSecureAWS/WiFiMQTTSecureAWS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/RP2040W/WiFiMQTTSecureAWS/WiFiMQTTSecureAWS.ino -------------------------------------------------------------------------------- /examples/RP2040W/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/RP2040W/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino -------------------------------------------------------------------------------- /examples/STM32/EtherMQTT_STM32/EtherMQTT_STM32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/STM32/EtherMQTT_STM32/EtherMQTT_STM32.ino -------------------------------------------------------------------------------- /examples/STM32/EtherMQTT_STM32/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/STM32/EtherMQTT_STM32/defines.h -------------------------------------------------------------------------------- /examples/STM32/EtherMQTToverWebSocket_STM32/EtherMQTToverWebSocket_STM32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/STM32/EtherMQTToverWebSocket_STM32/EtherMQTToverWebSocket_STM32.ino -------------------------------------------------------------------------------- /examples/STM32/EtherMQTToverWebSocket_STM32/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/STM32/EtherMQTToverWebSocket_STM32/defines.h -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTT/WiFiMQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTT/WiFiMQTT.ino -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTT/defines.h -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTTSecure/WiFiMQTTSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTTSecure/WiFiMQTTSecure.ino -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTTSecureAWS/WiFiMQTTSecureAWS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTTSecureAWS/WiFiMQTTSecureAWS.ino -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTToverWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTToverWebSocket/defines.h -------------------------------------------------------------------------------- /examples/WiFi/WiFiMQTToverWebSocketSecure/WiFiMQTToverWebSocketSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi/WiFiMQTToverWebSocketSecure/WiFiMQTToverWebSocketSecure.ino -------------------------------------------------------------------------------- /examples/WiFi101/WiFiMQTT/WiFiMQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi101/WiFiMQTT/WiFiMQTT.ino -------------------------------------------------------------------------------- /examples/WiFi101/WiFiMQTT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi101/WiFiMQTT/defines.h -------------------------------------------------------------------------------- /examples/WiFi101/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi101/WiFiMQTToverWebSocket/WiFiMQTToverWebSocket.ino -------------------------------------------------------------------------------- /examples/WiFi101/WiFiMQTToverWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFi101/WiFiMQTToverWebSocket/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTT/WiFiNINA_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTT/WiFiNINA_MQTT.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTT/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTTSecure/WiFiNINA_MQTTSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTTSecure/WiFiNINA_MQTTSecure.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTTSecure/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTTSecure/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTTSecureAWS/WiFiNINA_MQTTSecureAWS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTTSecureAWS/WiFiNINA_MQTTSecureAWS.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTTSecureAWS/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTTSecureAWS/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTToverWebSocket/WiFiNINA_MQTToverWebSocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTToverWebSocket/WiFiNINA_MQTToverWebSocket.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTToverWebSocket/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTToverWebSocket/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/WiFiNINA_MQTToverWebSocketSecure/WiFiNINA_MQTToverWebSocketSecure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/examples/WiFiNINA/WiFiNINA_MQTToverWebSocketSecure/WiFiNINA_MQTToverWebSocketSecure.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/library.properties -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/client.c -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/helpers.c -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/helpers.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/lwmqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/lwmqtt.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/packet.c -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/packet.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/lwmqtt/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/lwmqtt/string.c -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/has_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/has_include.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/has_libstdcplusplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/has_libstdcplusplus.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/initializer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/initializer_list.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/replace_minmax_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/ArxContainer/replace_minmax_macros.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/LICENSE -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/README.md -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/library.json -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxContainer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxContainer/library.properties -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/functional.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/has_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/has_include.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/has_libstdcplusplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/has_libstdcplusplus.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/initializer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/initializer_list.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/replace_minmax_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/replace_minmax_macros.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/tuple.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/ArxTypeTraits/type_traits.h -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/LICENSE -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/README.md -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/library.json -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic/util/ArxTypeTraits/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic/util/ArxTypeTraits/library.properties -------------------------------------------------------------------------------- /src/MQTTPubSubClient_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/src/MQTTPubSubClient_Generic_Debug.h -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MQTTPubSubClient_Generic/HEAD/utils/restyle.sh --------------------------------------------------------------------------------