├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── check-arduino.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LibraryPatches ├── Ethernet │ └── src │ │ ├── Ethernet.cpp │ │ ├── Ethernet.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── Ethernet2 │ └── src │ │ ├── Ethernet2.cpp │ │ ├── Ethernet2.h │ │ ├── EthernetUdp2.cpp │ │ └── EthernetUdp2.h ├── Ethernet3 │ └── src │ │ ├── Ethernet3.cpp │ │ └── Ethernet3.h ├── EthernetLarge │ └── src │ │ ├── EthernetLarge.cpp │ │ ├── EthernetLarge.h │ │ ├── EthernetServer.cpp │ │ └── utility │ │ ├── w5100.cpp │ │ └── w5100.h ├── UIPEthernet-2.0.9 │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h ├── UIPEthernet │ ├── UIPEthernet.cpp │ ├── UIPEthernet.h │ └── utility │ │ ├── Enc28J60Network.cpp │ │ └── Enc28J60Network.h └── esp32 │ └── cores │ └── esp32 │ └── Server.h ├── Packages_Patches ├── Fab_SAM_Arduino │ └── hardware │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ └── 1.7.0 │ │ └── boards.txt ├── Maixduino │ └── hardware │ │ └── k210 │ │ ├── 0.3.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── Stream.h │ │ └── 0.3.11 │ │ └── cores │ │ └── arduino │ │ └── Stream.h ├── STM32 │ └── hardware │ │ └── stm32 │ │ ├── 1.9.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── NUCLEO_F767ZI │ │ │ └── variant.h │ │ │ └── NUCLEO_L053R8 │ │ │ └── variant.h │ │ ├── 2.0.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ ├── L052R(6-8)H_L053R(6-8)H │ │ │ └── variant_generic.h │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.1.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ ├── 2.2.0 │ │ ├── system │ │ │ ├── STM32F4xx │ │ │ │ └── stm32f4xx_hal_conf_default.h │ │ │ └── STM32F7xx │ │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ │ ├── STM32F7xx │ │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ │ └── variant_NUCLEO_F767ZI.h │ │ │ └── STM32L0xx │ │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ │ └── variant_generic.h │ │ └── 2.3.0 │ │ ├── system │ │ ├── STM32F4xx │ │ │ └── stm32f4xx_hal_conf_default.h │ │ └── STM32F7xx │ │ │ └── stm32f7xx_hal_conf_default.h │ │ └── variants │ │ ├── STM32F7xx │ │ └── F765Z(G-I)T_F767Z(G-I)T_F777ZIT │ │ │ └── variant_NUCLEO_F767ZI.h │ │ └── STM32L0xx │ │ └── L052R(6-8)T_L053R(6-8)T_L063R8T │ │ └── variant_generic.h ├── Seeeduino │ └── hardware │ │ ├── nrf52 │ │ └── 1.0.0 │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ └── platform.txt │ │ ├── rp2040 │ │ ├── 1.9.3 │ │ │ └── variants │ │ │ │ └── rpipico │ │ │ │ └── pins_arduino.h │ │ └── 2.7.2 │ │ │ ├── boards.txt │ │ │ └── variants │ │ │ └── Seeed_XIAO_RP2040 │ │ │ └── pins_arduino.h │ │ └── samd │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.9 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.8.3 │ │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.h │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── SparkFun │ └── hardware │ │ └── samd │ │ └── 1.8.3 │ │ └── cores │ │ ├── arduino │ │ ├── Print.cpp │ │ └── Print.h │ │ └── arduino51 │ │ ├── Print.cpp │ │ └── Print.h ├── adafruit │ └── hardware │ │ ├── nrf52 │ │ ├── 0.19.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.20.5 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.21.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.22.1 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.23.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 0.24.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.0.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.1.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ ├── 1.2.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ │ └── nRF5 │ │ │ │ │ ├── Print.cpp │ │ │ │ │ ├── Print.h │ │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ │ ├── NINA_B112_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ ├── NINA_B302_ublox │ │ │ │ ├── pins_arduino.h │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ │ │ └── sparkfun_nrf52840_mini │ │ │ │ ├── variant.cpp │ │ │ │ └── variant.h │ │ └── 1.3.0 │ │ │ ├── boards.txt │ │ │ ├── cores │ │ │ └── nRF5 │ │ │ │ ├── Print.cpp │ │ │ │ ├── Print.h │ │ │ │ └── Udp.h │ │ │ ├── platform.txt │ │ │ └── variants │ │ │ ├── NINA_B112_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ ├── NINA_B302_ublox │ │ │ ├── pins_arduino.h │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ │ └── sparkfun_nrf52840_mini │ │ │ ├── variant.cpp │ │ │ └── variant.h │ │ └── samd │ │ ├── 1.5.14 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.10 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.7.9 │ │ ├── cores │ │ └── arduino │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── arduino │ └── hardware │ │ ├── mbed_portenta │ │ ├── 2.4.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.5.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.6.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ ├── libraries │ │ │ │ └── SocketWrapper │ │ │ │ │ └── src │ │ │ │ │ ├── MbedUdp.cpp │ │ │ │ │ └── MbedUdp.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.7.2 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 2.8.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.0 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.0.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.1.1 │ │ │ ├── cores │ │ │ │ └── arduino │ │ │ │ │ └── mbed │ │ │ │ │ └── connectivity │ │ │ │ │ └── lwipstack │ │ │ │ │ └── include │ │ │ │ │ └── lwipstack │ │ │ │ │ └── lwipopts.h │ │ │ └── portenta_post_install.sh │ │ ├── 3.3.0 │ │ │ └── portenta_post_install.sh │ │ └── 3.4.1 │ │ │ └── portenta_post_install.sh │ │ ├── sam │ │ └── 1.6.12 │ │ │ └── platform.txt │ │ └── samd │ │ ├── 1.8.10 │ │ └── platform.txt │ │ ├── 1.8.11 │ │ └── platform.txt │ │ ├── 1.8.12 │ │ └── platform.txt │ │ ├── 1.8.13 │ │ └── platform.txt │ │ ├── 1.8.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.8 │ │ ├── cores │ │ │ ├── Arduino.h │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ └── 1.8.9 │ │ ├── cores │ │ └── arduino │ │ │ └── Arduino.h │ │ └── platform.txt ├── hardware │ └── teensy │ │ └── avr │ │ ├── boards.txt │ │ └── cores │ │ ├── teensy │ │ ├── Stream.cpp │ │ └── Stream.h │ │ ├── teensy3 │ │ ├── Stream.cpp │ │ └── Stream.h │ │ └── teensy4 │ │ ├── Stream.cpp │ │ └── Stream.h ├── industrialshields │ └── hardware │ │ └── avr │ │ ├── 1.1.36 │ │ └── cores │ │ │ └── industrialshields │ │ │ └── Udp.h │ │ └── 1.1.37 │ │ └── cores │ │ └── industrialshields │ │ └── Udp.h ├── realtek │ └── hardware │ │ └── AmebaD │ │ ├── 3.0.10 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.0.8 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.0 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.1 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.2 │ │ └── cores │ │ │ └── arduino │ │ │ └── avr │ │ │ └── pgmspace.h │ │ ├── 3.1.3 │ │ └── cores │ │ │ └── ambd │ │ │ └── avr │ │ │ └── pgmspace.h │ │ └── 3.1.4 │ │ └── cores │ │ └── ambd │ │ └── avr │ │ └── pgmspace.h └── rp2040 │ └── hardware │ └── rp2040 │ ├── 1.2.1 │ └── platform.txt │ ├── 1.2.2 │ └── platform.txt │ ├── 1.3.0 │ └── platform.txt │ ├── 1.3.1 │ ├── cores │ │ └── rp2040 │ │ │ └── Arduino.h │ └── platform.txt │ └── 1.4.0 │ ├── cores │ └── rp2040 │ │ └── Arduino.h │ └── platform.txt ├── README.md ├── changelog.md ├── examples ├── Ethernet │ ├── Basic_Insert │ │ ├── Basic_Insert.ino │ │ └── defines.h │ ├── Basic_Select │ │ ├── Basic_Select.ino │ │ └── defines.h │ ├── Complex_Insert │ │ ├── Complex_Insert.ino │ │ └── defines.h │ ├── Complex_Select │ │ ├── Complex_Select.ino │ │ └── defines.h │ ├── Connect │ │ ├── Connect.ino │ │ └── defines.h │ ├── Connect_By_Hostname │ │ ├── Connect_By_Hostname.ino │ │ └── defines.h │ ├── Connect_Default_Database │ │ ├── Connect_Default_Database.ino │ │ └── defines.h │ ├── Connect_Disconnect │ │ ├── Connect_Disconnect.ino │ │ └── defines.h │ ├── Query_Progmem │ │ ├── Query_Progmem.ino │ │ └── defines.h │ ├── Query_Results │ │ ├── Query_Results.ino │ │ └── defines.h │ └── multiFileProject_Ethernet │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_Ethernet.ino ├── NativeEthernet │ ├── Basic_Insert │ │ ├── Basic_Insert.ino │ │ └── defines.h │ ├── Basic_Select │ │ ├── Basic_Select.ino │ │ └── defines.h │ ├── Complex_Insert │ │ ├── Complex_Insert.ino │ │ └── defines.h │ ├── Complex_Select │ │ ├── Complex_Select.ino │ │ └── defines.h │ ├── Connect │ │ ├── Connect.ino │ │ └── defines.h │ ├── Connect_By_Hostname │ │ ├── Connect_By_Hostname.ino │ │ └── defines.h │ ├── Connect_Default_Database │ │ ├── Connect_Default_Database.ino │ │ └── defines.h │ ├── Connect_Disconnect │ │ ├── Connect_Disconnect.ino │ │ └── defines.h │ ├── Query_Progmem │ │ ├── Query_Progmem.ino │ │ └── defines.h │ ├── Query_Results │ │ ├── Query_Results.ino │ │ └── defines.h │ └── multiFileProject_NativeEthernet │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_NativeEthernet.ino ├── Portenta_H7 │ ├── Ethernet │ │ ├── Basic_Insert │ │ │ ├── Basic_Insert.ino │ │ │ └── defines.h │ │ ├── Basic_Select │ │ │ ├── Basic_Select.ino │ │ │ └── defines.h │ │ ├── Complex_Insert │ │ │ ├── Complex_Insert.ino │ │ │ └── defines.h │ │ ├── Connect │ │ │ ├── Connect.ino │ │ │ └── defines.h │ │ ├── Connect_By_Hostname │ │ │ ├── Connect_By_Hostname.ino │ │ │ └── defines.h │ │ ├── Connect_Default_Database │ │ │ ├── Connect_Default_Database.ino │ │ │ └── defines.h │ │ └── multiFileProject_Portenta_H7_Ethernet │ │ │ ├── defines.h │ │ │ ├── multiFileProject.cpp │ │ │ ├── multiFileProject.h │ │ │ └── multiFileProject_Portenta_H7_Ethernet.ino │ └── WiFi │ │ ├── Basic_Insert_WiFi │ │ ├── Basic_Insert_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Basic_Select_WiFi │ │ ├── Basic_Select_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Complex_Insert_WiFi │ │ ├── Complex_Insert_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Complex_Select_WiFi │ │ ├── Complex_Select_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Connect_Default_Database_WiFi │ │ ├── Connect_Default_Database_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Connect_Disconnect_WiFi │ │ ├── Connect_Disconnect_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Connect_WiFi │ │ ├── Connect_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ │ ├── Reboot_WiFi │ │ ├── Credentials.h │ │ ├── Reboot_WiFi.ino │ │ └── defines.h │ │ └── multiFileProject_Portenta_H7_WiFi │ │ ├── Credentials.h │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_Portenta_H7_WiFi.ino ├── QNEthernet │ ├── Basic_Insert │ │ ├── Basic_Insert.ino │ │ └── defines.h │ ├── Basic_Select │ │ ├── Basic_Select.ino │ │ └── defines.h │ ├── Complex_Insert │ │ ├── Complex_Insert.ino │ │ └── defines.h │ ├── Complex_Select │ │ ├── Complex_Select.ino │ │ └── defines.h │ ├── Connect │ │ ├── Connect.ino │ │ └── defines.h │ ├── Connect_By_Hostname │ │ ├── Connect_By_Hostname.ino │ │ └── defines.h │ ├── Connect_Default_Database │ │ ├── Connect_Default_Database.ino │ │ └── defines.h │ ├── Connect_Disconnect │ │ ├── Connect_Disconnect.ino │ │ └── defines.h │ ├── Query_Progmem │ │ ├── Query_Progmem.ino │ │ └── defines.h │ ├── Query_Results │ │ ├── Query_Results.ino │ │ └── defines.h │ └── multiFileProject_QNEthernet │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_QNEthernet.ino ├── WT32_ETH01 │ ├── Basic_Insert_WT32_ETH01 │ │ └── Basic_Insert_WT32_ETH01.ino │ ├── Basic_Select_WT32_ETH01 │ │ └── Basic_Select_WT32_ETH01.ino │ ├── Complex_Insert_WT32_ETH01 │ │ └── Complex_Insert_WT32_ETH01.ino │ ├── Complex_Select_WT32_ETH01 │ │ └── Complex_Select_WT32_ETH01.ino │ ├── Connect_Default_Database_WT32_ETH01 │ │ └── Connect_Default_Database_WT32_ETH01.ino │ ├── Connect_Disconnect_WT32_ETH01 │ │ └── Connect_Disconnect_WT32_ETH01.ino │ ├── Connect_WT32_ETH01 │ │ └── Connect_WT32_ETH01.ino │ ├── Query_Progmem_WT32_ETH01 │ │ └── Query_Progmem_WT32_ETH01.ino │ ├── Query_Results_WT32_ETH01 │ │ └── Query_Results_WT32_ETH01.ino │ ├── Reboot_WT32_ETH01 │ │ └── Reboot_WT32_ETH01.ino │ └── multiFileProject_WT32_ETH01 │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_WT32_ETH01.ino ├── WiFi │ ├── Basic_Insert_ESP │ │ ├── Basic_Insert_ESP.ino │ │ └── Credentials.h │ ├── Basic_Insert_WiFi │ │ ├── Basic_Insert_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Basic_Select_WiFi │ │ ├── Basic_Select_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Complex_Insert_WiFi │ │ ├── Complex_Insert_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Complex_Select_WiFi │ │ ├── Complex_Select_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Connect_Default_Database_WiFi │ │ ├── Connect_Default_Database_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Connect_Disconnect_WiFi │ │ ├── Connect_Disconnect_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Connect_WiFi │ │ ├── Connect_WiFi.ino │ │ ├── Credentials.h │ │ └── defines.h │ ├── Query_Progmem_WiFi │ │ ├── Credentials.h │ │ ├── Query_Progmem_WiFi.ino │ │ └── defines.h │ ├── Query_Results_WiFi │ │ ├── Credentials.h │ │ ├── Query_Results_WiFi.ino │ │ └── defines.h │ ├── Reboot_WiFi │ │ ├── Credentials.h │ │ ├── Reboot_WiFi.ino │ │ └── defines.h │ └── multiFileProject_WiFi │ │ ├── Credentials.h │ │ ├── defines.h │ │ ├── multiFileProject.cpp │ │ ├── multiFileProject.h │ │ └── multiFileProject_WiFi.ino └── WiFiNINA │ ├── Basic_Insert_WiFiNINA │ ├── Basic_Insert_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Basic_Select_WiFiNINA │ ├── Basic_Select_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Complex_Insert_WiFiNINA │ ├── Complex_Insert_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Complex_Select_WiFiNINA │ ├── Complex_Select_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Connect_Default_Database_WiFiNINA │ ├── Connect_Default_Database_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Connect_Disconnect_WiFiNINA │ ├── Connect_Disconnect_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Connect_WiFiNINA │ ├── Connect_WiFiNINA.ino │ ├── Credentials.h │ └── defines.h │ ├── Query_Progmem_WiFiNINA │ ├── Credentials.h │ ├── Query_Progmem_WiFiNINA.ino │ └── defines.h │ ├── Query_Results_WiFiNINA │ ├── Credentials.h │ ├── Query_Results_WiFiNINA.ino │ └── defines.h │ ├── Reboot_WiFiNINA │ ├── Credentials.h │ ├── Reboot_WiFiNINA.ino │ └── defines.h │ └── multiFileProject_WiFiNINA │ ├── Credentials.h │ ├── defines.h │ ├── multiFileProject.cpp │ ├── multiFileProject.h │ └── multiFileProject_WiFiNINA.ino ├── keywords.txt ├── library.json ├── library.properties ├── pics ├── Basic_Insert_ESP32_S2.png ├── ENC28J60.jpg ├── ICSP_connector.jpg ├── MySQL_MariaDB_Generic_v.1.0.2.png ├── Portenta_Vision.jpg ├── RP2040-Pinout.png ├── W5100.jpg ├── W5500.jpg └── W5500_1.jpg ├── platformio └── platformio.ini └── src ├── MySQL_Generic.h ├── MySQL_Generic.hpp ├── MySQL_Generic_Connection.h ├── MySQL_Generic_Connection_Impl.h ├── MySQL_Generic_Debug.h ├── MySQL_Generic_Encrypt_Sha1.h ├── MySQL_Generic_Encrypt_Sha1_Impl.h ├── MySQL_Generic_Ethernet.h ├── MySQL_Generic_Packet.h ├── MySQL_Generic_Packet_Impl.h ├── MySQL_Generic_Query.h ├── MySQL_Generic_Query_Impl.h ├── MySQL_Generic_WiFi.h └── MySQL_Generic_WiFiNINA.h /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LICENSE -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet/src/Ethernet.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/Ethernet2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet2/src/Ethernet2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet2/src/EthernetUdp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet2/src/EthernetUdp2.h -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.cpp -------------------------------------------------------------------------------- /LibraryPatches/Ethernet3/src/Ethernet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/Ethernet3/src/Ethernet3.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetLarge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetLarge.h -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/EthernetServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/EthernetLarge/src/EthernetServer.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.cpp -------------------------------------------------------------------------------- /LibraryPatches/EthernetLarge/src/utility/w5100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/EthernetLarge/src/utility/w5100.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet-2.0.9/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/UIPEthernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet/UIPEthernet.h -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.cpp -------------------------------------------------------------------------------- /LibraryPatches/UIPEthernet/utility/Enc28J60Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/UIPEthernet/utility/Enc28J60Network.h -------------------------------------------------------------------------------- /LibraryPatches/esp32/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/LibraryPatches/esp32/cores/esp32/Server.h -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_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/MySQL_MariaDB_Generic/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Maixduino/hardware/k210/0.3.10/cores/arduino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_Generic/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.19.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.1/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.20.5/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/cores/nRF5/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B112_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/pins_arduino.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/nrf52/0.21.0/variants/NINA_B302_ublox/variant.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/nrf52/0.22.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_Generic/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_Generic/HEAD/Packages_Patches/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/hardware/teensy/avr/cores/teensy/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_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/MySQL_MariaDB_Generic/HEAD/Packages_Patches/rp2040/hardware/rp2040/1.4.0/platform.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/Ethernet/Basic_Insert/Basic_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Basic_Insert/Basic_Insert.ino -------------------------------------------------------------------------------- /examples/Ethernet/Basic_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Basic_Insert/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Basic_Select/Basic_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Basic_Select/Basic_Select.ino -------------------------------------------------------------------------------- /examples/Ethernet/Basic_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Basic_Select/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Complex_Insert/Complex_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Complex_Insert/Complex_Insert.ino -------------------------------------------------------------------------------- /examples/Ethernet/Complex_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Complex_Insert/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Complex_Select/Complex_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Complex_Select/Complex_Select.ino -------------------------------------------------------------------------------- /examples/Ethernet/Complex_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Complex_Select/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Connect/Connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect/Connect.ino -------------------------------------------------------------------------------- /examples/Ethernet/Connect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Connect_By_Hostname/Connect_By_Hostname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_By_Hostname/Connect_By_Hostname.ino -------------------------------------------------------------------------------- /examples/Ethernet/Connect_By_Hostname/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_By_Hostname/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Connect_Default_Database/Connect_Default_Database.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_Default_Database/Connect_Default_Database.ino -------------------------------------------------------------------------------- /examples/Ethernet/Connect_Default_Database/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_Default_Database/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Connect_Disconnect/Connect_Disconnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_Disconnect/Connect_Disconnect.ino -------------------------------------------------------------------------------- /examples/Ethernet/Connect_Disconnect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Connect_Disconnect/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Query_Progmem/Query_Progmem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Query_Progmem/Query_Progmem.ino -------------------------------------------------------------------------------- /examples/Ethernet/Query_Progmem/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Query_Progmem/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/Query_Results/Query_Results.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Query_Results/Query_Results.ino -------------------------------------------------------------------------------- /examples/Ethernet/Query_Results/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/Query_Results/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject_Ethernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/multiFileProject_Ethernet/defines.h -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject_Ethernet/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/multiFileProject_Ethernet/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject_Ethernet/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/multiFileProject_Ethernet/multiFileProject.h -------------------------------------------------------------------------------- /examples/Ethernet/multiFileProject_Ethernet/multiFileProject_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Ethernet/multiFileProject_Ethernet/multiFileProject_Ethernet.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Basic_Insert/Basic_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Basic_Insert/Basic_Insert.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Basic_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Basic_Insert/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Basic_Select/Basic_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Basic_Select/Basic_Select.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Basic_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Basic_Select/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Complex_Insert/Complex_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Complex_Insert/Complex_Insert.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Complex_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Complex_Insert/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Complex_Select/Complex_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Complex_Select/Complex_Select.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Complex_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Complex_Select/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect/Connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect/Connect.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_By_Hostname/Connect_By_Hostname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_By_Hostname/Connect_By_Hostname.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_By_Hostname/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_By_Hostname/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_Default_Database/Connect_Default_Database.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_Default_Database/Connect_Default_Database.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_Default_Database/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_Default_Database/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_Disconnect/Connect_Disconnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_Disconnect/Connect_Disconnect.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Connect_Disconnect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Connect_Disconnect/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Query_Progmem/Query_Progmem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Query_Progmem/Query_Progmem.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Query_Progmem/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Query_Progmem/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/Query_Results/Query_Results.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Query_Results/Query_Results.ino -------------------------------------------------------------------------------- /examples/NativeEthernet/Query_Results/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/Query_Results/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/multiFileProject_NativeEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/multiFileProject_NativeEthernet/defines.h -------------------------------------------------------------------------------- /examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject.h -------------------------------------------------------------------------------- /examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject_NativeEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/NativeEthernet/multiFileProject_NativeEthernet/multiFileProject_NativeEthernet.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Basic_Insert/Basic_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Basic_Insert/Basic_Insert.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Basic_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Basic_Insert/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Basic_Select/Basic_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Basic_Select/Basic_Select.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Basic_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Basic_Select/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Complex_Insert/Complex_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Complex_Insert/Complex_Insert.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Complex_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Complex_Insert/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect/Connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect/Connect.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect_By_Hostname/Connect_By_Hostname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect_By_Hostname/Connect_By_Hostname.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect_By_Hostname/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect_By_Hostname/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect_Default_Database/Connect_Default_Database.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect_Default_Database/Connect_Default_Database.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/Connect_Default_Database/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/Connect_Default_Database/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject.h -------------------------------------------------------------------------------- /examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject_Portenta_H7_Ethernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/Ethernet/multiFileProject_Portenta_H7_Ethernet/multiFileProject_Portenta_H7_Ethernet.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Insert_WiFi/Basic_Insert_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Insert_WiFi/Basic_Insert_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Insert_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Insert_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Insert_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Insert_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Select_WiFi/Basic_Select_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Select_WiFi/Basic_Select_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Select_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Select_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Basic_Select_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Basic_Select_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Insert_WiFi/Complex_Insert_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Insert_WiFi/Complex_Insert_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Insert_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Insert_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Insert_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Insert_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Select_WiFi/Complex_Select_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Select_WiFi/Complex_Select_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Select_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Select_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Complex_Select_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Complex_Select_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/Connect_Default_Database_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/Connect_Default_Database_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Default_Database_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/Connect_Disconnect_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/Connect_Disconnect_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_Disconnect_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_WiFi/Connect_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_WiFi/Connect_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Connect_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Connect_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Reboot_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Reboot_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Reboot_WiFi/Reboot_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Reboot_WiFi/Reboot_WiFi.ino -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/Reboot_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/Reboot_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/defines.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject.h -------------------------------------------------------------------------------- /examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject_Portenta_H7_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/Portenta_H7/WiFi/multiFileProject_Portenta_H7_WiFi/multiFileProject_Portenta_H7_WiFi.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Basic_Insert/Basic_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Basic_Insert/Basic_Insert.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Basic_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Basic_Insert/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Basic_Select/Basic_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Basic_Select/Basic_Select.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Basic_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Basic_Select/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Complex_Insert/Complex_Insert.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Complex_Insert/Complex_Insert.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Complex_Insert/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Complex_Insert/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Complex_Select/Complex_Select.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Complex_Select/Complex_Select.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Complex_Select/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Complex_Select/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Connect/Connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect/Connect.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Connect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_By_Hostname/Connect_By_Hostname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_By_Hostname/Connect_By_Hostname.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_By_Hostname/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_By_Hostname/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_Default_Database/Connect_Default_Database.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_Default_Database/Connect_Default_Database.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_Default_Database/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_Default_Database/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_Disconnect/Connect_Disconnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_Disconnect/Connect_Disconnect.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Connect_Disconnect/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Connect_Disconnect/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Query_Progmem/Query_Progmem.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Query_Progmem/Query_Progmem.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Query_Progmem/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Query_Progmem/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/Query_Results/Query_Results.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Query_Results/Query_Results.ino -------------------------------------------------------------------------------- /examples/QNEthernet/Query_Results/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/Query_Results/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/multiFileProject_QNEthernet/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/multiFileProject_QNEthernet/defines.h -------------------------------------------------------------------------------- /examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject.h -------------------------------------------------------------------------------- /examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject_QNEthernet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/QNEthernet/multiFileProject_QNEthernet/multiFileProject_QNEthernet.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Basic_Insert_WT32_ETH01/Basic_Insert_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Basic_Insert_WT32_ETH01/Basic_Insert_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Basic_Select_WT32_ETH01/Basic_Select_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Basic_Select_WT32_ETH01/Basic_Select_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Complex_Insert_WT32_ETH01/Complex_Insert_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Complex_Insert_WT32_ETH01/Complex_Insert_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Complex_Select_WT32_ETH01/Complex_Select_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Complex_Select_WT32_ETH01/Complex_Select_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Connect_Default_Database_WT32_ETH01/Connect_Default_Database_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Connect_Default_Database_WT32_ETH01/Connect_Default_Database_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Connect_Disconnect_WT32_ETH01/Connect_Disconnect_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Connect_Disconnect_WT32_ETH01/Connect_Disconnect_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Connect_WT32_ETH01/Connect_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Connect_WT32_ETH01/Connect_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Query_Progmem_WT32_ETH01/Query_Progmem_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Query_Progmem_WT32_ETH01/Query_Progmem_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Query_Results_WT32_ETH01/Query_Results_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Query_Results_WT32_ETH01/Query_Results_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/Reboot_WT32_ETH01/Reboot_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/Reboot_WT32_ETH01/Reboot_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject.h -------------------------------------------------------------------------------- /examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject_WT32_ETH01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WT32_ETH01/multiFileProject_WT32_ETH01/multiFileProject_WT32_ETH01.ino -------------------------------------------------------------------------------- /examples/WiFi/Basic_Insert_ESP/Basic_Insert_ESP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Insert_ESP/Basic_Insert_ESP.ino -------------------------------------------------------------------------------- /examples/WiFi/Basic_Insert_ESP/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Insert_ESP/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Basic_Insert_WiFi/Basic_Insert_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Insert_WiFi/Basic_Insert_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Basic_Insert_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Insert_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Basic_Insert_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Insert_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Basic_Select_WiFi/Basic_Select_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Select_WiFi/Basic_Select_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Basic_Select_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Select_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Basic_Select_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Basic_Select_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Complex_Insert_WiFi/Complex_Insert_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Insert_WiFi/Complex_Insert_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Complex_Insert_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Insert_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Complex_Insert_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Insert_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Complex_Select_WiFi/Complex_Select_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Select_WiFi/Complex_Select_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Complex_Select_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Select_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Complex_Select_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Complex_Select_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_Default_Database_WiFi/Connect_Default_Database_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Default_Database_WiFi/Connect_Default_Database_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Connect_Default_Database_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Default_Database_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_Default_Database_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Default_Database_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_Disconnect_WiFi/Connect_Disconnect_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Disconnect_WiFi/Connect_Disconnect_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Connect_Disconnect_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Disconnect_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_Disconnect_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_Disconnect_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_WiFi/Connect_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_WiFi/Connect_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Connect_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Connect_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Connect_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Query_Progmem_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Progmem_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Query_Progmem_WiFi/Query_Progmem_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Progmem_WiFi/Query_Progmem_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Query_Progmem_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Progmem_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Query_Results_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Results_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Query_Results_WiFi/Query_Results_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Results_WiFi/Query_Results_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Query_Results_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Query_Results_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/Reboot_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Reboot_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/Reboot_WiFi/Reboot_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Reboot_WiFi/Reboot_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFi/Reboot_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/Reboot_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/multiFileProject_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/multiFileProject_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/WiFi/multiFileProject_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/multiFileProject_WiFi/defines.h -------------------------------------------------------------------------------- /examples/WiFi/multiFileProject_WiFi/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/multiFileProject_WiFi/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/WiFi/multiFileProject_WiFi/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/multiFileProject_WiFi/multiFileProject.h -------------------------------------------------------------------------------- /examples/WiFi/multiFileProject_WiFi/multiFileProject_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFi/multiFileProject_WiFi/multiFileProject_WiFi.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Insert_WiFiNINA/Basic_Insert_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Insert_WiFiNINA/Basic_Insert_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Insert_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Insert_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Insert_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Insert_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Select_WiFiNINA/Basic_Select_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Select_WiFiNINA/Basic_Select_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Select_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Select_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Basic_Select_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Basic_Select_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Insert_WiFiNINA/Complex_Insert_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Insert_WiFiNINA/Complex_Insert_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Insert_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Insert_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Insert_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Insert_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Select_WiFiNINA/Complex_Select_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Select_WiFiNINA/Complex_Select_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Select_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Select_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Complex_Select_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Complex_Select_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Default_Database_WiFiNINA/Connect_Default_Database_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Default_Database_WiFiNINA/Connect_Default_Database_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Default_Database_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Default_Database_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Default_Database_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Default_Database_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Disconnect_WiFiNINA/Connect_Disconnect_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Disconnect_WiFiNINA/Connect_Disconnect_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Disconnect_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Disconnect_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_Disconnect_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_Disconnect_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_WiFiNINA/Connect_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_WiFiNINA/Connect_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Connect_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Connect_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Progmem_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Progmem_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Progmem_WiFiNINA/Query_Progmem_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Progmem_WiFiNINA/Query_Progmem_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Progmem_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Progmem_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Results_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Results_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Results_WiFiNINA/Query_Results_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Results_WiFiNINA/Query_Results_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Query_Results_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Query_Results_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Reboot_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Reboot_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/Reboot_WiFiNINA/Reboot_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Reboot_WiFiNINA/Reboot_WiFiNINA.ino -------------------------------------------------------------------------------- /examples/WiFiNINA/Reboot_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/Reboot_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/multiFileProject_WiFiNINA/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/multiFileProject_WiFiNINA/Credentials.h -------------------------------------------------------------------------------- /examples/WiFiNINA/multiFileProject_WiFiNINA/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/multiFileProject_WiFiNINA/defines.h -------------------------------------------------------------------------------- /examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject.h -------------------------------------------------------------------------------- /examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject_WiFiNINA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/examples/WiFiNINA/multiFileProject_WiFiNINA/multiFileProject_WiFiNINA.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/library.properties -------------------------------------------------------------------------------- /pics/Basic_Insert_ESP32_S2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/Basic_Insert_ESP32_S2.png -------------------------------------------------------------------------------- /pics/ENC28J60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/ENC28J60.jpg -------------------------------------------------------------------------------- /pics/ICSP_connector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/ICSP_connector.jpg -------------------------------------------------------------------------------- /pics/MySQL_MariaDB_Generic_v.1.0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/MySQL_MariaDB_Generic_v.1.0.2.png -------------------------------------------------------------------------------- /pics/Portenta_Vision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/Portenta_Vision.jpg -------------------------------------------------------------------------------- /pics/RP2040-Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/RP2040-Pinout.png -------------------------------------------------------------------------------- /pics/W5100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/W5100.jpg -------------------------------------------------------------------------------- /pics/W5500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/W5500.jpg -------------------------------------------------------------------------------- /pics/W5500_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/pics/W5500_1.jpg -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/MySQL_Generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic.h -------------------------------------------------------------------------------- /src/MySQL_Generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic.hpp -------------------------------------------------------------------------------- /src/MySQL_Generic_Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Connection.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Connection_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Connection_Impl.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Debug.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Encrypt_Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Encrypt_Sha1.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Encrypt_Sha1_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Encrypt_Sha1_Impl.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Ethernet.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Packet.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Packet_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Packet_Impl.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Query.h -------------------------------------------------------------------------------- /src/MySQL_Generic_Query_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_Query_Impl.h -------------------------------------------------------------------------------- /src/MySQL_Generic_WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_WiFi.h -------------------------------------------------------------------------------- /src/MySQL_Generic_WiFiNINA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/MySQL_MariaDB_Generic/HEAD/src/MySQL_Generic_WiFiNINA.h --------------------------------------------------------------------------------