├── .cproject ├── .gitattributes ├── .gitignore ├── .project ├── .settings ├── language.settings.xml ├── org.eclipse.cdt.managedbuilder.core.prefs ├── org.eclipse.core.resources.prefs └── org.eclipse.core.runtime.prefs ├── .vscode └── settings.json ├── BuildRelease.sh ├── CMakeLists.txt ├── DWSS.code-workspace ├── DWSSesp32.code-workspace ├── Makefile ├── README.md ├── components └── arduino │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── cores │ └── esp32 │ │ ├── Arduino.h │ │ ├── Client.h │ │ ├── Esp.cpp │ │ ├── Esp.h │ │ ├── FunctionalInterrupt.cpp │ │ ├── FunctionalInterrupt.h │ │ ├── HardwareSerial.cpp │ │ ├── HardwareSerial.h │ │ ├── IPAddress.cpp │ │ ├── IPAddress.h │ │ ├── IPv6Address.cpp │ │ ├── IPv6Address.h │ │ ├── MD5Builder.cpp │ │ ├── MD5Builder.h │ │ ├── Print.cpp │ │ ├── Print.h │ │ ├── Printable.h │ │ ├── Server.h │ │ ├── Stream.cpp │ │ ├── Stream.h │ │ ├── StreamString.cpp │ │ ├── StreamString.h │ │ ├── USB.cpp │ │ ├── USB.h │ │ ├── USBCDC.cpp │ │ ├── USBCDC.h │ │ ├── Udp.h │ │ ├── WCharacter.h │ │ ├── WMath.cpp │ │ ├── WString.cpp │ │ ├── WString.h │ │ ├── apps │ │ └── sntp │ │ │ └── sntp.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── binary.h │ │ ├── cbuf.cpp │ │ ├── cbuf.h │ │ ├── esp32-hal-adc.c │ │ ├── esp32-hal-adc.h │ │ ├── esp32-hal-bt.c │ │ ├── esp32-hal-bt.h │ │ ├── esp32-hal-cpu.c │ │ ├── esp32-hal-cpu.h │ │ ├── esp32-hal-dac.c │ │ ├── esp32-hal-dac.h │ │ ├── esp32-hal-gpio.c │ │ ├── esp32-hal-gpio.h │ │ ├── esp32-hal-i2c.c │ │ ├── esp32-hal-i2c.h │ │ ├── esp32-hal-ledc.c │ │ ├── esp32-hal-ledc.h │ │ ├── esp32-hal-log.h │ │ ├── esp32-hal-matrix.c │ │ ├── esp32-hal-matrix.h │ │ ├── esp32-hal-misc.c │ │ ├── esp32-hal-psram.c │ │ ├── esp32-hal-psram.h │ │ ├── esp32-hal-rmt.c │ │ ├── esp32-hal-rmt.h │ │ ├── esp32-hal-sigmadelta.c │ │ ├── esp32-hal-sigmadelta.h │ │ ├── esp32-hal-spi.c │ │ ├── esp32-hal-spi.h │ │ ├── esp32-hal-time.c │ │ ├── esp32-hal-timer.c │ │ ├── esp32-hal-timer.h │ │ ├── esp32-hal-tinyusb.c │ │ ├── esp32-hal-tinyusb.h │ │ ├── esp32-hal-touch.c │ │ ├── esp32-hal-touch.h │ │ ├── esp32-hal-uart.c │ │ ├── esp32-hal-uart.h │ │ ├── esp32-hal.h │ │ ├── esp8266-compat.h │ │ ├── esp_arduino_version.h │ │ ├── libb64 │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── cdecode.c │ │ ├── cdecode.h │ │ ├── cencode.c │ │ └── cencode.h │ │ ├── main.cpp │ │ ├── pgmspace.h │ │ ├── stdlib_noniso.c │ │ ├── stdlib_noniso.h │ │ ├── wiring_private.h │ │ ├── wiring_pulse.c │ │ └── wiring_shift.c │ ├── libraries │ ├── AsyncUDP │ │ ├── examples │ │ │ ├── AsyncUDPClient │ │ │ │ └── AsyncUDPClient.ino │ │ │ ├── AsyncUDPMulticastServer │ │ │ │ └── AsyncUDPMulticastServer.ino │ │ │ └── AsyncUDPServer │ │ │ │ └── AsyncUDPServer.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── AsyncUDP.cpp │ │ │ └── AsyncUDP.h │ ├── DNSServer │ │ ├── examples │ │ │ └── CaptivePortal │ │ │ │ └── CaptivePortal.ino │ │ ├── library.properties │ │ └── src │ │ │ ├── DNSServer.cpp │ │ │ └── DNSServer.h │ ├── EEPROM │ │ ├── README.md │ │ ├── examples │ │ │ ├── eeprom_class │ │ │ │ └── eeprom_class.ino │ │ │ ├── eeprom_extra │ │ │ │ └── eeprom_extra.ino │ │ │ └── eeprom_write │ │ │ │ └── eeprom_write.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── EEPROM.cpp │ │ │ └── EEPROM.h │ ├── ESP32 │ │ ├── examples │ │ │ ├── AnalogOut │ │ │ │ ├── LEDCSoftwareFade │ │ │ │ │ └── LEDCSoftwareFade.ino │ │ │ │ ├── SigmaDelta │ │ │ │ │ └── SigmaDelta.ino │ │ │ │ └── ledcWrite_RGB │ │ │ │ │ └── ledcWrite_RGB.ino │ │ │ ├── Camera │ │ │ │ └── CameraWebServer │ │ │ │ │ ├── CameraWebServer.ino │ │ │ │ │ ├── app_httpd.cpp │ │ │ │ │ ├── camera_index.h │ │ │ │ │ └── camera_pins.h │ │ │ ├── ChipID │ │ │ │ └── GetChipID │ │ │ │ │ └── GetChipID.ino │ │ │ ├── DeepSleep │ │ │ │ ├── ExternalWakeUp │ │ │ │ │ └── ExternalWakeUp.ino │ │ │ │ ├── TimerWakeUp │ │ │ │ │ └── TimerWakeUp.ino │ │ │ │ └── TouchWakeUp │ │ │ │ │ └── TouchWakeUp.ino │ │ │ ├── ESPNow │ │ │ │ ├── Basic │ │ │ │ │ ├── Master │ │ │ │ │ │ └── Master.ino │ │ │ │ │ └── Slave │ │ │ │ │ │ └── Slave.ino │ │ │ │ └── Multi-Slave │ │ │ │ │ ├── Master │ │ │ │ │ └── Master.ino │ │ │ │ │ └── Slave │ │ │ │ │ └── Slave.ino │ │ │ ├── FreeRTOS │ │ │ │ └── FreeRTOS.ino │ │ │ ├── GPIO │ │ │ │ ├── FunctionalInterrupt │ │ │ │ │ └── FunctionalInterrupt.ino │ │ │ │ └── GPIOInterrupt │ │ │ │ │ └── GPIOInterrupt.ino │ │ │ ├── HallSensor │ │ │ │ ├── .skip.esp32s2 │ │ │ │ └── HallSensor.ino │ │ │ ├── I2S │ │ │ │ └── HiFreq_ADC │ │ │ │ │ ├── .skip.esp32s2 │ │ │ │ │ └── HiFreq_ADC.ino │ │ │ ├── RMT │ │ │ │ ├── RMTCallback │ │ │ │ │ └── RMTCallback.ino │ │ │ │ ├── RMTLoopback │ │ │ │ │ └── RMTLoopback.ino │ │ │ │ ├── RMTReadXJT │ │ │ │ │ └── RMTReadXJT.ino │ │ │ │ └── RMTWriteNeoPixel │ │ │ │ │ └── RMTWriteNeoPixel.ino │ │ │ ├── ResetReason │ │ │ │ └── ResetReason.ino │ │ │ ├── Time │ │ │ │ └── SimpleTime │ │ │ │ │ └── SimpleTime.ino │ │ │ ├── Timer │ │ │ │ ├── RepeatTimer │ │ │ │ │ └── RepeatTimer.ino │ │ │ │ └── WatchdogTimer │ │ │ │ │ └── WatchdogTimer.ino │ │ │ └── Touch │ │ │ │ ├── TouchInterrupt │ │ │ │ └── TouchInterrupt.ino │ │ │ │ └── TouchRead │ │ │ │ └── TouchRead.ino │ │ ├── library.properties │ │ └── src │ │ │ └── dummy.h │ ├── ESPmDNS │ │ ├── examples │ │ │ ├── mDNS-SD_Extended │ │ │ │ └── mDNS-SD_Extended.ino │ │ │ └── mDNS_Web_Server │ │ │ │ └── mDNS_Web_Server.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── ESPmDNS.cpp │ │ │ └── ESPmDNS.h │ ├── FS │ │ ├── library.properties │ │ └── src │ │ │ ├── FS.cpp │ │ │ ├── FS.h │ │ │ ├── FSImpl.h │ │ │ ├── vfs_api.cpp │ │ │ └── vfs_api.h │ ├── NetBIOS │ │ ├── examples │ │ │ └── ESP_NBNST │ │ │ │ └── ESP_NBNST.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── NetBIOS.cpp │ │ │ └── NetBIOS.h │ ├── README.md │ ├── SPI │ │ ├── examples │ │ │ └── SPI_Multiple_Buses │ │ │ │ ├── SPI_Multiple_Buses.ino │ │ │ │ └── multiple_bus_output.PNG │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── SPI.cpp │ │ │ └── SPI.h │ ├── WiFi │ │ ├── examples │ │ │ ├── ETH_LAN8720 │ │ │ │ ├── .skip.esp32s2 │ │ │ │ └── ETH_LAN8720.ino │ │ │ ├── ETH_TLK110 │ │ │ │ ├── .skip.esp32s2 │ │ │ │ └── ETH_TLK110.ino │ │ │ ├── SimpleWiFiServer │ │ │ │ └── SimpleWiFiServer.ino │ │ │ ├── WPS │ │ │ │ ├── README.md │ │ │ │ └── WPS.ino │ │ │ ├── WiFiAccessPoint │ │ │ │ └── WiFiAccessPoint.ino │ │ │ ├── WiFiBlueToothSwitch │ │ │ │ ├── .skip.esp32s2 │ │ │ │ └── WiFiBlueToothSwitch.ino │ │ │ ├── WiFiClient │ │ │ │ └── WiFiClient.ino │ │ │ ├── WiFiClientBasic │ │ │ │ └── WiFiClientBasic.ino │ │ │ ├── WiFiClientEnterprise │ │ │ │ ├── README.md │ │ │ │ └── WiFiClientEnterprise.ino │ │ │ ├── WiFiClientEvents │ │ │ │ └── WiFiClientEvents.ino │ │ │ ├── WiFiClientStaticIP │ │ │ │ └── WiFiClientStaticIP.ino │ │ │ ├── WiFiIPv6 │ │ │ │ └── WiFiIPv6.ino │ │ │ ├── WiFiMulti │ │ │ │ └── WiFiMulti.ino │ │ │ ├── WiFiScan │ │ │ │ └── WiFiScan.ino │ │ │ ├── WiFiSmartConfig │ │ │ │ └── WiFiSmartConfig.ino │ │ │ ├── WiFiTelnetToSerial │ │ │ │ └── WiFiTelnetToSerial.ino │ │ │ └── WiFiUDPClient │ │ │ │ ├── WiFiUDPClient.ino │ │ │ │ ├── udp_server.py │ │ │ │ └── udp_server.rb │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── ETH.cpp │ │ │ ├── ETH.h │ │ │ ├── WiFi.cpp │ │ │ ├── WiFi.h │ │ │ ├── WiFiAP.cpp │ │ │ ├── WiFiAP.h │ │ │ ├── WiFiClient.cpp │ │ │ ├── WiFiClient.h │ │ │ ├── WiFiGeneric.cpp │ │ │ ├── WiFiGeneric.h │ │ │ ├── WiFiMulti.cpp │ │ │ ├── WiFiMulti.h │ │ │ ├── WiFiSTA.cpp │ │ │ ├── WiFiSTA.h │ │ │ ├── WiFiScan.cpp │ │ │ ├── WiFiScan.h │ │ │ ├── WiFiServer.cpp │ │ │ ├── WiFiServer.h │ │ │ ├── WiFiType.h │ │ │ ├── WiFiUdp.cpp │ │ │ └── WiFiUdp.h │ └── Wire │ │ ├── doc │ │ └── i2c_debugging.md │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ ├── Wire.cpp │ │ └── Wire.h │ └── variants │ └── esp32 │ └── pins_arduino.h ├── esp32_partitions.csv ├── flash.cmd ├── main ├── CMakeLists.txt └── main.cpp ├── releases ├── 1.23-02 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-stm32f4.bin │ └── DuetWiFiServer.bin ├── 1.24-01 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-stm32f4.bin │ └── DuetWiFiServer.bin ├── 1.24-02 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-lpc-el.bin │ ├── DuetWiFiServer-lpc.bin │ └── DuetWiFiServer-stm32f4.bin ├── 1.24-03 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-lpc-el.bin │ ├── DuetWiFiServer-lpc.bin │ └── DuetWiFiServer-stm32f4.bin ├── 1.25-01 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-lpc-el.bin │ ├── DuetWiFiServer-lpc.bin │ └── DuetWiFiServer-stm32f4.bin ├── 1.25B0-01 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-lpc-el.bin │ ├── DuetWiFiServer-lpc.bin │ └── DuetWiFiServer-stm32f4.bin ├── 1.26-03 │ ├── DuetWiFiServer-duet.bin │ ├── DuetWiFiServer-esp32.bin │ ├── DuetWiFiServer-lpc-el.bin │ ├── DuetWiFiServer-lpc.bin │ └── DuetWiFiServer-stm32f4.bin ├── 1.26-04 │ ├── DuetWiFiServer-esp32-stm32f4-1.26-04.bin │ ├── DuetWiFiServer-esp8256-lpc-1.26-04.bin │ └── DuetWiFiServer-esp8256-stm32f4-1.26-04.bin ├── 1.26-05 │ ├── DuetWiFiServer-esp32-stm32f4-1.26-05.bin │ ├── DuetWiFiServer-esp8266-lpc-1.26-05.bin │ └── DuetWiFiServer-esp8266-stm32f4-1.26-05.bin ├── 1.26-06 │ ├── DuetWiFiServer-esp32-stm32f4-1.26-06.bin │ ├── DuetWiFiServer-esp8266-lpc-1.26-06.bin │ └── DuetWiFiServer-esp8266-stm32f4-1.26-06.bin ├── 1.26-07 │ ├── DuetWiFiServer-esp32-stm32f4-1.26-07.bin │ ├── DuetWiFiServer-esp8266-lpc-1.26-07.bin │ └── DuetWiFiServer-esp8266-stm32f4-1.26-07.bin ├── 1.26-08 │ ├── DuetWiFiServer-esp32-stm32f4-1.26-08.bin │ ├── DuetWiFiServer-esp8266-lpc-1.26-08.bin │ └── DuetWiFiServer-esp8266-stm32f4-1.26-08.bin ├── 1.26-09 │ ├── DuetWiFiServer-esp32-stm32-1.26-09.bin │ ├── DuetWiFiServer-esp8266-lpc-1.26-09.bin │ └── DuetWiFiServer-esp8266-stm32-1.26-09.bin ├── 1.27-01 │ ├── DuetWiFiServer-esp32-stm32-1.27-01.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27-01.bin │ └── DuetWiFiServer-esp8266-stm32-1.27-01.bin ├── 1.27-02 │ ├── DuetWiFiServer-esp32-stm32-1.27-02.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27-02.bin │ └── DuetWiFiServer-esp8266-stm32-1.27-02.bin ├── 1.27-03 │ ├── DuetWiFiServer-esp32-stm32-1.27-03.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27-03.bin │ └── DuetWiFiServer-esp8266-stm32-1.27-03.bin ├── 1.27-03a │ ├── DuetWiFiServer-esp32-stm32-1.27-03a.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27-03a.bin │ └── DuetWiFiServer-esp8266-stm32-1.27-03a.bin ├── 1.27-04 │ ├── DuetWiFiServer-esp32-stm32-1.27-04.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27-04.bin │ └── DuetWiFiServer-esp8266-stm32-1.27-04.bin └── 1.27beta1-01 │ ├── DuetWiFiServer-esp32-stm32-1.27beta1-01.bin │ ├── DuetWiFiServer-esp8266-lpc-1.27beta1-01.bin │ └── DuetWiFiServer-esp8266-stm32-1.27beta1-01.bin ├── sdkconfig ├── sdkconfig.ci └── src ├── CMakeLists.txt ├── Config.h ├── Connection.cpp ├── Connection.h ├── HSPI.cpp ├── HSPI.h ├── Kconfig.projbuild ├── Listener.cpp ├── Listener.h ├── Misc.cpp ├── Misc.h ├── PooledStrings.h ├── SocketServer.cpp ├── SocketServer.h ├── component.mk ├── ecv.h ├── include └── MessageFormats.h └── ld └── local.eagle.app.v6.common.ld /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.cproject -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.dimInactiveRegions": false 3 | } -------------------------------------------------------------------------------- /BuildRelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/BuildRelease.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DWSS.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/DWSS.code-workspace -------------------------------------------------------------------------------- /DWSSesp32.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/DWSSesp32.code-workspace -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/README.md -------------------------------------------------------------------------------- /components/arduino/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/CMakeLists.txt -------------------------------------------------------------------------------- /components/arduino/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/Kconfig.projbuild -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Arduino.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Client.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Esp.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Esp.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/FunctionalInterrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/FunctionalInterrupt.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/FunctionalInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/FunctionalInterrupt.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/HardwareSerial.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/HardwareSerial.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/IPAddress.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/IPAddress.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/IPv6Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/IPv6Address.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/IPv6Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/IPv6Address.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/MD5Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/MD5Builder.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/MD5Builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/MD5Builder.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Print.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Print.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Printable.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Server.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Stream.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Stream.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/StreamString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/StreamString.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/StreamString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/StreamString.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/USB.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/USB.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/USBCDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/USBCDC.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/USBCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/USBCDC.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/Udp.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/WCharacter.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/WMath.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/WString.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/WString.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/apps/sntp/sntp.h: -------------------------------------------------------------------------------- 1 | #include "lwip/apps/sntp.h" 2 | -------------------------------------------------------------------------------- /components/arduino/cores/esp32/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/base64.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/base64.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/binary.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/cbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/cbuf.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/cbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/cbuf.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-adc.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-adc.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-bt.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-bt.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-cpu.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-cpu.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-dac.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-dac.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-gpio.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-gpio.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-i2c.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-i2c.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-ledc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-ledc.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-ledc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-ledc.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-log.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-matrix.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-matrix.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-misc.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-psram.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-psram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-psram.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-rmt.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-rmt.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-sigmadelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-sigmadelta.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-sigmadelta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-sigmadelta.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-spi.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-spi.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-time.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-timer.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-timer.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-tinyusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-tinyusb.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-tinyusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-tinyusb.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-touch.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-touch.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-uart.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal-uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal-uart.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp32-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp32-hal.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp8266-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp8266-compat.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/esp_arduino_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/esp_arduino_version.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/AUTHORS -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/LICENSE -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/cdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/cdecode.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/cdecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/cdecode.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/cencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/cencode.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/libb64/cencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/libb64/cencode.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/main.cpp -------------------------------------------------------------------------------- /components/arduino/cores/esp32/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/pgmspace.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/stdlib_noniso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/stdlib_noniso.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/stdlib_noniso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/stdlib_noniso.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/wiring_private.h -------------------------------------------------------------------------------- /components/arduino/cores/esp32/wiring_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/wiring_pulse.c -------------------------------------------------------------------------------- /components/arduino/cores/esp32/wiring_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/cores/esp32/wiring_shift.c -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/examples/AsyncUDPClient/AsyncUDPClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/examples/AsyncUDPClient/AsyncUDPClient.ino -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/examples/AsyncUDPMulticastServer/AsyncUDPMulticastServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/examples/AsyncUDPMulticastServer/AsyncUDPMulticastServer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/examples/AsyncUDPServer/AsyncUDPServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/examples/AsyncUDPServer/AsyncUDPServer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/src/AsyncUDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/src/AsyncUDP.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/AsyncUDP/src/AsyncUDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/AsyncUDP/src/AsyncUDP.h -------------------------------------------------------------------------------- /components/arduino/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino -------------------------------------------------------------------------------- /components/arduino/libraries/DNSServer/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/DNSServer/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/DNSServer/src/DNSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/DNSServer/src/DNSServer.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/DNSServer/src/DNSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/DNSServer/src/DNSServer.h -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/README.md -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/examples/eeprom_class/eeprom_class.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/examples/eeprom_class/eeprom_class.ino -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/examples/eeprom_extra/eeprom_extra.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/examples/eeprom_extra/eeprom_extra.ino -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/examples/eeprom_write/eeprom_write.ino -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/src/EEPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/src/EEPROM.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/EEPROM/src/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/EEPROM/src/EEPROM.h -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/AnalogOut/LEDCSoftwareFade/LEDCSoftwareFade.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/AnalogOut/LEDCSoftwareFade/LEDCSoftwareFade.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/AnalogOut/SigmaDelta/SigmaDelta.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/AnalogOut/SigmaDelta/SigmaDelta.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/AnalogOut/ledcWrite_RGB/ledcWrite_RGB.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/AnalogOut/ledcWrite_RGB/ledcWrite_RGB.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/CameraWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/CameraWebServer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/app_httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/app_httpd.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/camera_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/camera_index.h -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Camera/CameraWebServer/camera_pins.h -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ChipID/GetChipID/GetChipID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ChipID/GetChipID/GetChipID.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/DeepSleep/ExternalWakeUp/ExternalWakeUp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/DeepSleep/ExternalWakeUp/ExternalWakeUp.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/DeepSleep/TimerWakeUp/TimerWakeUp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/DeepSleep/TimerWakeUp/TimerWakeUp.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/DeepSleep/TouchWakeUp/TouchWakeUp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/DeepSleep/TouchWakeUp/TouchWakeUp.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ESPNow/Basic/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ESPNow/Basic/Master/Master.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ESPNow/Basic/Slave/Slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ESPNow/Basic/Slave/Slave.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ESPNow/Multi-Slave/Master/Master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ESPNow/Multi-Slave/Master/Master.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ESPNow/Multi-Slave/Slave/Slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ESPNow/Multi-Slave/Slave/Slave.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/FreeRTOS/FreeRTOS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/FreeRTOS/FreeRTOS.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/GPIO/FunctionalInterrupt/FunctionalInterrupt.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/GPIO/GPIOInterrupt/GPIOInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/GPIO/GPIOInterrupt/GPIOInterrupt.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/HallSensor/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/HallSensor/HallSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/HallSensor/HallSensor.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/I2S/HiFreq_ADC/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/I2S/HiFreq_ADC/HiFreq_ADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/I2S/HiFreq_ADC/HiFreq_ADC.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/RMT/RMTCallback/RMTCallback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/RMT/RMTCallback/RMTCallback.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/RMT/RMTLoopback/RMTLoopback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/RMT/RMTLoopback/RMTLoopback.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/RMT/RMTReadXJT/RMTReadXJT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/RMT/RMTReadXJT/RMTReadXJT.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/RMT/RMTWriteNeoPixel/RMTWriteNeoPixel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/RMT/RMTWriteNeoPixel/RMTWriteNeoPixel.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/ResetReason/ResetReason.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/ResetReason/ResetReason.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Time/SimpleTime/SimpleTime.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Time/SimpleTime/SimpleTime.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Timer/RepeatTimer/RepeatTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Timer/RepeatTimer/RepeatTimer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Timer/WatchdogTimer/WatchdogTimer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Timer/WatchdogTimer/WatchdogTimer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Touch/TouchInterrupt/TouchInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Touch/TouchInterrupt/TouchInterrupt.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/examples/Touch/TouchRead/TouchRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/examples/Touch/TouchRead/TouchRead.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/ESP32/src/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESP32/src/dummy.h -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/examples/mDNS-SD_Extended/mDNS-SD_Extended.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/examples/mDNS-SD_Extended/mDNS-SD_Extended.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/examples/mDNS_Web_Server/mDNS_Web_Server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/examples/mDNS_Web_Server/mDNS_Web_Server.ino -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/src/ESPmDNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/src/ESPmDNS.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/ESPmDNS/src/ESPmDNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/ESPmDNS/src/ESPmDNS.h -------------------------------------------------------------------------------- /components/arduino/libraries/FS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/FS/src/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/src/FS.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/FS/src/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/src/FS.h -------------------------------------------------------------------------------- /components/arduino/libraries/FS/src/FSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/src/FSImpl.h -------------------------------------------------------------------------------- /components/arduino/libraries/FS/src/vfs_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/src/vfs_api.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/FS/src/vfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/FS/src/vfs_api.h -------------------------------------------------------------------------------- /components/arduino/libraries/NetBIOS/examples/ESP_NBNST/ESP_NBNST.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/NetBIOS/examples/ESP_NBNST/ESP_NBNST.ino -------------------------------------------------------------------------------- /components/arduino/libraries/NetBIOS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/NetBIOS/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/NetBIOS/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/NetBIOS/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/NetBIOS/src/NetBIOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/NetBIOS/src/NetBIOS.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/NetBIOS/src/NetBIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/NetBIOS/src/NetBIOS.h -------------------------------------------------------------------------------- /components/arduino/libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/README.md -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/examples/SPI_Multiple_Buses/multiple_bus_output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/examples/SPI_Multiple_Buses/multiple_bus_output.PNG -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/ETH_LAN8720/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/ETH_LAN8720/ETH_LAN8720.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/ETH_LAN8720/ETH_LAN8720.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/ETH_TLK110/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/ETH_TLK110/ETH_TLK110.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/ETH_TLK110/ETH_TLK110.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WPS/README.md -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WPS/WPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WPS/WPS.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiBlueToothSwitch/.skip.esp32s2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiBlueToothSwitch/WiFiBlueToothSwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiBlueToothSwitch/WiFiBlueToothSwitch.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClient/WiFiClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClient/WiFiClient.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClientEnterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClientEnterprise/README.md -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClientEnterprise/WiFiClientEnterprise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClientEnterprise/WiFiClientEnterprise.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClientEvents/WiFiClientEvents.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClientEvents/WiFiClientEvents.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiClientStaticIP/WiFiClientStaticIP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiClientStaticIP/WiFiClientStaticIP.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiMulti/WiFiMulti.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiScan/WiFiScan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiScan/WiFiScan.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiSmartConfig/WiFiSmartConfig.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiSmartConfig/WiFiSmartConfig.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiTelnetToSerial/WiFiTelnetToSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiTelnetToSerial/WiFiTelnetToSerial.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiUDPClient/WiFiUDPClient.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiUDPClient/WiFiUDPClient.ino -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiUDPClient/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiUDPClient/udp_server.py -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/examples/WiFiUDPClient/udp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/examples/WiFiUDPClient/udp_server.rb -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/ETH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/ETH.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/ETH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/ETH.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFi.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFi.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiAP.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiAP.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiClient.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiClient.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiGeneric.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiGeneric.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiMulti.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiMulti.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiSTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiSTA.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiSTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiSTA.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiScan.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiScan.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiServer.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiServer.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiType.h -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiUdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiUdp.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/WiFi/src/WiFiUdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/WiFi/src/WiFiUdp.h -------------------------------------------------------------------------------- /components/arduino/libraries/Wire/doc/i2c_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/Wire/doc/i2c_debugging.md -------------------------------------------------------------------------------- /components/arduino/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /components/arduino/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/Wire/library.properties -------------------------------------------------------------------------------- /components/arduino/libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /components/arduino/libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /components/arduino/variants/esp32/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/components/arduino/variants/esp32/pins_arduino.h -------------------------------------------------------------------------------- /esp32_partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/esp32_partitions.csv -------------------------------------------------------------------------------- /flash.cmd: -------------------------------------------------------------------------------- 1 | esptool.py --chip esp32 --port com6 write_flash 0x0 .\build\DuetWiFiServer.bin -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/main/main.cpp -------------------------------------------------------------------------------- /releases/1.23-02/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.23-02/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.23-02/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.23-02/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.23-02/DuetWiFiServer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.23-02/DuetWiFiServer.bin -------------------------------------------------------------------------------- /releases/1.24-01/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-01/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.24-01/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-01/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.24-01/DuetWiFiServer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-01/DuetWiFiServer.bin -------------------------------------------------------------------------------- /releases/1.24-02/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-02/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.24-02/DuetWiFiServer-lpc-el.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-02/DuetWiFiServer-lpc-el.bin -------------------------------------------------------------------------------- /releases/1.24-02/DuetWiFiServer-lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-02/DuetWiFiServer-lpc.bin -------------------------------------------------------------------------------- /releases/1.24-02/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-02/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.24-03/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-03/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.24-03/DuetWiFiServer-lpc-el.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-03/DuetWiFiServer-lpc-el.bin -------------------------------------------------------------------------------- /releases/1.24-03/DuetWiFiServer-lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-03/DuetWiFiServer-lpc.bin -------------------------------------------------------------------------------- /releases/1.24-03/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.24-03/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.25-01/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25-01/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.25-01/DuetWiFiServer-lpc-el.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25-01/DuetWiFiServer-lpc-el.bin -------------------------------------------------------------------------------- /releases/1.25-01/DuetWiFiServer-lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25-01/DuetWiFiServer-lpc.bin -------------------------------------------------------------------------------- /releases/1.25-01/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25-01/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.25B0-01/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25B0-01/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.25B0-01/DuetWiFiServer-lpc-el.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25B0-01/DuetWiFiServer-lpc-el.bin -------------------------------------------------------------------------------- /releases/1.25B0-01/DuetWiFiServer-lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25B0-01/DuetWiFiServer-lpc.bin -------------------------------------------------------------------------------- /releases/1.25B0-01/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.25B0-01/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.26-03/DuetWiFiServer-duet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-03/DuetWiFiServer-duet.bin -------------------------------------------------------------------------------- /releases/1.26-03/DuetWiFiServer-esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-03/DuetWiFiServer-esp32.bin -------------------------------------------------------------------------------- /releases/1.26-03/DuetWiFiServer-lpc-el.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-03/DuetWiFiServer-lpc-el.bin -------------------------------------------------------------------------------- /releases/1.26-03/DuetWiFiServer-lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-03/DuetWiFiServer-lpc.bin -------------------------------------------------------------------------------- /releases/1.26-03/DuetWiFiServer-stm32f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-03/DuetWiFiServer-stm32f4.bin -------------------------------------------------------------------------------- /releases/1.26-04/DuetWiFiServer-esp32-stm32f4-1.26-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-04/DuetWiFiServer-esp32-stm32f4-1.26-04.bin -------------------------------------------------------------------------------- /releases/1.26-04/DuetWiFiServer-esp8256-lpc-1.26-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-04/DuetWiFiServer-esp8256-lpc-1.26-04.bin -------------------------------------------------------------------------------- /releases/1.26-04/DuetWiFiServer-esp8256-stm32f4-1.26-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-04/DuetWiFiServer-esp8256-stm32f4-1.26-04.bin -------------------------------------------------------------------------------- /releases/1.26-05/DuetWiFiServer-esp32-stm32f4-1.26-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-05/DuetWiFiServer-esp32-stm32f4-1.26-05.bin -------------------------------------------------------------------------------- /releases/1.26-05/DuetWiFiServer-esp8266-lpc-1.26-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-05/DuetWiFiServer-esp8266-lpc-1.26-05.bin -------------------------------------------------------------------------------- /releases/1.26-05/DuetWiFiServer-esp8266-stm32f4-1.26-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-05/DuetWiFiServer-esp8266-stm32f4-1.26-05.bin -------------------------------------------------------------------------------- /releases/1.26-06/DuetWiFiServer-esp32-stm32f4-1.26-06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-06/DuetWiFiServer-esp32-stm32f4-1.26-06.bin -------------------------------------------------------------------------------- /releases/1.26-06/DuetWiFiServer-esp8266-lpc-1.26-06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-06/DuetWiFiServer-esp8266-lpc-1.26-06.bin -------------------------------------------------------------------------------- /releases/1.26-06/DuetWiFiServer-esp8266-stm32f4-1.26-06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-06/DuetWiFiServer-esp8266-stm32f4-1.26-06.bin -------------------------------------------------------------------------------- /releases/1.26-07/DuetWiFiServer-esp32-stm32f4-1.26-07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-07/DuetWiFiServer-esp32-stm32f4-1.26-07.bin -------------------------------------------------------------------------------- /releases/1.26-07/DuetWiFiServer-esp8266-lpc-1.26-07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-07/DuetWiFiServer-esp8266-lpc-1.26-07.bin -------------------------------------------------------------------------------- /releases/1.26-07/DuetWiFiServer-esp8266-stm32f4-1.26-07.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-07/DuetWiFiServer-esp8266-stm32f4-1.26-07.bin -------------------------------------------------------------------------------- /releases/1.26-08/DuetWiFiServer-esp32-stm32f4-1.26-08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-08/DuetWiFiServer-esp32-stm32f4-1.26-08.bin -------------------------------------------------------------------------------- /releases/1.26-08/DuetWiFiServer-esp8266-lpc-1.26-08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-08/DuetWiFiServer-esp8266-lpc-1.26-08.bin -------------------------------------------------------------------------------- /releases/1.26-08/DuetWiFiServer-esp8266-stm32f4-1.26-08.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-08/DuetWiFiServer-esp8266-stm32f4-1.26-08.bin -------------------------------------------------------------------------------- /releases/1.26-09/DuetWiFiServer-esp32-stm32-1.26-09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-09/DuetWiFiServer-esp32-stm32-1.26-09.bin -------------------------------------------------------------------------------- /releases/1.26-09/DuetWiFiServer-esp8266-lpc-1.26-09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-09/DuetWiFiServer-esp8266-lpc-1.26-09.bin -------------------------------------------------------------------------------- /releases/1.26-09/DuetWiFiServer-esp8266-stm32-1.26-09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.26-09/DuetWiFiServer-esp8266-stm32-1.26-09.bin -------------------------------------------------------------------------------- /releases/1.27-01/DuetWiFiServer-esp32-stm32-1.27-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-01/DuetWiFiServer-esp32-stm32-1.27-01.bin -------------------------------------------------------------------------------- /releases/1.27-01/DuetWiFiServer-esp8266-lpc-1.27-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-01/DuetWiFiServer-esp8266-lpc-1.27-01.bin -------------------------------------------------------------------------------- /releases/1.27-01/DuetWiFiServer-esp8266-stm32-1.27-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-01/DuetWiFiServer-esp8266-stm32-1.27-01.bin -------------------------------------------------------------------------------- /releases/1.27-02/DuetWiFiServer-esp32-stm32-1.27-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-02/DuetWiFiServer-esp32-stm32-1.27-02.bin -------------------------------------------------------------------------------- /releases/1.27-02/DuetWiFiServer-esp8266-lpc-1.27-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-02/DuetWiFiServer-esp8266-lpc-1.27-02.bin -------------------------------------------------------------------------------- /releases/1.27-02/DuetWiFiServer-esp8266-stm32-1.27-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-02/DuetWiFiServer-esp8266-stm32-1.27-02.bin -------------------------------------------------------------------------------- /releases/1.27-03/DuetWiFiServer-esp32-stm32-1.27-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03/DuetWiFiServer-esp32-stm32-1.27-03.bin -------------------------------------------------------------------------------- /releases/1.27-03/DuetWiFiServer-esp8266-lpc-1.27-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03/DuetWiFiServer-esp8266-lpc-1.27-03.bin -------------------------------------------------------------------------------- /releases/1.27-03/DuetWiFiServer-esp8266-stm32-1.27-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03/DuetWiFiServer-esp8266-stm32-1.27-03.bin -------------------------------------------------------------------------------- /releases/1.27-03a/DuetWiFiServer-esp32-stm32-1.27-03a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03a/DuetWiFiServer-esp32-stm32-1.27-03a.bin -------------------------------------------------------------------------------- /releases/1.27-03a/DuetWiFiServer-esp8266-lpc-1.27-03a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03a/DuetWiFiServer-esp8266-lpc-1.27-03a.bin -------------------------------------------------------------------------------- /releases/1.27-03a/DuetWiFiServer-esp8266-stm32-1.27-03a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-03a/DuetWiFiServer-esp8266-stm32-1.27-03a.bin -------------------------------------------------------------------------------- /releases/1.27-04/DuetWiFiServer-esp32-stm32-1.27-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-04/DuetWiFiServer-esp32-stm32-1.27-04.bin -------------------------------------------------------------------------------- /releases/1.27-04/DuetWiFiServer-esp8266-lpc-1.27-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-04/DuetWiFiServer-esp8266-lpc-1.27-04.bin -------------------------------------------------------------------------------- /releases/1.27-04/DuetWiFiServer-esp8266-stm32-1.27-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27-04/DuetWiFiServer-esp8266-stm32-1.27-04.bin -------------------------------------------------------------------------------- /releases/1.27beta1-01/DuetWiFiServer-esp32-stm32-1.27beta1-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27beta1-01/DuetWiFiServer-esp32-stm32-1.27beta1-01.bin -------------------------------------------------------------------------------- /releases/1.27beta1-01/DuetWiFiServer-esp8266-lpc-1.27beta1-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27beta1-01/DuetWiFiServer-esp8266-lpc-1.27beta1-01.bin -------------------------------------------------------------------------------- /releases/1.27beta1-01/DuetWiFiServer-esp8266-stm32-1.27beta1-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/releases/1.27beta1-01/DuetWiFiServer-esp8266-stm32-1.27beta1-01.bin -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/sdkconfig.ci -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Connection.cpp -------------------------------------------------------------------------------- /src/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Connection.h -------------------------------------------------------------------------------- /src/HSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/HSPI.cpp -------------------------------------------------------------------------------- /src/HSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/HSPI.h -------------------------------------------------------------------------------- /src/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Kconfig.projbuild -------------------------------------------------------------------------------- /src/Listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Listener.cpp -------------------------------------------------------------------------------- /src/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Listener.h -------------------------------------------------------------------------------- /src/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Misc.cpp -------------------------------------------------------------------------------- /src/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/Misc.h -------------------------------------------------------------------------------- /src/PooledStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/PooledStrings.h -------------------------------------------------------------------------------- /src/SocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/SocketServer.cpp -------------------------------------------------------------------------------- /src/SocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/SocketServer.h -------------------------------------------------------------------------------- /src/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/component.mk -------------------------------------------------------------------------------- /src/ecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/ecv.h -------------------------------------------------------------------------------- /src/include/MessageFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/include/MessageFormats.h -------------------------------------------------------------------------------- /src/ld/local.eagle.app.v6.common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gloomyandy/DuetWiFiSocketServer/HEAD/src/ld/local.eagle.app.v6.common.ld --------------------------------------------------------------------------------