├── .github └── workflows │ ├── main.yml │ └── testbuild.yml ├── .gitignore ├── AIO_GPS_CONFIGURATOR.md ├── AOGConfigOMatic.sln ├── AOGConfigOMatic ├── AOGConfigOMatic.csproj ├── AOGConfigOMatic.ico ├── AgOpenGPS │ ├── AgOpenGpsControl.Designer.cs │ ├── AgOpenGpsControl.cs │ └── AgOpenGpsControl.resx ├── AioDeviceHelper.cs ├── AioPortIdentifier.cs ├── App.config ├── ConfigUM982.txt ├── ConfigUM982D.txt ├── ConfigUM982S.txt ├── DualPosition.txt ├── DualRelPos.txt ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Single.txt ├── Teensy │ ├── TeensyControl.Designer.cs │ ├── TeensyControl.cs │ └── TeensyControl.resx ├── UBX113.bin ├── UBlox │ ├── UBloxControl.Designer.cs │ ├── UBloxControl.cs │ └── UBloxControl.resx ├── UM982 │ ├── UM982Control.Designer.cs │ ├── UM982Control.cs │ └── UM982Control.resx ├── UsbSerialPortInfo.cs ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx └── ubxfwupdate.exe ├── CLAUDE.md ├── FEATURE_AGOPENGPS_TAB.md ├── Firmwares ├── All-In-One │ ├── AIO-2.5.hex │ ├── AIO-4.1.hex │ └── Experimental │ │ └── AIOv4-DHCP-Beta.hex ├── CANBUS │ ├── CANBUS (CommonRail).hex │ ├── CANBUS-AIO-Dual.hex │ ├── CANBUS-All-In-One.hex │ ├── Deutz │ │ └── DeutzComfortButton.hex │ ├── Fendt │ │ └── FendtLittleGoEnd.hex │ └── Massey-S-Series │ │ └── MasseyS-SeriesFix.hex ├── Keya │ ├── Keya-5AmpCutoff.hex │ ├── Keya-NonRVC.hex │ └── Keya.hex └── Utility │ ├── AiO GPS Configurator.hex │ ├── Blink.hex │ └── SavvyCAN │ ├── CANDumper-SavvyCANLog.hex │ ├── SLCAN-CAN1.hex │ ├── SLCAN-CAN2.hex │ └── SLCAN-CAN3.hex ├── INSTALLER.md ├── LICENSE ├── README.md ├── SetVersion.ps1 ├── TEENSY_LOCAL_FIRMWARE.md └── setup.iss /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/testbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/.github/workflows/testbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/.gitignore -------------------------------------------------------------------------------- /AIO_GPS_CONFIGURATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AIO_GPS_CONFIGURATOR.md -------------------------------------------------------------------------------- /AOGConfigOMatic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic.sln -------------------------------------------------------------------------------- /AOGConfigOMatic/AOGConfigOMatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AOGConfigOMatic.csproj -------------------------------------------------------------------------------- /AOGConfigOMatic/AOGConfigOMatic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AOGConfigOMatic.ico -------------------------------------------------------------------------------- /AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AgOpenGPS/AgOpenGpsControl.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/AioDeviceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AioDeviceHelper.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/AioPortIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/AioPortIdentifier.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/App.config -------------------------------------------------------------------------------- /AOGConfigOMatic/ConfigUM982.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/ConfigUM982.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/ConfigUM982D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/ConfigUM982D.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/ConfigUM982S.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/ConfigUM982S.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/DualPosition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/DualPosition.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/DualRelPos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/DualRelPos.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Program.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Properties/Resources.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Properties/Settings.settings -------------------------------------------------------------------------------- /AOGConfigOMatic/Single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Single.txt -------------------------------------------------------------------------------- /AOGConfigOMatic/Teensy/TeensyControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Teensy/TeensyControl.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Teensy/TeensyControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Teensy/TeensyControl.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/Teensy/TeensyControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/Teensy/TeensyControl.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/UBX113.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UBX113.bin -------------------------------------------------------------------------------- /AOGConfigOMatic/UBlox/UBloxControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UBlox/UBloxControl.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/UBlox/UBloxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UBlox/UBloxControl.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/UBlox/UBloxControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UBlox/UBloxControl.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/UM982/UM982Control.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UM982/UM982Control.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/UM982/UM982Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UM982/UM982Control.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/UM982/UM982Control.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UM982/UM982Control.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/UsbSerialPortInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/UsbSerialPortInfo.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/frmMain.Designer.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/frmMain.cs -------------------------------------------------------------------------------- /AOGConfigOMatic/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/frmMain.resx -------------------------------------------------------------------------------- /AOGConfigOMatic/ubxfwupdate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/AOGConfigOMatic/ubxfwupdate.exe -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /FEATURE_AGOPENGPS_TAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/FEATURE_AGOPENGPS_TAB.md -------------------------------------------------------------------------------- /Firmwares/All-In-One/AIO-2.5.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/All-In-One/AIO-2.5.hex -------------------------------------------------------------------------------- /Firmwares/All-In-One/AIO-4.1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/All-In-One/AIO-4.1.hex -------------------------------------------------------------------------------- /Firmwares/All-In-One/Experimental/AIOv4-DHCP-Beta.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/All-In-One/Experimental/AIOv4-DHCP-Beta.hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/CANBUS (CommonRail).hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/CANBUS (CommonRail).hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/CANBUS-AIO-Dual.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/CANBUS-AIO-Dual.hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/CANBUS-All-In-One.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/CANBUS-All-In-One.hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/Deutz/DeutzComfortButton.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/Deutz/DeutzComfortButton.hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/Fendt/FendtLittleGoEnd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/Fendt/FendtLittleGoEnd.hex -------------------------------------------------------------------------------- /Firmwares/CANBUS/Massey-S-Series/MasseyS-SeriesFix.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/CANBUS/Massey-S-Series/MasseyS-SeriesFix.hex -------------------------------------------------------------------------------- /Firmwares/Keya/Keya-5AmpCutoff.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Keya/Keya-5AmpCutoff.hex -------------------------------------------------------------------------------- /Firmwares/Keya/Keya-NonRVC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Keya/Keya-NonRVC.hex -------------------------------------------------------------------------------- /Firmwares/Keya/Keya.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Keya/Keya.hex -------------------------------------------------------------------------------- /Firmwares/Utility/AiO GPS Configurator.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/AiO GPS Configurator.hex -------------------------------------------------------------------------------- /Firmwares/Utility/Blink.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/Blink.hex -------------------------------------------------------------------------------- /Firmwares/Utility/SavvyCAN/CANDumper-SavvyCANLog.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/SavvyCAN/CANDumper-SavvyCANLog.hex -------------------------------------------------------------------------------- /Firmwares/Utility/SavvyCAN/SLCAN-CAN1.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/SavvyCAN/SLCAN-CAN1.hex -------------------------------------------------------------------------------- /Firmwares/Utility/SavvyCAN/SLCAN-CAN2.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/SavvyCAN/SLCAN-CAN2.hex -------------------------------------------------------------------------------- /Firmwares/Utility/SavvyCAN/SLCAN-CAN3.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/Firmwares/Utility/SavvyCAN/SLCAN-CAN3.hex -------------------------------------------------------------------------------- /INSTALLER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/INSTALLER.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/README.md -------------------------------------------------------------------------------- /SetVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/SetVersion.ps1 -------------------------------------------------------------------------------- /TEENSY_LOCAL_FIRMWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/TEENSY_LOCAL_FIRMWARE.md -------------------------------------------------------------------------------- /setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansalot/AOGConfigOMatic/HEAD/setup.iss --------------------------------------------------------------------------------