├── .github ├── FUNDING.yml ├── actions │ └── setup-base │ │ └── action.yml └── workflows │ ├── auto_delete_workflows.yml │ ├── build_esp32.yml │ ├── build_esp32_s3.yml │ └── main_matrix.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── arch └── esp32 │ ├── esp32.ini │ └── esp32s3.ini ├── bin ├── build-esp32.sh ├── build-native.sh ├── buildinfo.py ├── bump_version.py ├── device-install.bat ├── device-install.sh ├── device-update.bat ├── device-update.sh ├── platformio-custom.py ├── promote-release.bat ├── promote-release.sh └── readprops.py ├── data └── static │ └── .gitkeep ├── doc ├── APRS-ESP32_SA8x8_Rev_D_PCB.png ├── APRS-ESP32_SA8x8_Rev_D_Schematics.png ├── SA818 1W Embedded walkie talkie moduleV3.4.pdf ├── SA818 programming manual.pdf ├── SA868 2W Embedded walkie talkie moduleV1.3.pdf └── mod-hw-devel.md ├── hardware ├── 3D Enclosure │ └── APRS-ESP Simple Case.stl ├── APRS-ESP32_SA8x8_Rev_D.brd ├── APRS-ESP32_SA8x8_Rev_D.sch ├── APRS-ESP32_SA8x8_Rev_D_BOM.txt ├── APRS-ESP32_SA8x8_Rev_D_Schematics.pdf ├── GERBER │ └── APRS-ESP32_SA8x8_V1.7_Rev_D_2022-10-27.zip ├── GERBER_2 │ └── esp32-esp32s3_adapter_2023-06-12_RevC.zip ├── GERBER_3 │ └── esp32-esp32s3_adapter_for_2.0_2023-07-13.zip ├── GERBER_4 │ ├── CAMOutputs │ │ └── Assembly │ │ │ └── audio-adapter.txt │ └── audio-adapter_2023-06-12.zip ├── LILYGO-T-TWR-pinout-diagram.jpg ├── T-TWR-Plus_Rev2.0.pdf ├── T-TWR_1.x.pdf ├── T=TWR PLUS PINMAP.png ├── audio-adapter.brd ├── audio-adapter.sch ├── esp32-esp32s3_adapter.brd ├── esp32-esp32s3_adapter.sch ├── jlcpcb2layer.dru └── libraries │ ├── 13oled.lbr │ ├── CON-SOCJ-2155.lbr │ ├── ESP32-DEVKITC.lbr │ ├── ESP32-DEVKITV1.lbr │ ├── ESP32-S3-WROOM-1-N16R2.lbr │ ├── ESP32-WROOM-32E__16MB_.lbr │ ├── SparkFun-Coils.lbr │ ├── SparkFun-Connectors.lbr │ ├── SparkFun-Switches.lbr │ ├── XT60.lbr │ ├── XT60PW-M.lbr │ ├── _hhn_diodes_smd.lbr │ ├── con-coax.lbr │ ├── connector.lbr │ ├── dorji.lbr │ ├── tft_1_8_1_44_oled_0_96.lbr │ └── userlib.lbr ├── include ├── config.h ├── digirepeater.h ├── gps.h ├── igate.h ├── main.h ├── oled.h ├── parse_aprs.h ├── pbuf.h ├── pinout.h ├── pkgList.h ├── rfModem.h ├── rotaryProc.h ├── smartBeaconing.h ├── utilities.h └── webservice.h ├── lib ├── Adafruit_SH1106 │ ├── Adafruit_SH1106.cpp │ ├── Adafruit_SH1106.h │ ├── LICENSE.txt │ ├── README.md │ └── examples │ │ ├── sh1106_128x64_i2c │ │ └── sh1106_128x64_i2c.ino │ │ └── sh1106_128x64_spi │ │ └── sh1106_128x64_spi.ino ├── LibAPRS_ESP32 │ ├── AFSK.cpp │ ├── AFSK.h │ ├── AX25.cpp │ ├── AX25.h │ ├── CRC-CCIT.c │ ├── CRC-CCIT.h │ ├── FIFO.h │ ├── HDLC.h │ ├── KISS.cpp │ ├── KISS.h │ ├── LibAPRS.cpp │ ├── LibAPRSesp.h │ ├── fir_filter.cpp │ └── fir_filter.h └── TimeLib │ ├── TimeLib.cpp │ └── TimeLib.h ├── partitions.csv ├── platformio.ini ├── release ├── .gitignore └── latest │ └── .gitignore ├── src ├── config.cpp ├── digirepeater.cpp ├── gps.cpp ├── igate.cpp ├── main.cpp ├── oled.cpp ├── parse_aprs.cpp ├── pkgList.cpp ├── rfModem.cpp ├── rotaryProc.cpp ├── smartBeaconing.cpp ├── utilities.cpp └── webservice.cpp ├── variants ├── esp32dev-sa818-868 │ ├── platformio.ini │ └── variant.h ├── esp32dev-t-twr-mod │ ├── platformio.ini │ └── variant.h ├── lilygo-t-twr-plus │ ├── platformio.ini │ └── variant.h └── lilygo-t-twr-v1 │ ├── platformio.ini │ └── variant.h └── version.properties /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/setup-base/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/actions/setup-base/action.yml -------------------------------------------------------------------------------- /.github/workflows/auto_delete_workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/workflows/auto_delete_workflows.yml -------------------------------------------------------------------------------- /.github/workflows/build_esp32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/workflows/build_esp32.yml -------------------------------------------------------------------------------- /.github/workflows/build_esp32_s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/workflows/build_esp32_s3.yml -------------------------------------------------------------------------------- /.github/workflows/main_matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.github/workflows/main_matrix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/README.md -------------------------------------------------------------------------------- /arch/esp32/esp32.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/arch/esp32/esp32.ini -------------------------------------------------------------------------------- /arch/esp32/esp32s3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/arch/esp32/esp32s3.ini -------------------------------------------------------------------------------- /bin/build-esp32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/build-esp32.sh -------------------------------------------------------------------------------- /bin/build-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/build-native.sh -------------------------------------------------------------------------------- /bin/buildinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/buildinfo.py -------------------------------------------------------------------------------- /bin/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/bump_version.py -------------------------------------------------------------------------------- /bin/device-install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/device-install.bat -------------------------------------------------------------------------------- /bin/device-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/device-install.sh -------------------------------------------------------------------------------- /bin/device-update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/device-update.bat -------------------------------------------------------------------------------- /bin/device-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/device-update.sh -------------------------------------------------------------------------------- /bin/platformio-custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/platformio-custom.py -------------------------------------------------------------------------------- /bin/promote-release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/promote-release.bat -------------------------------------------------------------------------------- /bin/promote-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/promote-release.sh -------------------------------------------------------------------------------- /bin/readprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/bin/readprops.py -------------------------------------------------------------------------------- /data/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/APRS-ESP32_SA8x8_Rev_D_PCB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/APRS-ESP32_SA8x8_Rev_D_PCB.png -------------------------------------------------------------------------------- /doc/APRS-ESP32_SA8x8_Rev_D_Schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/APRS-ESP32_SA8x8_Rev_D_Schematics.png -------------------------------------------------------------------------------- /doc/SA818 1W Embedded walkie talkie moduleV3.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/SA818 1W Embedded walkie talkie moduleV3.4.pdf -------------------------------------------------------------------------------- /doc/SA818 programming manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/SA818 programming manual.pdf -------------------------------------------------------------------------------- /doc/SA868 2W Embedded walkie talkie moduleV1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/SA868 2W Embedded walkie talkie moduleV1.3.pdf -------------------------------------------------------------------------------- /doc/mod-hw-devel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/doc/mod-hw-devel.md -------------------------------------------------------------------------------- /hardware/3D Enclosure/APRS-ESP Simple Case.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/3D Enclosure/APRS-ESP Simple Case.stl -------------------------------------------------------------------------------- /hardware/APRS-ESP32_SA8x8_Rev_D.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/APRS-ESP32_SA8x8_Rev_D.brd -------------------------------------------------------------------------------- /hardware/APRS-ESP32_SA8x8_Rev_D.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/APRS-ESP32_SA8x8_Rev_D.sch -------------------------------------------------------------------------------- /hardware/APRS-ESP32_SA8x8_Rev_D_BOM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/APRS-ESP32_SA8x8_Rev_D_BOM.txt -------------------------------------------------------------------------------- /hardware/APRS-ESP32_SA8x8_Rev_D_Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/APRS-ESP32_SA8x8_Rev_D_Schematics.pdf -------------------------------------------------------------------------------- /hardware/GERBER/APRS-ESP32_SA8x8_V1.7_Rev_D_2022-10-27.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/GERBER/APRS-ESP32_SA8x8_V1.7_Rev_D_2022-10-27.zip -------------------------------------------------------------------------------- /hardware/GERBER_2/esp32-esp32s3_adapter_2023-06-12_RevC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/GERBER_2/esp32-esp32s3_adapter_2023-06-12_RevC.zip -------------------------------------------------------------------------------- /hardware/GERBER_3/esp32-esp32s3_adapter_for_2.0_2023-07-13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/GERBER_3/esp32-esp32s3_adapter_for_2.0_2023-07-13.zip -------------------------------------------------------------------------------- /hardware/GERBER_4/CAMOutputs/Assembly/audio-adapter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/GERBER_4/CAMOutputs/Assembly/audio-adapter.txt -------------------------------------------------------------------------------- /hardware/GERBER_4/audio-adapter_2023-06-12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/GERBER_4/audio-adapter_2023-06-12.zip -------------------------------------------------------------------------------- /hardware/LILYGO-T-TWR-pinout-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/LILYGO-T-TWR-pinout-diagram.jpg -------------------------------------------------------------------------------- /hardware/T-TWR-Plus_Rev2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/T-TWR-Plus_Rev2.0.pdf -------------------------------------------------------------------------------- /hardware/T-TWR_1.x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/T-TWR_1.x.pdf -------------------------------------------------------------------------------- /hardware/T=TWR PLUS PINMAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/T=TWR PLUS PINMAP.png -------------------------------------------------------------------------------- /hardware/audio-adapter.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/audio-adapter.brd -------------------------------------------------------------------------------- /hardware/audio-adapter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/audio-adapter.sch -------------------------------------------------------------------------------- /hardware/esp32-esp32s3_adapter.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/esp32-esp32s3_adapter.brd -------------------------------------------------------------------------------- /hardware/esp32-esp32s3_adapter.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/esp32-esp32s3_adapter.sch -------------------------------------------------------------------------------- /hardware/jlcpcb2layer.dru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/jlcpcb2layer.dru -------------------------------------------------------------------------------- /hardware/libraries/13oled.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/13oled.lbr -------------------------------------------------------------------------------- /hardware/libraries/CON-SOCJ-2155.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/CON-SOCJ-2155.lbr -------------------------------------------------------------------------------- /hardware/libraries/ESP32-DEVKITC.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/ESP32-DEVKITC.lbr -------------------------------------------------------------------------------- /hardware/libraries/ESP32-DEVKITV1.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/ESP32-DEVKITV1.lbr -------------------------------------------------------------------------------- /hardware/libraries/ESP32-S3-WROOM-1-N16R2.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/ESP32-S3-WROOM-1-N16R2.lbr -------------------------------------------------------------------------------- /hardware/libraries/ESP32-WROOM-32E__16MB_.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/ESP32-WROOM-32E__16MB_.lbr -------------------------------------------------------------------------------- /hardware/libraries/SparkFun-Coils.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/SparkFun-Coils.lbr -------------------------------------------------------------------------------- /hardware/libraries/SparkFun-Connectors.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/SparkFun-Connectors.lbr -------------------------------------------------------------------------------- /hardware/libraries/SparkFun-Switches.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/SparkFun-Switches.lbr -------------------------------------------------------------------------------- /hardware/libraries/XT60.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/XT60.lbr -------------------------------------------------------------------------------- /hardware/libraries/XT60PW-M.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/XT60PW-M.lbr -------------------------------------------------------------------------------- /hardware/libraries/_hhn_diodes_smd.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/_hhn_diodes_smd.lbr -------------------------------------------------------------------------------- /hardware/libraries/con-coax.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/con-coax.lbr -------------------------------------------------------------------------------- /hardware/libraries/connector.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/connector.lbr -------------------------------------------------------------------------------- /hardware/libraries/dorji.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/dorji.lbr -------------------------------------------------------------------------------- /hardware/libraries/tft_1_8_1_44_oled_0_96.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/tft_1_8_1_44_oled_0_96.lbr -------------------------------------------------------------------------------- /hardware/libraries/userlib.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/hardware/libraries/userlib.lbr -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/config.h -------------------------------------------------------------------------------- /include/digirepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/digirepeater.h -------------------------------------------------------------------------------- /include/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/gps.h -------------------------------------------------------------------------------- /include/igate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/igate.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/main.h -------------------------------------------------------------------------------- /include/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/oled.h -------------------------------------------------------------------------------- /include/parse_aprs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/parse_aprs.h -------------------------------------------------------------------------------- /include/pbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/pbuf.h -------------------------------------------------------------------------------- /include/pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/pinout.h -------------------------------------------------------------------------------- /include/pkgList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/pkgList.h -------------------------------------------------------------------------------- /include/rfModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/rfModem.h -------------------------------------------------------------------------------- /include/rotaryProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/rotaryProc.h -------------------------------------------------------------------------------- /include/smartBeaconing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/smartBeaconing.h -------------------------------------------------------------------------------- /include/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/utilities.h -------------------------------------------------------------------------------- /include/webservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/include/webservice.h -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/Adafruit_SH1106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/Adafruit_SH1106.cpp -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/Adafruit_SH1106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/Adafruit_SH1106.h -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/LICENSE.txt -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/README.md -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/examples/sh1106_128x64_i2c/sh1106_128x64_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/examples/sh1106_128x64_i2c/sh1106_128x64_i2c.ino -------------------------------------------------------------------------------- /lib/Adafruit_SH1106/examples/sh1106_128x64_spi/sh1106_128x64_spi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/Adafruit_SH1106/examples/sh1106_128x64_spi/sh1106_128x64_spi.ino -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/AFSK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/AFSK.cpp -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/AFSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/AFSK.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/AX25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/AX25.cpp -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/AX25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/AX25.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/CRC-CCIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/CRC-CCIT.c -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/CRC-CCIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/CRC-CCIT.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/FIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/FIFO.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/HDLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/HDLC.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/KISS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/KISS.cpp -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/KISS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/KISS.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/LibAPRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/LibAPRS.cpp -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/LibAPRSesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/LibAPRSesp.h -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/fir_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/fir_filter.cpp -------------------------------------------------------------------------------- /lib/LibAPRS_ESP32/fir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/LibAPRS_ESP32/fir_filter.h -------------------------------------------------------------------------------- /lib/TimeLib/TimeLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/TimeLib/TimeLib.cpp -------------------------------------------------------------------------------- /lib/TimeLib/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/lib/TimeLib/TimeLib.h -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/partitions.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/platformio.ini -------------------------------------------------------------------------------- /release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/release/.gitignore -------------------------------------------------------------------------------- /release/latest/.gitignore: -------------------------------------------------------------------------------- 1 | curfirmwareversion.xml 2 | -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/digirepeater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/digirepeater.cpp -------------------------------------------------------------------------------- /src/gps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/gps.cpp -------------------------------------------------------------------------------- /src/igate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/igate.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/oled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/oled.cpp -------------------------------------------------------------------------------- /src/parse_aprs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/parse_aprs.cpp -------------------------------------------------------------------------------- /src/pkgList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/pkgList.cpp -------------------------------------------------------------------------------- /src/rfModem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/rfModem.cpp -------------------------------------------------------------------------------- /src/rotaryProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/rotaryProc.cpp -------------------------------------------------------------------------------- /src/smartBeaconing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/smartBeaconing.cpp -------------------------------------------------------------------------------- /src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/utilities.cpp -------------------------------------------------------------------------------- /src/webservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/src/webservice.cpp -------------------------------------------------------------------------------- /variants/esp32dev-sa818-868/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/esp32dev-sa818-868/platformio.ini -------------------------------------------------------------------------------- /variants/esp32dev-sa818-868/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/esp32dev-sa818-868/variant.h -------------------------------------------------------------------------------- /variants/esp32dev-t-twr-mod/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/esp32dev-t-twr-mod/platformio.ini -------------------------------------------------------------------------------- /variants/esp32dev-t-twr-mod/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/esp32dev-t-twr-mod/variant.h -------------------------------------------------------------------------------- /variants/lilygo-t-twr-plus/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/lilygo-t-twr-plus/platformio.ini -------------------------------------------------------------------------------- /variants/lilygo-t-twr-plus/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/lilygo-t-twr-plus/variant.h -------------------------------------------------------------------------------- /variants/lilygo-t-twr-v1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/lilygo-t-twr-v1/platformio.ini -------------------------------------------------------------------------------- /variants/lilygo-t-twr-v1/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/variants/lilygo-t-twr-v1/variant.h -------------------------------------------------------------------------------- /version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erstec/APRS-ESP/HEAD/version.properties --------------------------------------------------------------------------------