├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── AT commands for TEST mode.txt ├── Timezones.xlsx ├── baud prescalar.xlsx └── nextreg-TBBLUE.30007.SPRITES.txt ├── dot └── NXTP ├── esp ├── ESP8266_FULL_V3.3_SPUGS.bin ├── ESP8266_FULL_V3.3_SPUGS.piz └── ESP8266_FULL_V3.3_SPUGS │ ├── ESP8266_FULL_V3.3_SPUGS.bin │ ├── esptool.py │ └── update.bat └── src ├── asm ├── constants.asm ├── esp.asm ├── esxDOS.asm ├── macros.asm ├── main.asm ├── msg.asm ├── parse.asm ├── vars.asm └── version.asm └── core ├── Nxtp.sln ├── NxtpClient ├── NxtpClient.csproj ├── Program.cs └── Properties │ └── launchSettings.json ├── NxtpData ├── Client.cs ├── NxtpData.csproj ├── Request │ ├── INxtpRequest.cs │ ├── NxtpRequestFactory.cs │ └── NxtpRequestV1.cs ├── Response │ ├── INxtpResponse.cs │ └── NxtpResponseV1.cs └── TimezoneData.cs └── NxtpServer ├── Classes └── Options.cs ├── NxtpServer.appsettings.json ├── NxtpServer.csproj ├── Program.cs └── Properties └── launchSettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/README.md -------------------------------------------------------------------------------- /docs/AT commands for TEST mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/docs/AT commands for TEST mode.txt -------------------------------------------------------------------------------- /docs/Timezones.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/docs/Timezones.xlsx -------------------------------------------------------------------------------- /docs/baud prescalar.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/docs/baud prescalar.xlsx -------------------------------------------------------------------------------- /docs/nextreg-TBBLUE.30007.SPRITES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/docs/nextreg-TBBLUE.30007.SPRITES.txt -------------------------------------------------------------------------------- /dot/NXTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/dot/NXTP -------------------------------------------------------------------------------- /esp/ESP8266_FULL_V3.3_SPUGS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/esp/ESP8266_FULL_V3.3_SPUGS.bin -------------------------------------------------------------------------------- /esp/ESP8266_FULL_V3.3_SPUGS.piz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/esp/ESP8266_FULL_V3.3_SPUGS.piz -------------------------------------------------------------------------------- /esp/ESP8266_FULL_V3.3_SPUGS/ESP8266_FULL_V3.3_SPUGS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/esp/ESP8266_FULL_V3.3_SPUGS/ESP8266_FULL_V3.3_SPUGS.bin -------------------------------------------------------------------------------- /esp/ESP8266_FULL_V3.3_SPUGS/esptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/esp/ESP8266_FULL_V3.3_SPUGS/esptool.py -------------------------------------------------------------------------------- /esp/ESP8266_FULL_V3.3_SPUGS/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/esp/ESP8266_FULL_V3.3_SPUGS/update.bat -------------------------------------------------------------------------------- /src/asm/constants.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/constants.asm -------------------------------------------------------------------------------- /src/asm/esp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/esp.asm -------------------------------------------------------------------------------- /src/asm/esxDOS.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/esxDOS.asm -------------------------------------------------------------------------------- /src/asm/macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/macros.asm -------------------------------------------------------------------------------- /src/asm/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/main.asm -------------------------------------------------------------------------------- /src/asm/msg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/msg.asm -------------------------------------------------------------------------------- /src/asm/parse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/parse.asm -------------------------------------------------------------------------------- /src/asm/vars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/vars.asm -------------------------------------------------------------------------------- /src/asm/version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/asm/version.asm -------------------------------------------------------------------------------- /src/core/Nxtp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/Nxtp.sln -------------------------------------------------------------------------------- /src/core/NxtpClient/NxtpClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpClient/NxtpClient.csproj -------------------------------------------------------------------------------- /src/core/NxtpClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpClient/Program.cs -------------------------------------------------------------------------------- /src/core/NxtpClient/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpClient/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/core/NxtpData/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Client.cs -------------------------------------------------------------------------------- /src/core/NxtpData/NxtpData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/NxtpData.csproj -------------------------------------------------------------------------------- /src/core/NxtpData/Request/INxtpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Request/INxtpRequest.cs -------------------------------------------------------------------------------- /src/core/NxtpData/Request/NxtpRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Request/NxtpRequestFactory.cs -------------------------------------------------------------------------------- /src/core/NxtpData/Request/NxtpRequestV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Request/NxtpRequestV1.cs -------------------------------------------------------------------------------- /src/core/NxtpData/Response/INxtpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Response/INxtpResponse.cs -------------------------------------------------------------------------------- /src/core/NxtpData/Response/NxtpResponseV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/Response/NxtpResponseV1.cs -------------------------------------------------------------------------------- /src/core/NxtpData/TimezoneData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpData/TimezoneData.cs -------------------------------------------------------------------------------- /src/core/NxtpServer/Classes/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpServer/Classes/Options.cs -------------------------------------------------------------------------------- /src/core/NxtpServer/NxtpServer.appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpServer/NxtpServer.appsettings.json -------------------------------------------------------------------------------- /src/core/NxtpServer/NxtpServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpServer/NxtpServer.csproj -------------------------------------------------------------------------------- /src/core/NxtpServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpServer/Program.cs -------------------------------------------------------------------------------- /src/core/NxtpServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Threetwosevensixseven/nxtp/HEAD/src/core/NxtpServer/Properties/launchSettings.json --------------------------------------------------------------------------------