├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── help.md │ └── newfeature.md ├── stale.yml └── workflows │ ├── actions.yml │ ├── build-macosx-cpn-release.yml │ ├── linux_cpn_nightly.yml │ ├── macosx_cpn_nightly.yml │ └── test.yaml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── codeStyleSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── encodings.xml ├── CMakeLists.txt ├── CREDITS.txt ├── GPLv2.txt ├── LICENSE ├── README.md ├── cmake ├── Bitmaps.cmake ├── FindFox.cmake ├── FindPhonon.cmake ├── FindSDL.cmake ├── FindXercesC.cmake ├── FindXsd.cmake └── Macros.cmake ├── companion ├── releasenotes.txt ├── src │ ├── CMakeLists.txt │ ├── appdebugmessagehandler.cpp │ ├── appdebugmessagehandler.h │ ├── apppreferencesdialog.cpp │ ├── apppreferencesdialog.h │ ├── apppreferencesdialog.ui │ ├── burnconfigdialog.cpp │ ├── burnconfigdialog.h │ ├── burnconfigdialog.ui │ ├── companion.cpp │ ├── companion.desktop.in │ ├── companion.qrc │ ├── comparedialog.cpp │ ├── comparedialog.h │ ├── comparedialog.ui │ ├── constants.h │ ├── creditsdialog.cpp │ ├── creditsdialog.h │ ├── customdebug.cpp │ ├── customdebug.h │ ├── customizesplashdialog.cpp │ ├── customizesplashdialog.h │ ├── customizesplashdialog.ui │ ├── datamodels │ │ ├── CMakeLists.txt │ │ ├── compounditemmodels.cpp │ │ ├── compounditemmodels.h │ │ ├── filtereditemmodels.cpp │ │ └── filtereditemmodels.h │ ├── dialogs │ │ ├── filesyncdialog.cpp │ │ └── filesyncdialog.h │ ├── downloaddialog.cpp │ ├── downloaddialog.h │ ├── downloaddialog.ui │ ├── firmwares │ │ ├── CMakeLists.txt │ │ ├── adjustmentreference.cpp │ │ ├── adjustmentreference.h │ │ ├── afhds3.cpp │ │ ├── afhds3.h │ │ ├── boards.cpp │ │ ├── boards.h │ │ ├── curvedata.cpp │ │ ├── curvedata.h │ │ ├── curvereference.cpp │ │ ├── curvereference.h │ │ ├── customfunctiondata.cpp │ │ ├── customfunctiondata.h │ │ ├── datahelpers.cpp │ │ ├── datahelpers.h │ │ ├── eepromimportexport.h │ │ ├── eeprominterface.cpp │ │ ├── eeprominterface.h │ │ ├── er9x │ │ │ ├── er9xeeprom.cpp │ │ │ ├── er9xeeprom.h │ │ │ ├── er9xinterface.cpp │ │ │ └── er9xinterface.h │ │ ├── ersky9x │ │ │ ├── ersky9xeeprom.cpp │ │ │ ├── ersky9xeeprom.h │ │ │ ├── ersky9xinterface.cpp │ │ │ └── ersky9xinterface.h │ │ ├── flightmodedata.cpp │ │ ├── flightmodedata.h │ │ ├── generalsettings.cpp │ │ ├── generalsettings.h │ │ ├── gvardata.cpp │ │ ├── gvardata.h │ │ ├── heli_data.cpp │ │ ├── heli_data.h │ │ ├── input_data.cpp │ │ ├── input_data.h │ │ ├── logicalswitchdata.cpp │ │ ├── logicalswitchdata.h │ │ ├── mixdata.cpp │ │ ├── mixdata.h │ │ ├── modeldata.cpp │ │ ├── modeldata.h │ │ ├── moduledata.cpp │ │ ├── moduledata.h │ │ ├── multiprotocols.cpp │ │ ├── multiprotocols.h │ │ ├── opentx │ │ │ ├── opentxeeprom.cpp │ │ │ ├── opentxeeprom.h │ │ │ ├── opentxinterface.cpp │ │ │ └── opentxinterface.h │ │ ├── output_data.cpp │ │ ├── output_data.h │ │ ├── radiodata.cpp │ │ ├── radiodata.h │ │ ├── radiodataconversionstate.cpp │ │ ├── radiodataconversionstate.h │ │ ├── rawsource.cpp │ │ ├── rawsource.h │ │ ├── rawswitch.cpp │ │ ├── rawswitch.h │ │ ├── sensordata.cpp │ │ ├── sensordata.h │ │ ├── telem_data.cpp │ │ ├── telem_data.h │ │ ├── timerdata.cpp │ │ └── timerdata.h │ ├── flasheepromdialog.cpp │ ├── flasheepromdialog.h │ ├── flasheepromdialog.ui │ ├── flashfirmwaredialog.cpp │ ├── flashfirmwaredialog.h │ ├── flashfirmwaredialog.ui │ ├── fusesdialog.cpp │ ├── fusesdialog.h │ ├── fusesdialog.ui │ ├── fwpreferencesdialog.cpp │ ├── fwpreferencesdialog.h │ ├── fwpreferencesdialog.ui │ ├── generaledit │ │ ├── CMakeLists.txt │ │ ├── calibration.cpp │ │ ├── calibration.h │ │ ├── generaledit.cpp │ │ ├── generaledit.h │ │ ├── generaledit.ui │ │ ├── generalsetup.cpp │ │ ├── generalsetup.h │ │ ├── generalsetup.ui │ │ ├── hardware.cpp │ │ ├── hardware.h │ │ ├── trainer.cpp │ │ └── trainer.h │ ├── helpers.cpp │ ├── helpers.h │ ├── helpers_html.cpp │ ├── helpers_html.h │ ├── htmldialog.ui │ ├── images │ │ ├── .gitignore │ │ ├── companion-title.png │ │ ├── customize.png │ │ ├── icon.png │ │ ├── iconmac.icns │ │ ├── library │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ ├── 00014.png │ │ │ ├── 00015.png │ │ │ ├── 00016.png │ │ │ ├── 00017.png │ │ │ ├── 00018.png │ │ │ ├── 00019.png │ │ │ ├── 00020.png │ │ │ ├── 00021.png │ │ │ ├── 00022.png │ │ │ ├── 00050.png │ │ │ ├── 00051.png │ │ │ ├── 00052.png │ │ │ ├── 00053.png │ │ │ ├── 00054.png │ │ │ ├── 00055.png │ │ │ ├── 00056.png │ │ │ ├── 00057.png │ │ │ ├── 00058.png │ │ │ ├── 00059.png │ │ │ ├── 00060.png │ │ │ ├── 00061.png │ │ │ ├── 00062.png │ │ │ ├── 00063.png │ │ │ ├── 00064.png │ │ │ ├── 00065.png │ │ │ ├── 00066.png │ │ │ ├── 00100.png │ │ │ ├── 00101.png │ │ │ ├── 00102.png │ │ │ ├── 00103.png │ │ │ ├── 00104.png │ │ │ ├── 00105.png │ │ │ ├── 00106.png │ │ │ ├── 00201.png │ │ │ ├── 00202.png │ │ │ ├── 00203.png │ │ │ ├── 00204.png │ │ │ ├── 00301.png │ │ │ ├── 00302.png │ │ │ ├── 00303.png │ │ │ ├── 00304.png │ │ │ ├── 00401.png │ │ │ ├── 00402.png │ │ │ ├── 00403.png │ │ │ ├── 00404.png │ │ │ ├── 00501.png │ │ │ ├── 10001.png │ │ │ ├── 10002.png │ │ │ ├── 10003.png │ │ │ ├── 10101.png │ │ │ ├── 10102.png │ │ │ ├── 10103.png │ │ │ ├── 10501.png │ │ │ ├── 10502.png │ │ │ ├── 10503.png │ │ │ ├── 10504.png │ │ │ ├── 10505.png │ │ │ ├── 10506.png │ │ │ ├── 10508.png │ │ │ ├── 10601.png │ │ │ ├── 10701.png │ │ │ ├── 10702.png │ │ │ ├── 10801.png │ │ │ └── 10802.png │ │ ├── linuxicons │ │ │ ├── 128x128 │ │ │ │ └── companion.png │ │ │ ├── 16x16 │ │ │ │ └── companion.png │ │ │ ├── 22x22 │ │ │ │ └── companion.png │ │ │ ├── 24x24 │ │ │ │ └── companion.png │ │ │ ├── 256x256 │ │ │ │ └── companion.png │ │ │ ├── 32x32 │ │ │ │ └── companion.png │ │ │ ├── 48x48 │ │ │ │ └── companion.png │ │ │ ├── 512x512 │ │ │ │ └── companion.png │ │ │ └── scalable │ │ │ │ └── companion.svg │ │ ├── maps.png │ │ ├── originals │ │ │ ├── 9CX.xcf │ │ │ ├── 9xdb-bl.xcf │ │ │ ├── 9xdb-gr.xcf │ │ │ ├── 9xdb-or.xcf │ │ │ ├── 9xdb-rd.xcf │ │ │ ├── 9xdb-yl.xcf │ │ │ ├── 9xdb.xcf │ │ │ ├── companion-title.xcf │ │ │ ├── customize.xcf │ │ │ ├── icons Classical │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.svg │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── switch_dir.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── icons Monochrome │ │ │ │ ├── add64.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left64.png │ │ │ │ ├── arrow-right64.png │ │ │ │ ├── changelog64.png │ │ │ │ ├── clear64.png │ │ │ │ ├── compare64.png │ │ │ │ ├── configure64.png │ │ │ │ ├── contributors64.png │ │ │ │ ├── copy64.png │ │ │ │ ├── currentmodel64.png │ │ │ │ ├── cut64.png │ │ │ │ ├── duplicate64.png │ │ │ │ ├── edit64.png │ │ │ │ ├── exit64.png │ │ │ │ ├── fuses64.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information64.png │ │ │ │ ├── library64.png │ │ │ │ ├── list64.png │ │ │ │ ├── logs64.png │ │ │ │ ├── movedown64.png │ │ │ │ ├── moveup64.png │ │ │ │ ├── new64.png │ │ │ │ ├── open64.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste64.png │ │ │ │ ├── print64.png │ │ │ │ ├── profiles64.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_2.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_eeprom_file_2.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── read_flash_2.png │ │ │ │ ├── recentdocument64.png │ │ │ │ ├── save64.png │ │ │ │ ├── saveas64.png │ │ │ │ ├── sdsync.svg │ │ │ │ ├── simulate64.png │ │ │ │ ├── txactionico.svg │ │ │ │ ├── update64.png │ │ │ │ ├── wizard64.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_2.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ ├── write_eeprom_file_2.png │ │ │ │ ├── write_flash.png │ │ │ │ └── write_flash_2.png │ │ │ ├── icons Yerico │ │ │ │ ├── add.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── contributors.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── play.png │ │ │ │ ├── stop.png │ │ │ │ ├── switch_dir.png │ │ │ │ ├── wizard.png │ │ │ │ ├── yerico_icons_16.svg │ │ │ │ ├── yerico_icons_24.svg │ │ │ │ ├── yerico_icons_32.svg │ │ │ │ ├── yerico_icons_48.svg │ │ │ │ └── yerico_icons_all.svg │ │ │ ├── logotypes │ │ │ │ ├── firmware_logo.xcf │ │ │ │ ├── old_opentx_companion_logo.odg │ │ │ │ ├── opentx_2_logo.png │ │ │ │ ├── opentx_2_logo.svg │ │ │ │ ├── opentx_companion_logo.png │ │ │ │ ├── opentx_companion_logo.svg │ │ │ │ ├── opentx_logo.png │ │ │ │ ├── opentx_logo.svg │ │ │ │ ├── opentx_logo_128x128.png │ │ │ │ ├── opentx_logo_16x16.png │ │ │ │ ├── opentx_logo_22x22.png │ │ │ │ ├── opentx_logo_24x24.png │ │ │ │ ├── opentx_logo_256x256.png │ │ │ │ ├── opentx_logo_32x32.png │ │ │ │ ├── opentx_logo_48x48.png │ │ │ │ ├── opentx_logo_512x512.png │ │ │ │ ├── opentx_logo_64x64.png │ │ │ │ └── opentx_logo_96x96.png │ │ │ ├── scripts │ │ │ │ ├── addblackoutline.sh │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── makeblue.sh │ │ │ │ └── makewhite.sh │ │ │ ├── simufront │ │ │ │ ├── horus_slim.svg │ │ │ │ └── simufrontXlite.svg │ │ │ ├── splash.xcf │ │ │ ├── splasht.xcf │ │ │ ├── windows-icon.xcf │ │ │ └── wizard │ │ │ │ ├── ailerons.svg │ │ │ │ ├── airbrakes.svg │ │ │ │ ├── conclusion.svg │ │ │ │ ├── elevons.svg │ │ │ │ ├── flaps.svg │ │ │ │ ├── helictrl.svg │ │ │ │ ├── models.svg │ │ │ │ ├── rudder.svg │ │ │ │ ├── tails.svg │ │ │ │ ├── throttle.svg │ │ │ │ └── wingtype.svg │ │ ├── screenshot.png │ │ ├── simulator │ │ │ ├── 9X │ │ │ │ ├── 9xcurs.png │ │ │ │ ├── 9xcursdown.png │ │ │ │ ├── 9xcursmin.png │ │ │ │ ├── 9xcursphoto.png │ │ │ │ ├── 9xcursplus.png │ │ │ │ ├── 9xcursup.png │ │ │ │ ├── 9xdb-bl.png │ │ │ │ ├── 9xdb-gr.png │ │ │ │ ├── 9xdb-or.png │ │ │ │ ├── 9xdb-rd.png │ │ │ │ ├── 9xdb-yl.png │ │ │ │ ├── 9xdb.png │ │ │ │ ├── 9xdl-bl.png │ │ │ │ ├── 9xdl-gr.png │ │ │ │ ├── 9xdl-or.png │ │ │ │ ├── 9xdl-rd.png │ │ │ │ ├── 9xdl-yl.png │ │ │ │ ├── 9xdl.png │ │ │ │ ├── 9xdr-bl.png │ │ │ │ ├── 9xdr-gr.png │ │ │ │ ├── 9xdr-or.png │ │ │ │ ├── 9xdr-rd.png │ │ │ │ ├── 9xdr-yl.png │ │ │ │ ├── 9xdr.png │ │ │ │ ├── 9xdt-bl.png │ │ │ │ ├── 9xdt-gr.png │ │ │ │ ├── 9xdt-or.png │ │ │ │ ├── 9xdt-rd.png │ │ │ │ ├── 9xdt-yl.png │ │ │ │ ├── 9xdt.png │ │ │ │ ├── 9xmenu.png │ │ │ │ ├── 9xmenuexit.png │ │ │ │ └── 9xmenumenu.png │ │ │ ├── JumperT12 │ │ │ │ ├── JumperT12-208.png │ │ │ │ ├── JumperT12-center.png │ │ │ │ ├── JumperT12-left.png │ │ │ │ ├── JumperT12-right.png │ │ │ │ ├── JumperT12-top.png │ │ │ │ ├── JumperT12-x.png │ │ │ │ ├── JumperT12.png │ │ │ │ ├── left_ent.png │ │ │ │ ├── left_exit.png │ │ │ │ ├── left_page.png │ │ │ │ ├── right_down.png │ │ │ │ ├── right_left.png │ │ │ │ ├── right_right.png │ │ │ │ └── right_up.png │ │ │ ├── JumperT16 │ │ │ │ ├── JumperT16.svg │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_mdl.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_scrnsht.png │ │ │ │ ├── left_sys.png │ │ │ │ ├── left_tele.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ ├── right_rtn.png │ │ │ │ └── top.png │ │ │ ├── JumperT18 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_mdl.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_sys.png │ │ │ │ ├── left_tele.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ ├── right_rtn.png │ │ │ │ └── top.png │ │ │ ├── JumperTLITE │ │ │ │ ├── bottom.png │ │ │ │ ├── bottom_left.png │ │ │ │ ├── bottom_right.png │ │ │ │ ├── center_LCD.png │ │ │ │ ├── left.png │ │ │ │ ├── left_bottom.png │ │ │ │ ├── left_top.png │ │ │ │ ├── right.png │ │ │ │ ├── right_bottom.png │ │ │ │ ├── right_top.png │ │ │ │ └── top.png │ │ │ ├── JumperTPRO │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── T8 │ │ │ │ ├── bottom.png │ │ │ │ ├── left-pagedn.png │ │ │ │ ├── left-pageup.png │ │ │ │ ├── left-rtn.png │ │ │ │ ├── left-sys.png │ │ │ │ ├── left.png │ │ │ │ ├── right-dn.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right-mdl.png │ │ │ │ ├── right-up.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── TX12 │ │ │ │ ├── bottom.png │ │ │ │ ├── left-pagedn.png │ │ │ │ ├── left-pageup.png │ │ │ │ ├── left-rtn.png │ │ │ │ ├── left-sys.png │ │ │ │ ├── left-tele.png │ │ │ │ ├── left.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right-mdl.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── TX16S │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_page2.png │ │ │ │ ├── left_rtn.png │ │ │ │ ├── left_sys.png │ │ │ │ ├── left_tele.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ ├── right_mdl.png │ │ │ │ └── top.png │ │ │ ├── X10 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_mdl.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_rtn.png │ │ │ │ ├── left_scrnsht.png │ │ │ │ ├── left_sys.png │ │ │ │ ├── left_tele.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ └── top.png │ │ │ ├── X12 │ │ │ │ ├── border-right.png │ │ │ │ ├── bottom.png │ │ │ │ ├── led.png │ │ │ │ ├── left.png │ │ │ │ ├── left_btn1.png │ │ │ │ ├── left_btn2.png │ │ │ │ ├── left_scrnsht.png │ │ │ │ ├── middle.png │ │ │ │ ├── right.png │ │ │ │ ├── right_btnD.png │ │ │ │ ├── right_btnL.png │ │ │ │ ├── right_btnR.png │ │ │ │ ├── right_btnU.png │ │ │ │ ├── right_ent.png │ │ │ │ └── top.png │ │ │ ├── X7 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_exit.png │ │ │ │ ├── left_menu.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_scrnshot.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ └── top.png │ │ │ ├── X9D │ │ │ │ ├── x9b0.png │ │ │ │ ├── x9l0.png │ │ │ │ ├── x9l1.png │ │ │ │ ├── x9l2.png │ │ │ │ ├── x9l3.png │ │ │ │ ├── x9l4.png │ │ │ │ ├── x9r0.png │ │ │ │ ├── x9r1.png │ │ │ │ ├── x9r2.png │ │ │ │ ├── x9r3.png │ │ │ │ ├── x9s0.png │ │ │ │ └── x9t0.png │ │ │ ├── X9D2019 │ │ │ │ ├── Readme.md │ │ │ │ ├── X9DP2019_Companion_image.png │ │ │ │ ├── bottom.png │ │ │ │ ├── bottom_scrnshot.png │ │ │ │ ├── center_LCD.png │ │ │ │ ├── left.png │ │ │ │ ├── left_exit.png │ │ │ │ ├── left_menu.png │ │ │ │ ├── left_page.png │ │ │ │ ├── right.png │ │ │ │ ├── right_enter.png │ │ │ │ └── top.png │ │ │ ├── X9E │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_exit.png │ │ │ │ ├── left_menu.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_scrnshot.png │ │ │ │ ├── right.png │ │ │ │ ├── right_enter.png │ │ │ │ └── top.png │ │ │ ├── X9LITE │ │ │ │ ├── Readme.md │ │ │ │ ├── X9-Lite_Companion_image.png │ │ │ │ ├── bottom.png │ │ │ │ ├── center_LCD.png │ │ │ │ ├── left.png │ │ │ │ ├── left_exit.png │ │ │ │ ├── left_menu.png │ │ │ │ ├── left_page.png │ │ │ │ ├── left_scrnshot.png │ │ │ │ ├── right.png │ │ │ │ ├── right_ent.png │ │ │ │ ├── right_rotary_encoder.png │ │ │ │ └── top.png │ │ │ ├── XLITE │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── left_scrnshot.png │ │ │ │ ├── right.png │ │ │ │ ├── right_down.png │ │ │ │ ├── right_ent.png │ │ │ │ ├── right_exit.png │ │ │ │ ├── right_left.png │ │ │ │ ├── right_right.png │ │ │ │ ├── right_shift.png │ │ │ │ ├── right_up.png │ │ │ │ └── top.png │ │ │ ├── Zorro │ │ │ │ ├── bottom.png │ │ │ │ ├── left-pagedn.png │ │ │ │ ├── left-pageup.png │ │ │ │ ├── left-rtn.png │ │ │ │ ├── left-sys.png │ │ │ │ ├── left.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right-mdl.png │ │ │ │ ├── right-tele.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ └── icons │ │ │ │ ├── credits.txt │ │ │ │ └── svg │ │ │ │ ├── arrow_click.svg │ │ │ │ ├── camera-active.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── console-active.svg │ │ │ │ ├── console.svg │ │ │ │ ├── eraser-active.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── fixed_x-on.svg │ │ │ │ ├── fixed_x.svg │ │ │ │ ├── fixed_y-on.svg │ │ │ │ ├── fixed_y.svg │ │ │ │ ├── folder_open.svg │ │ │ │ ├── hold_x-on.svg │ │ │ │ ├── hold_x.svg │ │ │ │ ├── hold_y-on.svg │ │ │ │ ├── hold_y.svg │ │ │ │ ├── info-active.svg │ │ │ │ ├── info.svg │ │ │ │ ├── joystick_settings-active.svg │ │ │ │ ├── joystick_settings.svg │ │ │ │ ├── line_horiz.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── radio_outputs-active.svg │ │ │ │ ├── radio_outputs.svg │ │ │ │ ├── reload_script-active.svg │ │ │ │ ├── reload_script.svg │ │ │ │ ├── restart-active.svg │ │ │ │ ├── restart.svg │ │ │ │ ├── rf_out-active.svg │ │ │ │ ├── rf_out.svg │ │ │ │ ├── telemetry-active.svg │ │ │ │ ├── telemetry.svg │ │ │ │ ├── toggle_lock-on.svg │ │ │ │ ├── toggle_lock.svg │ │ │ │ ├── trainer-active.svg │ │ │ │ ├── trainer.svg │ │ │ │ ├── word_wrap-on.svg │ │ │ │ └── word_wrap.svg │ │ ├── splash.png │ │ ├── splash_dmg.png │ │ ├── taranison.png │ │ ├── track.png │ │ ├── track0.png │ │ ├── winicons │ │ │ ├── icon.rc │ │ │ ├── opentx.ico │ │ │ ├── opentx_128.ico │ │ │ ├── opentx_16.ico │ │ │ ├── opentx_20.ico │ │ │ ├── opentx_24.ico │ │ │ ├── opentx_256.ico │ │ │ ├── opentx_30.ico │ │ │ ├── opentx_32.ico │ │ │ ├── opentx_36.ico │ │ │ ├── opentx_40.ico │ │ │ ├── opentx_48.ico │ │ │ ├── opentx_60.ico │ │ │ ├── opentx_64.ico │ │ │ ├── opentx_72.ico │ │ │ ├── opentx_80.ico │ │ │ └── opentx_96.ico │ │ └── wizard │ │ │ ├── ailerons.png │ │ │ ├── airbrakes.png │ │ │ ├── conclusion.png │ │ │ ├── cyclic.png │ │ │ ├── elevons.png │ │ │ ├── fblheli.png │ │ │ ├── flaps.png │ │ │ ├── flybar.png │ │ │ ├── gyro.png │ │ │ ├── helictrl.png │ │ │ ├── models.png │ │ │ ├── multirotor.png │ │ │ ├── options.png │ │ │ ├── rudder.png │ │ │ ├── simpletail.png │ │ │ ├── tail.png │ │ │ ├── tails.png │ │ │ ├── throttle.png │ │ │ ├── vtail.png │ │ │ └── wingtype.png │ ├── logsdialog.cpp │ ├── logsdialog.h │ ├── logsdialog.ui │ ├── macros.h │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mdichild.cpp │ ├── mdichild.h │ ├── mdichild.ui │ ├── modeledit │ │ ├── CMakeLists.txt │ │ ├── channels.cpp │ │ ├── channels.h │ │ ├── checklistdialog.cpp │ │ ├── checklistdialog.h │ │ ├── checklistdialog.ui │ │ ├── curves.cpp │ │ ├── curves.h │ │ ├── curves.ui │ │ ├── customfunctions.cpp │ │ ├── customfunctions.h │ │ ├── edge.cpp │ │ ├── edge.h │ │ ├── expodialog.cpp │ │ ├── expodialog.h │ │ ├── expodialog.ui │ │ ├── flightmode.ui │ │ ├── flightmodes.cpp │ │ ├── flightmodes.h │ │ ├── heli.cpp │ │ ├── heli.h │ │ ├── heli.ui │ │ ├── inputs.cpp │ │ ├── inputs.h │ │ ├── logicalswitches.cpp │ │ ├── logicalswitches.h │ │ ├── mixerdialog.cpp │ │ ├── mixerdialog.h │ │ ├── mixerdialog.ui │ │ ├── mixerslistwidget.cpp │ │ ├── mixerslistwidget.h │ │ ├── mixes.cpp │ │ ├── mixes.h │ │ ├── modeledit.cpp │ │ ├── modeledit.h │ │ ├── modeledit.ui │ │ ├── node.cpp │ │ ├── node.h │ │ ├── setup.cpp │ │ ├── setup.h │ │ ├── setup.ui │ │ ├── setup_function_switches.ui │ │ ├── setup_module.ui │ │ ├── setup_timer.ui │ │ ├── telemetry.cpp │ │ ├── telemetry.h │ │ ├── telemetry.ui │ │ ├── telemetry_analog.ui │ │ ├── telemetry_customscreen.ui │ │ ├── telemetry_customscreens.cpp │ │ ├── telemetry_customscreens.h │ │ └── telemetry_sensor.ui │ ├── modelprinter.cpp │ ├── modelprinter.h │ ├── modelslist.cpp │ ├── modelslist.h │ ├── multimodelprinter.cpp │ ├── multimodelprinter.h │ ├── printdialog.cpp │ ├── printdialog.h │ ├── printdialog.ui │ ├── process_copy.cpp │ ├── process_copy.h │ ├── process_flash.cpp │ ├── process_flash.h │ ├── process_sync.cpp │ ├── process_sync.h │ ├── profilechooser.cpp │ ├── profilechooser.h │ ├── profilechooser.ui │ ├── progressdialog.cpp │ ├── progressdialog.h │ ├── progressdialog.ui │ ├── progresswidget.cpp │ ├── progresswidget.h │ ├── progresswidget.ui │ ├── radiointerface.cpp │ ├── radiointerface.h │ ├── radionotfound.cpp │ ├── radionotfound.h │ ├── radionotfound.ui │ ├── releasenotesdialog.cpp │ ├── releasenotesdialog.h │ ├── releasenotesfirmwaredialog.cpp │ ├── releasenotesfirmwaredialog.h │ ├── shared │ │ ├── CMakeLists.txt │ │ ├── autobitsetcheckbox.cpp │ │ ├── autobitsetcheckbox.h │ │ ├── autocheckbox.cpp │ │ ├── autocheckbox.h │ │ ├── autocombobox.cpp │ │ ├── autocombobox.h │ │ ├── autodoublespinbox.cpp │ │ ├── autodoublespinbox.h │ │ ├── autohexspinbox.cpp │ │ ├── autohexspinbox.h │ │ ├── autolabel.cpp │ │ ├── autolabel.h │ │ ├── autolineedit.cpp │ │ ├── autolineedit.h │ │ ├── autoprecisioncombobox.cpp │ │ ├── autoprecisioncombobox.h │ │ ├── autoslider.cpp │ │ ├── autoslider.h │ │ ├── autospinbox.cpp │ │ ├── autospinbox.h │ │ ├── autotimeedit.cpp │ │ ├── autotimeedit.h │ │ ├── autowidget.cpp │ │ ├── autowidget.h │ │ ├── autowidgets.h │ │ ├── genericpanel.cpp │ │ ├── genericpanel.h │ │ ├── verticalscrollarea.cpp │ │ └── verticalscrollarea.h │ ├── simulation │ │ ├── CMakeLists.txt │ │ ├── debugoutput.cpp │ │ ├── debugoutput.h │ │ ├── debugoutput.ui │ │ ├── filteredtextbuffer.cpp │ │ ├── filteredtextbuffer.h │ │ ├── joystick.cpp │ │ ├── joystick.h │ │ ├── joystickdialog.cpp │ │ ├── joystickdialog.h │ │ ├── joystickdialog.ui │ │ ├── radiooutputswidget.cpp │ │ ├── radiooutputswidget.h │ │ ├── radiooutputswidget.ui │ │ ├── radiouiaction.h │ │ ├── simulateduiwidget.cpp │ │ ├── simulateduiwidget.h │ │ ├── simulateduiwidget9X.cpp │ │ ├── simulateduiwidget9X.ui │ │ ├── simulateduiwidgetJumperT12.cpp │ │ ├── simulateduiwidgetJumperT12.ui │ │ ├── simulateduiwidgetJumperT16.cpp │ │ ├── simulateduiwidgetJumperT16.ui │ │ ├── simulateduiwidgetJumperT18.cpp │ │ ├── simulateduiwidgetJumperT18.ui │ │ ├── simulateduiwidgetJumperTLITE.cpp │ │ ├── simulateduiwidgetJumperTLITE.ui │ │ ├── simulateduiwidgetJumperTPRO.cpp │ │ ├── simulateduiwidgetJumperTPRO.ui │ │ ├── simulateduiwidgetT8.cpp │ │ ├── simulateduiwidgetT8.ui │ │ ├── simulateduiwidgetTX12.cpp │ │ ├── simulateduiwidgetTX12.ui │ │ ├── simulateduiwidgetTX16S.cpp │ │ ├── simulateduiwidgetTX16S.ui │ │ ├── simulateduiwidgetX10.cpp │ │ ├── simulateduiwidgetX10.ui │ │ ├── simulateduiwidgetX12.cpp │ │ ├── simulateduiwidgetX12.ui │ │ ├── simulateduiwidgetX7.cpp │ │ ├── simulateduiwidgetX7.ui │ │ ├── simulateduiwidgetX9.cpp │ │ ├── simulateduiwidgetX9.ui │ │ ├── simulateduiwidgetX9D2019.cpp │ │ ├── simulateduiwidgetX9D2019.ui │ │ ├── simulateduiwidgetX9E.cpp │ │ ├── simulateduiwidgetX9E.ui │ │ ├── simulateduiwidgetX9LITE.cpp │ │ ├── simulateduiwidgetX9LITE.ui │ │ ├── simulateduiwidgetXLITE.cpp │ │ ├── simulateduiwidgetXLITE.ui │ │ ├── simulateduiwidgetZorro.cpp │ │ ├── simulateduiwidgetZorro.ui │ │ ├── simulator.h │ │ ├── simulator_strings.h │ │ ├── simulatorinterface.cpp │ │ ├── simulatorinterface.h │ │ ├── simulatormainwindow.cpp │ │ ├── simulatormainwindow.h │ │ ├── simulatormainwindow.ui │ │ ├── simulatorstartupdialog.cpp │ │ ├── simulatorstartupdialog.h │ │ ├── simulatorstartupdialog.ui │ │ ├── simulatorwidget.cpp │ │ ├── simulatorwidget.h │ │ ├── simulatorwidget.ui │ │ ├── telemetrysimu.cpp │ │ ├── telemetrysimu.h │ │ ├── telemetrysimu.ui │ │ ├── trainersimu.cpp │ │ ├── trainersimu.h │ │ ├── trainersimu.ui │ │ └── widgets │ │ │ ├── buttonswidget.h │ │ │ ├── lcdwidget.h │ │ │ ├── radiofaderwidget.h │ │ │ ├── radiokeywidget.h │ │ │ ├── radioknobwidget.h │ │ │ ├── radioswitchwidget.h │ │ │ ├── radiotrimwidget.h │ │ │ ├── radiowidget.cpp │ │ │ ├── radiowidget.h │ │ │ ├── sliderwidget.h │ │ │ ├── virtualjoystickwidget.cpp │ │ │ └── virtualjoystickwidget.h │ ├── simulator.cpp │ ├── simulator.desktop.in │ ├── splash.h │ ├── splashlabel.h │ ├── splashlibrarydialog.cpp │ ├── splashlibrarydialog.h │ ├── splashlibrarydialog.ui │ ├── storage │ │ ├── CMakeLists.txt │ │ ├── appdata.cpp │ │ ├── appdata.h │ │ ├── bineeprom.cpp │ │ ├── bineeprom.h │ │ ├── categorized.cpp │ │ ├── categorized.h │ │ ├── eepe.cpp │ │ ├── eepe.h │ │ ├── eepexml.cpp │ │ ├── firmwareinterface.cpp │ │ ├── firmwareinterface.h │ │ ├── hexeeprom.cpp │ │ ├── hexeeprom.h │ │ ├── hexinterface.cpp │ │ ├── hexinterface.h │ │ ├── mountlist.cpp │ │ ├── mountlist.h │ │ ├── otx.cpp │ │ ├── otx.h │ │ ├── rlefile.cpp │ │ ├── rlefile.h │ │ ├── sdcard.cpp │ │ ├── sdcard.h │ │ ├── storage.cpp │ │ └── storage.h │ ├── styleeditdialog.cpp │ ├── styleeditdialog.h │ ├── styleeditdialog.ui │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── conversions.cpp │ │ ├── gtests.cpp │ │ ├── gtests.h │ │ └── location.h.in │ ├── themes │ │ ├── classic │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── default │ │ │ ├── modelprt.css │ │ │ ├── style-osx.css │ │ │ └── style.css │ │ ├── monoblue │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── monochrome │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── monowhite │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ └── yerico │ │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── add_category.png │ │ │ ├── add_model.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── highlight.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ ├── add.png │ │ │ ├── add_category.png │ │ │ ├── add_model.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── add_category.png │ │ │ ├── add_model.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── add_category.png │ │ │ ├── add_model.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ ├── thirdparty │ │ ├── maxlibqt │ │ │ └── src │ │ │ │ └── widgets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExportableTableView │ │ │ │ ├── ExportableTableView.cpp │ │ │ │ ├── ExportableTableView.h │ │ │ │ ├── TimerEdit │ │ │ │ ├── TimerEdit.cpp │ │ │ │ └── TimerEdit.h │ │ ├── miniz │ │ │ ├── CMakeLists.txt │ │ │ └── miniz.c │ │ └── qcustomplot │ │ │ ├── CMakeLists.txt │ │ │ ├── GPL.txt │ │ │ ├── changelog.txt │ │ │ ├── qcustomplot.cpp │ │ │ └── qcustomplot.h │ ├── translations.cpp │ ├── translations.h │ ├── translations.qrc.in │ ├── translations │ │ ├── companion_cs.ts │ │ ├── companion_de.ts │ │ ├── companion_en.ts │ │ ├── companion_es.ts │ │ ├── companion_fi.ts │ │ ├── companion_fr.ts │ │ ├── companion_he.ts │ │ ├── companion_it.ts │ │ ├── companion_ja.ts │ │ ├── companion_nl.ts │ │ ├── companion_pl.ts │ │ ├── companion_pt.ts │ │ ├── companion_ru.ts │ │ ├── companion_sv.ts │ │ ├── companion_zh_CN.ts │ │ └── companion_zh_TW.ts │ ├── version.h.in │ ├── warnings.h │ ├── wizarddata.cpp │ ├── wizarddata.h │ ├── wizarddialog.cpp │ └── wizarddialog.h └── targets │ ├── linux │ ├── 45-companion-taranis.rules │ └── 45-usbasp.rules │ ├── mac │ ├── DS_Store │ ├── MacOSXBundleInfo.plist.in │ └── qt_menu.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ └── windows │ ├── FileAssociation.nsh │ ├── avrdude.conf │ ├── avrdude.exe │ ├── companion.nsi.in │ ├── dfu-util.exe │ ├── libusb-1.0.dll │ ├── libusb0.dll │ └── license.txt ├── doc └── lua-reference-guide.tex ├── jenkins ├── .gitignore ├── get-from-server.sh ├── nightly-21 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── update-repo.sh │ └── version.sh ├── nightly-22 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── update-repo.sh │ └── version.sh ├── release-20 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── release-lua.sh │ ├── release-voices.sh │ └── update-repo.sh ├── release-21 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── release-lua.sh │ ├── release-voices.sh │ ├── update-repo.sh │ └── version.sh └── upload-to-server.sh ├── launchpad ├── artful │ └── changelog ├── bionic │ └── changelog ├── common │ ├── .gitignore │ ├── control │ ├── copyright │ └── rules ├── prepare.sh ├── readme.md ├── update-changelog.sh ├── xenial │ └── changelog └── zesty │ └── changelog ├── radio ├── .gitignore ├── data │ ├── MODELE24-2014-07-11-sport.log │ ├── MODELE24-2014-07-11.csv │ └── readme.txt ├── releasenotes.txt ├── sdcard │ ├── .gitignore │ ├── horus │ │ ├── FIRMWARE │ │ │ └── readme.txt │ │ ├── IMAGES │ │ │ └── readme.txt │ │ ├── LOGS │ │ │ └── readme.txt │ │ ├── SCRIPTS │ │ │ ├── FUNCTIONS │ │ │ │ └── readme.txt │ │ │ ├── MIXES │ │ │ │ └── readme.txt │ │ │ ├── TOOLS │ │ │ │ ├── CROSSFIRE │ │ │ │ │ ├── crossfire.lua │ │ │ │ │ └── device.lua │ │ │ │ ├── DSM FwdPrg.lua │ │ │ │ ├── FrSky GaSuite.lua │ │ │ │ ├── FrSky RB30_RB40.lua │ │ │ │ ├── FrSky SBEC.lua │ │ │ │ ├── FrSky SxR.lua │ │ │ │ ├── Graupner HoTT.lua │ │ │ │ ├── MultiChan.txt │ │ │ │ ├── MultiChannelsUpdater.lua │ │ │ │ ├── MultiLOLI.lua │ │ │ │ ├── crossfire.lua │ │ │ │ ├── img │ │ │ │ │ ├── back.png │ │ │ │ │ ├── delta_b.png │ │ │ │ │ ├── done.bmp │ │ │ │ │ ├── down.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── plane_b.png │ │ │ │ │ ├── planev_b.png │ │ │ │ │ ├── planev_s.png │ │ │ │ │ ├── right.png │ │ │ │ │ ├── up.png │ │ │ │ │ ├── vert-r.png │ │ │ │ │ └── vert.png │ │ │ │ └── readme.txt │ │ │ └── WIZARD │ │ │ │ ├── glider │ │ │ │ ├── icon.png │ │ │ │ ├── img │ │ │ │ │ ├── background.png │ │ │ │ │ ├── brake.png │ │ │ │ │ ├── flap.png │ │ │ │ │ ├── lail.png │ │ │ │ │ ├── mark_bg.png │ │ │ │ │ ├── pagedn.png │ │ │ │ │ ├── pageup.png │ │ │ │ │ ├── plane.png │ │ │ │ │ ├── prop.png │ │ │ │ │ ├── rail.png │ │ │ │ │ ├── summary.png │ │ │ │ │ ├── tail.png │ │ │ │ │ ├── tail_rud.png │ │ │ │ │ └── vtail.png │ │ │ │ └── wizard.lua │ │ │ │ ├── heli │ │ │ │ ├── icon.png │ │ │ │ ├── img │ │ │ │ │ ├── ail.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── ele.png │ │ │ │ │ ├── fm.png │ │ │ │ │ ├── pagedn.png │ │ │ │ │ ├── pageup.png │ │ │ │ │ ├── pitch.png │ │ │ │ │ ├── rudder.png │ │ │ │ │ ├── style.png │ │ │ │ │ ├── thcurve.png │ │ │ │ │ ├── thr.png │ │ │ │ │ └── type.png │ │ │ │ └── wizard.lua │ │ │ │ ├── multirotor │ │ │ │ ├── icon.png │ │ │ │ ├── img │ │ │ │ │ ├── arm.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── beeper.png │ │ │ │ │ ├── mark_bg.png │ │ │ │ │ ├── mode.png │ │ │ │ │ ├── pagedn.png │ │ │ │ │ ├── pageup.png │ │ │ │ │ ├── pitch.png │ │ │ │ │ ├── roll.png │ │ │ │ │ ├── throttle.png │ │ │ │ │ └── yaw.png │ │ │ │ └── wizard.lua │ │ │ │ └── plane │ │ │ │ ├── icon.png │ │ │ │ ├── img │ │ │ │ ├── background.png │ │ │ │ ├── flap.png │ │ │ │ ├── lail.png │ │ │ │ ├── mark_bg.png │ │ │ │ ├── pagedn.png │ │ │ │ ├── pageup.png │ │ │ │ ├── plane.png │ │ │ │ ├── prop.png │ │ │ │ ├── rail.png │ │ │ │ ├── summary.png │ │ │ │ ├── tail.png │ │ │ │ ├── tailrud.png │ │ │ │ └── vtail.png │ │ │ │ └── wizard.lua │ │ ├── THEMES │ │ │ ├── Darkblue │ │ │ │ ├── X10.bmp │ │ │ │ ├── X10S.bmp │ │ │ │ ├── asterisk.bmp │ │ │ │ ├── busy.bmp │ │ │ │ ├── horus.bmp │ │ │ │ ├── mask_currentmenu_bg.png │ │ │ │ ├── mask_currentmenu_dot.png │ │ │ │ ├── mask_currentmenu_shadow.png │ │ │ │ ├── mask_library.png │ │ │ │ ├── mask_menu_model.png │ │ │ │ ├── mask_menu_radio.png │ │ │ │ ├── mask_menu_stats.png │ │ │ │ ├── mask_menu_theme.png │ │ │ │ ├── mask_model_curves.png │ │ │ │ ├── mask_model_flight_modes.png │ │ │ │ ├── mask_model_gvars.png │ │ │ │ ├── mask_model_heli.png │ │ │ │ ├── mask_model_inputs.png │ │ │ │ ├── mask_model_logical_switches.png │ │ │ │ ├── mask_model_lua_scripts.png │ │ │ │ ├── mask_model_mixer.png │ │ │ │ ├── mask_model_outputs.png │ │ │ │ ├── mask_model_setup.png │ │ │ │ ├── mask_model_special_functions.png │ │ │ │ ├── mask_model_telemetry.png │ │ │ │ ├── mask_monitor.png │ │ │ │ ├── mask_monitor_channels1.png │ │ │ │ ├── mask_monitor_channels2.png │ │ │ │ ├── mask_monitor_channels3.png │ │ │ │ ├── mask_monitor_channels4.png │ │ │ │ ├── mask_monitor_gvars.png │ │ │ │ ├── mask_monitor_inver.png │ │ │ │ ├── mask_monitor_lockch.png │ │ │ │ ├── mask_monitor_logsw.png │ │ │ │ ├── mask_monitor_mixes1.png │ │ │ │ ├── mask_monitor_mixes2.png │ │ │ │ ├── mask_mplex_add.png │ │ │ │ ├── mask_mplex_multi.png │ │ │ │ ├── mask_mplex_replace.png │ │ │ │ ├── mask_opentx.png │ │ │ │ ├── mask_opentx_testmode.png │ │ │ │ ├── mask_radio_calibration.png │ │ │ │ ├── mask_radio_global_functions.png │ │ │ │ ├── mask_radio_hardware.png │ │ │ │ ├── mask_radio_sd_browser.png │ │ │ │ ├── mask_radio_setup.png │ │ │ │ ├── mask_radio_spectrum_analyser.png │ │ │ │ ├── mask_radio_tools.png │ │ │ │ ├── mask_radio_trainer.png │ │ │ │ ├── mask_radio_version.png │ │ │ │ ├── mask_sbar_mixer.png │ │ │ │ ├── mask_sbar_output.png │ │ │ │ ├── mask_sbar_to.png │ │ │ │ ├── mask_stats_analogs.png │ │ │ │ ├── mask_stats_debug.png │ │ │ │ ├── mask_stats_lua.png │ │ │ │ ├── mask_stats_throttle_graph.png │ │ │ │ ├── mask_stats_timers.png │ │ │ │ ├── mask_stats_value.png │ │ │ │ ├── mask_switches.png │ │ │ │ ├── mask_textline_curve.png │ │ │ │ ├── mask_textline_delay.png │ │ │ │ ├── mask_textline_delayslow.png │ │ │ │ ├── mask_textline_fm.png │ │ │ │ ├── mask_textline_label.png │ │ │ │ ├── mask_textline_slow.png │ │ │ │ ├── mask_textline_switch.png │ │ │ │ ├── mask_theme_add_view.png │ │ │ │ ├── mask_theme_setup.png │ │ │ │ ├── mask_theme_view1.png │ │ │ │ ├── mask_theme_view2.png │ │ │ │ ├── mask_theme_view3.png │ │ │ │ ├── mask_theme_view4.png │ │ │ │ ├── mask_theme_view5.png │ │ │ │ ├── mask_theme_view6.png │ │ │ │ ├── mask_theme_view7.png │ │ │ │ ├── mask_theme_view8.png │ │ │ │ ├── modelsel │ │ │ │ │ ├── icon_boat1.png │ │ │ │ │ ├── icon_boat2.png │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_favorites.png │ │ │ │ │ ├── icon_plane1.png │ │ │ │ │ ├── icon_plane2.png │ │ │ │ │ ├── icon_plane3.png │ │ │ │ │ ├── mask_iconback.png │ │ │ │ │ ├── mask_modelname.png │ │ │ │ │ ├── mask_modelqty.png │ │ │ │ │ ├── mask_moveback.png │ │ │ │ │ ├── mask_moveico.png │ │ │ │ │ └── mask_sdfree.png │ │ │ │ ├── question.bmp │ │ │ │ ├── shutdown.bmp │ │ │ │ ├── stick_background.png │ │ │ │ ├── stick_pointer.png │ │ │ │ ├── t16.bmp │ │ │ │ ├── t18.bmp │ │ │ │ ├── thumb.bmp │ │ │ │ ├── topleft.png │ │ │ │ ├── topmenu_opentx.bmp │ │ │ │ ├── trackp_background.png │ │ │ │ ├── tx16s.bmp │ │ │ │ └── wizard │ │ │ │ │ ├── background.png │ │ │ │ │ ├── itembg.png │ │ │ │ │ ├── pgdn.png │ │ │ │ │ └── pgup.png │ │ │ ├── Default │ │ │ │ ├── X10.bmp │ │ │ │ ├── X10S.bmp │ │ │ │ ├── asterisk.bmp │ │ │ │ ├── background.png │ │ │ │ ├── busy.bmp │ │ │ │ ├── horus.bmp │ │ │ │ ├── mask_currentmenu_bg.png │ │ │ │ ├── mask_currentmenu_dot.png │ │ │ │ ├── mask_currentmenu_shadow.png │ │ │ │ ├── mask_menu_model.png │ │ │ │ ├── mask_menu_radio.png │ │ │ │ ├── mask_menu_stats.png │ │ │ │ ├── mask_menu_theme.png │ │ │ │ ├── mask_model_curves.png │ │ │ │ ├── mask_model_flight_modes.png │ │ │ │ ├── mask_model_gvars.png │ │ │ │ ├── mask_model_heli.png │ │ │ │ ├── mask_model_inputs.png │ │ │ │ ├── mask_model_logical_switches.png │ │ │ │ ├── mask_model_lua_scripts.png │ │ │ │ ├── mask_model_mixer.png │ │ │ │ ├── mask_model_outputs.png │ │ │ │ ├── mask_model_setup.png │ │ │ │ ├── mask_model_special_functions.png │ │ │ │ ├── mask_model_telemetry.png │ │ │ │ ├── mask_monitor.png │ │ │ │ ├── mask_monitor_channels1.png │ │ │ │ ├── mask_monitor_channels2.png │ │ │ │ ├── mask_monitor_channels3.png │ │ │ │ ├── mask_monitor_channels4.png │ │ │ │ ├── mask_monitor_gvars.png │ │ │ │ ├── mask_monitor_inver.png │ │ │ │ ├── mask_monitor_lockch.png │ │ │ │ ├── mask_monitor_logsw.png │ │ │ │ ├── mask_monitor_mixes1.png │ │ │ │ ├── mask_monitor_mixes2.png │ │ │ │ ├── mask_mplex_add.png │ │ │ │ ├── mask_mplex_multi.png │ │ │ │ ├── mask_mplex_replace.png │ │ │ │ ├── mask_opentx.png │ │ │ │ ├── mask_opentx_testmode.png │ │ │ │ ├── mask_radio_calibration.png │ │ │ │ ├── mask_radio_global_functions.png │ │ │ │ ├── mask_radio_hardware.png │ │ │ │ ├── mask_radio_sd_browser.png │ │ │ │ ├── mask_radio_setup.png │ │ │ │ ├── mask_radio_spectrum_analyser.png │ │ │ │ ├── mask_radio_tools.png │ │ │ │ ├── mask_radio_trainer.png │ │ │ │ ├── mask_radio_version.png │ │ │ │ ├── mask_sbar_mixer.png │ │ │ │ ├── mask_sbar_output.png │ │ │ │ ├── mask_sbar_to.png │ │ │ │ ├── mask_stats_analogs.png │ │ │ │ ├── mask_stats_debug.png │ │ │ │ ├── mask_stats_lua.png │ │ │ │ ├── mask_stats_throttle_graph.png │ │ │ │ ├── mask_stats_timers.png │ │ │ │ ├── mask_stats_value.png │ │ │ │ ├── mask_switches.png │ │ │ │ ├── mask_textline_curve.png │ │ │ │ ├── mask_textline_delay.png │ │ │ │ ├── mask_textline_delayslow.png │ │ │ │ ├── mask_textline_fm.png │ │ │ │ ├── mask_textline_label.png │ │ │ │ ├── mask_textline_slow.png │ │ │ │ ├── mask_textline_switch.png │ │ │ │ ├── mask_theme_add_view.png │ │ │ │ ├── mask_theme_setup.png │ │ │ │ ├── mask_theme_view1.png │ │ │ │ ├── mask_theme_view2.png │ │ │ │ ├── mask_theme_view3.png │ │ │ │ ├── mask_theme_view4.png │ │ │ │ ├── mask_theme_view5.png │ │ │ │ ├── mask_theme_view6.png │ │ │ │ ├── mask_theme_view7.png │ │ │ │ ├── mask_theme_view8.png │ │ │ │ ├── modelsel │ │ │ │ │ ├── icon_boat1.png │ │ │ │ │ ├── icon_boat2.png │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_favorites.png │ │ │ │ │ ├── icon_plane1.png │ │ │ │ │ ├── icon_plane2.png │ │ │ │ │ ├── icon_plane3.png │ │ │ │ │ ├── mask_iconback.png │ │ │ │ │ ├── mask_modelname.png │ │ │ │ │ ├── mask_modelqty.png │ │ │ │ │ ├── mask_moveback.png │ │ │ │ │ ├── mask_moveico.png │ │ │ │ │ └── mask_sdfree.png │ │ │ │ ├── question.bmp │ │ │ │ ├── shutdown.bmp │ │ │ │ ├── sleep.bmp │ │ │ │ ├── stick_background.png │ │ │ │ ├── stick_pointer.png │ │ │ │ ├── t16.bmp │ │ │ │ ├── t18.bmp │ │ │ │ ├── thumb.bmp │ │ │ │ ├── topleft.png │ │ │ │ ├── trackp_background.png │ │ │ │ ├── tx16s.bmp │ │ │ │ └── wizard │ │ │ │ │ ├── background.png │ │ │ │ │ ├── itembg.png │ │ │ │ │ ├── pgdn.png │ │ │ │ │ └── pgup.png │ │ │ └── Flexi │ │ │ │ ├── X10.bmp │ │ │ │ ├── X10S.bmp │ │ │ │ ├── asterisk.bmp │ │ │ │ ├── busy.bmp │ │ │ │ ├── ghost.png │ │ │ │ ├── horus.bmp │ │ │ │ ├── mask_currentmenu_bg.png │ │ │ │ ├── mask_currentmenu_dot.png │ │ │ │ ├── mask_currentmenu_shadow.png │ │ │ │ ├── mask_library.png │ │ │ │ ├── mask_menu_model.png │ │ │ │ ├── mask_menu_radio.png │ │ │ │ ├── mask_menu_stats.png │ │ │ │ ├── mask_menu_theme.png │ │ │ │ ├── mask_model_curves.png │ │ │ │ ├── mask_model_flight_modes.png │ │ │ │ ├── mask_model_gvars.png │ │ │ │ ├── mask_model_heli.png │ │ │ │ ├── mask_model_inputs.png │ │ │ │ ├── mask_model_logical_switches.png │ │ │ │ ├── mask_model_lua_scripts.png │ │ │ │ ├── mask_model_mixer.png │ │ │ │ ├── mask_model_outputs.png │ │ │ │ ├── mask_model_setup.png │ │ │ │ ├── mask_model_special_functions.png │ │ │ │ ├── mask_model_telemetry.png │ │ │ │ ├── mask_monitor.png │ │ │ │ ├── mask_monitor_channels1.png │ │ │ │ ├── mask_monitor_channels2.png │ │ │ │ ├── mask_monitor_channels3.png │ │ │ │ ├── mask_monitor_channels4.png │ │ │ │ ├── mask_monitor_gvars.png │ │ │ │ ├── mask_monitor_inver.png │ │ │ │ ├── mask_monitor_lockch.png │ │ │ │ ├── mask_monitor_logsw.png │ │ │ │ ├── mask_monitor_mixes1.png │ │ │ │ ├── mask_monitor_mixes2.png │ │ │ │ ├── mask_mplex_add.png │ │ │ │ ├── mask_mplex_multi.png │ │ │ │ ├── mask_mplex_replace.png │ │ │ │ ├── mask_opentx.png │ │ │ │ ├── mask_opentx_testmode.png │ │ │ │ ├── mask_radio_calibration.png │ │ │ │ ├── mask_radio_global_functions.png │ │ │ │ ├── mask_radio_hardware.png │ │ │ │ ├── mask_radio_sd_browser.png │ │ │ │ ├── mask_radio_setup.png │ │ │ │ ├── mask_radio_spectrum_analyser.png │ │ │ │ ├── mask_radio_tools.png │ │ │ │ ├── mask_radio_trainer.png │ │ │ │ ├── mask_radio_version.png │ │ │ │ ├── mask_sbar_mixer.png │ │ │ │ ├── mask_sbar_output.png │ │ │ │ ├── mask_sbar_to.png │ │ │ │ ├── mask_stats_analogs.png │ │ │ │ ├── mask_stats_debug.png │ │ │ │ ├── mask_stats_lua.png │ │ │ │ ├── mask_stats_throttle_graph.png │ │ │ │ ├── mask_stats_timers.png │ │ │ │ ├── mask_stats_value.png │ │ │ │ ├── mask_switches.png │ │ │ │ ├── mask_textline_curve.png │ │ │ │ ├── mask_textline_delay.png │ │ │ │ ├── mask_textline_delayslow.png │ │ │ │ ├── mask_textline_fm.png │ │ │ │ ├── mask_textline_label.png │ │ │ │ ├── mask_textline_slow.png │ │ │ │ ├── mask_textline_switch.png │ │ │ │ ├── mask_theme_add_view.png │ │ │ │ ├── mask_theme_setup.png │ │ │ │ ├── mask_theme_view1.png │ │ │ │ ├── mask_theme_view2.png │ │ │ │ ├── mask_theme_view3.png │ │ │ │ ├── mask_theme_view4.png │ │ │ │ ├── mask_theme_view5.png │ │ │ │ ├── mask_theme_view6.png │ │ │ │ ├── mask_theme_view7.png │ │ │ │ ├── mask_theme_view8.png │ │ │ │ ├── modelsel │ │ │ │ ├── icon_boat1.png │ │ │ │ ├── icon_boat2.png │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_favorites.png │ │ │ │ ├── icon_plane1.png │ │ │ │ ├── icon_plane2.png │ │ │ │ ├── icon_plane3.png │ │ │ │ ├── mask_iconback.png │ │ │ │ ├── mask_modelname.png │ │ │ │ ├── mask_modelqty.png │ │ │ │ ├── mask_moveback.png │ │ │ │ ├── mask_moveico.png │ │ │ │ └── mask_sdfree.png │ │ │ │ ├── question.bmp │ │ │ │ ├── shutdown.bmp │ │ │ │ ├── stick_background.png │ │ │ │ ├── stick_pointer.png │ │ │ │ ├── t16.bmp │ │ │ │ ├── t18.bmp │ │ │ │ ├── thumb.bmp │ │ │ │ ├── topleft.png │ │ │ │ ├── topmenu_opentx.bmp │ │ │ │ ├── trackp_background.png │ │ │ │ ├── tx16s.bmp │ │ │ │ └── wizard │ │ │ │ ├── background.png │ │ │ │ ├── itembg.png │ │ │ │ ├── pgdn.png │ │ │ │ └── pgup.png │ │ ├── UTILITIES │ │ │ ├── MultiConfigExternal.lua │ │ │ ├── MultiConfigInternal.lua │ │ │ └── SxR Calibrate │ │ │ │ ├── SxR_Calibrate.lua │ │ │ │ └── img │ │ │ │ ├── back.png │ │ │ │ ├── delta_b.png │ │ │ │ ├── done.bmp │ │ │ │ ├── down.png │ │ │ │ ├── forward.png │ │ │ │ ├── left.png │ │ │ │ ├── plane_b.png │ │ │ │ ├── planev_b.png │ │ │ │ ├── planev_s.png │ │ │ │ ├── right.png │ │ │ │ ├── up.png │ │ │ │ ├── vert-r.png │ │ │ │ └── vert.png │ │ └── WIDGETS │ │ │ ├── BattCheck │ │ │ └── main.lua │ │ │ ├── Counter │ │ │ └── main.lua │ │ │ ├── Ghost │ │ │ ├── img │ │ │ │ ├── background.png │ │ │ │ ├── green.png │ │ │ │ ├── orange.png │ │ │ │ └── red.png │ │ │ └── main.lua │ │ │ └── Timer2 │ │ │ └── main.lua │ ├── tango │ │ ├── BF │ │ │ └── bf.lua │ │ ├── CROSSFIRE │ │ │ ├── crossfire.lua │ │ │ └── device.lua │ │ ├── LOGS │ │ │ └── readme.txt │ │ ├── MODELS │ │ │ └── readme.txt │ │ ├── SCREENSHOTS │ │ │ └── readme.txt │ │ ├── SCRIPTS │ │ │ ├── BF │ │ │ │ ├── MSP │ │ │ │ │ ├── common.lua │ │ │ │ │ ├── crsf.lua │ │ │ │ │ ├── messages.lua │ │ │ │ │ └── sp.lua │ │ │ │ ├── TANGO │ │ │ │ │ ├── filters.lua │ │ │ │ │ ├── gpspids.lua │ │ │ │ │ ├── pid_advanced.lua │ │ │ │ │ ├── pids1.lua │ │ │ │ │ ├── pids2.lua │ │ │ │ │ ├── pwm.lua │ │ │ │ │ ├── rates.lua │ │ │ │ │ ├── rescue.lua │ │ │ │ │ ├── tangopre.lua │ │ │ │ │ └── vtx.lua │ │ │ │ ├── background.lua │ │ │ │ ├── data_init.lua │ │ │ │ ├── protocols.lua │ │ │ │ ├── radios.lua │ │ │ │ └── ui.lua │ │ │ ├── FUNCTIONS │ │ │ │ ├── pids.lua │ │ │ │ └── readme.txt │ │ │ ├── MIXES │ │ │ │ └── readme.txt │ │ │ ├── TELEMETRY │ │ │ │ ├── bf.lua │ │ │ │ └── readme.txt │ │ │ ├── WIZARD │ │ │ │ ├── delta.lua │ │ │ │ ├── multi.lua │ │ │ │ ├── plane.lua │ │ │ │ └── wizard.lua │ │ │ └── snake.lua │ │ └── SOUNDS │ │ │ ├── cz │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── de │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── en │ │ │ ├── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── d.wav │ │ │ ├── dsetpt.wav │ │ │ ├── i.wav │ │ │ └── p.wav │ │ │ ├── es │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── fr │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── it │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── pl │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── pt │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── ru │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ ├── se │ │ │ └── SYSTEM │ │ │ │ ├── aileron_trim.wav │ │ │ │ ├── elevator_trim.wav │ │ │ │ ├── hello.wav │ │ │ │ ├── main_page.wav │ │ │ │ ├── rudder_trim.wav │ │ │ │ └── throttle_trim.wav │ │ │ └── sk │ │ │ └── SYSTEM │ │ │ ├── aileron_trim.wav │ │ │ ├── elevator_trim.wav │ │ │ ├── hello.wav │ │ │ ├── main_page.wav │ │ │ ├── rudder_trim.wav │ │ │ └── throttle_trim.wav │ ├── taranis-x7 │ │ ├── EEPROM │ │ │ └── readme.txt │ │ ├── FIRMWARE │ │ │ └── readme.txt │ │ ├── LOGS │ │ │ └── readme.txt │ │ ├── MODELS │ │ │ └── readme.txt │ │ ├── SCREENSHOTS │ │ │ └── readme.txt │ │ ├── SCRIPTS │ │ │ ├── FUNCTIONS │ │ │ │ └── readme.txt │ │ │ ├── MIXES │ │ │ │ └── readme.txt │ │ │ ├── TELEMETRY │ │ │ │ └── readme.txt │ │ │ ├── TOOLS │ │ │ │ ├── CROSSFIRE │ │ │ │ │ ├── crossfire.lua │ │ │ │ │ └── device.lua │ │ │ │ ├── FrSky GaSuite.lua │ │ │ │ ├── FrSky RB30_RB40.lua │ │ │ │ ├── FrSky SBEC.lua │ │ │ │ ├── FrSky SxR.lua │ │ │ │ ├── Graupner HoTT.lua │ │ │ │ ├── MultiChan.txt │ │ │ │ ├── MultiChannelsUpdater.lua │ │ │ │ ├── MultiLOLI.lua │ │ │ │ ├── bmp │ │ │ │ │ ├── back.bmp │ │ │ │ │ ├── delta.bmp │ │ │ │ │ ├── done.bmp │ │ │ │ │ ├── down.bmp │ │ │ │ │ ├── forward.bmp │ │ │ │ │ ├── horz-r.bmp │ │ │ │ │ ├── horz.bmp │ │ │ │ │ ├── left.bmp │ │ │ │ │ ├── plane.bmp │ │ │ │ │ ├── right.bmp │ │ │ │ │ ├── up.bmp │ │ │ │ │ ├── vert-r.bmp │ │ │ │ │ ├── vert.bmp │ │ │ │ │ └── vtail.bmp │ │ │ │ ├── crossfire.lua │ │ │ │ └── readme.txt │ │ │ ├── WIZARD │ │ │ │ ├── delta.lua │ │ │ │ ├── heli.lua │ │ │ │ ├── multi.lua │ │ │ │ ├── plane.lua │ │ │ │ └── wizard.lua │ │ │ └── snake.lua │ │ └── UTILITIES │ │ │ ├── MultiConfigExternal.lua │ │ │ ├── MultiConfigInternal.lua │ │ │ └── SxR Calibrate │ │ │ └── SxR_Calibrate.lua │ └── taranis-x9 │ │ ├── EEPROM │ │ └── readme.txt │ │ ├── FIRMWARE │ │ └── readme.txt │ │ ├── IMAGES │ │ └── readme.txt │ │ ├── LOGS │ │ └── readme.txt │ │ ├── MODELS │ │ └── readme.txt │ │ ├── SCREENSHOTS │ │ └── readme.txt │ │ ├── SCRIPTS │ │ ├── FUNCTIONS │ │ │ └── readme.txt │ │ ├── MIXES │ │ │ └── readme.txt │ │ ├── TELEMETRY │ │ │ └── readme.txt │ │ ├── TOOLS │ │ │ ├── CROSSFIRE │ │ │ │ ├── crossfire.lua │ │ │ │ └── device.lua │ │ │ ├── FrSky GaSuite.lua │ │ │ ├── FrSky RB30_RB40.lua │ │ │ ├── FrSky SBEC.lua │ │ │ ├── FrSky SxR.lua │ │ │ ├── Graupner HoTT.lua │ │ │ ├── MultiChan.txt │ │ │ ├── MultiChannelsUpdater.lua │ │ │ ├── MultiLOLI.lua │ │ │ ├── bmp │ │ │ │ ├── back.bmp │ │ │ │ ├── delta.bmp │ │ │ │ ├── done.bmp │ │ │ │ ├── down.bmp │ │ │ │ ├── forward.bmp │ │ │ │ ├── horz-r.bmp │ │ │ │ ├── horz.bmp │ │ │ │ ├── left.bmp │ │ │ │ ├── plane.bmp │ │ │ │ ├── right.bmp │ │ │ │ ├── up.bmp │ │ │ │ ├── vert-r.bmp │ │ │ │ ├── vert.bmp │ │ │ │ └── vtail.bmp │ │ │ ├── crossfire.lua │ │ │ └── readme.txt │ │ ├── WIZARD │ │ │ ├── img │ │ │ │ ├── ailerons-0.bmp │ │ │ │ ├── ailerons-1.bmp │ │ │ │ ├── ailerons-2.bmp │ │ │ │ ├── brakes-1.bmp │ │ │ │ ├── brakes-2.bmp │ │ │ │ ├── confirm-plane.bmp │ │ │ │ ├── confirm-tick.bmp │ │ │ │ ├── delta.bmp │ │ │ │ ├── delta.lua │ │ │ │ ├── drudder-0.bmp │ │ │ │ ├── drudder-1.bmp │ │ │ │ ├── elevons.bmp │ │ │ │ ├── engine-0.bmp │ │ │ │ ├── engine-1.bmp │ │ │ │ ├── flaps-1.bmp │ │ │ │ ├── flaps-2.bmp │ │ │ │ ├── heli-ailer.bmp │ │ │ │ ├── heli-curves.bmp │ │ │ │ ├── heli-elev.bmp │ │ │ │ ├── heli-rud.bmp │ │ │ │ ├── heli-style.bmp │ │ │ │ ├── heli-switch.bmp │ │ │ │ ├── heli-throttle.bmp │ │ │ │ ├── heli-type.bmp │ │ │ │ ├── heli.bmp │ │ │ │ ├── heli.lua │ │ │ │ ├── mark.bmp │ │ │ │ ├── multi-pitch.bmp │ │ │ │ ├── multi-roll.bmp │ │ │ │ ├── multi-thr.bmp │ │ │ │ ├── multi-yaw.bmp │ │ │ │ ├── multi.lua │ │ │ │ ├── page-btn.bmp │ │ │ │ ├── page.bmp │ │ │ │ ├── pagebk.bmp │ │ │ │ ├── plane.bmp │ │ │ │ ├── plane.lua │ │ │ │ ├── quadri.bmp │ │ │ │ ├── servo.bmp │ │ │ │ ├── tail-e.bmp │ │ │ │ ├── tail-eer.bmp │ │ │ │ ├── tail-er.bmp │ │ │ │ └── tail-v.bmp │ │ │ └── wizard.lua │ │ └── snake.lua │ │ └── UTILITIES │ │ ├── MultiConfigExternal.lua │ │ ├── MultiConfigInternal.lua │ │ └── SxR Calibrate │ │ ├── SxR_Calibrate.lua │ │ └── bmp │ │ ├── back.bmp │ │ ├── delta.bmp │ │ ├── done.bmp │ │ ├── down.bmp │ │ ├── forward.bmp │ │ ├── horz-r.bmp │ │ ├── horz.bmp │ │ ├── left.bmp │ │ ├── plane.bmp │ │ ├── right.bmp │ │ ├── up.bmp │ │ ├── vert-r.bmp │ │ ├── vert.bmp │ │ └── vtail.bmp ├── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── audio.cpp │ ├── audio.h │ ├── bin_allocator.cpp │ ├── bin_allocator.h │ ├── bitfield.h │ ├── bitmaps │ │ ├── .gitignore │ │ ├── 128x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── download.png │ │ │ ├── download_96.png │ │ │ ├── sleep.png │ │ │ ├── sleep_tbs.png │ │ │ ├── splash.png │ │ │ ├── splash_96.png │ │ │ ├── splash_freedomtx.png │ │ │ ├── splash_freedomtx_96.png │ │ │ ├── splash_frsky.png │ │ │ ├── splash_mambo.png │ │ │ └── splash_tango2.png │ │ ├── 212x64 │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── icons.png │ │ │ ├── lock.png │ │ │ ├── logo.png │ │ │ ├── shutdown.png │ │ │ ├── sleep.png │ │ │ ├── splash.png │ │ │ ├── splash_frsky.png │ │ │ ├── startup.png │ │ │ └── std │ │ │ │ ├── analog_inputs.png │ │ │ │ ├── calibration.png │ │ │ │ ├── curves.png │ │ │ │ ├── files.png │ │ │ │ ├── flight_modes.png │ │ │ │ ├── global_functions.png │ │ │ │ ├── global_vars.png │ │ │ │ ├── hardware.png │ │ │ │ ├── heli_setup.png │ │ │ │ ├── inputs.png │ │ │ │ ├── logical_sw.png │ │ │ │ ├── lua_scripts.png │ │ │ │ ├── mainview_setup.png │ │ │ │ ├── mixer.png │ │ │ │ ├── model_select.png │ │ │ │ ├── model_settings.png │ │ │ │ ├── model_setup.png │ │ │ │ ├── radio_setup.png │ │ │ │ ├── servos.png │ │ │ │ ├── special_functions.png │ │ │ │ ├── switch_test.png │ │ │ │ ├── telemetry.png │ │ │ │ ├── trainer.png │ │ │ │ └── version.png │ │ ├── 480x272 │ │ │ ├── CMakeLists.txt │ │ │ ├── bmp_splash.png │ │ │ ├── bootloader │ │ │ │ ├── bmp_plug_usb.png │ │ │ │ ├── bmp_usb_plugged.png │ │ │ │ ├── icon_error.png │ │ │ │ ├── icon_exit.png │ │ │ │ ├── icon_file.png │ │ │ │ ├── icon_flash.png │ │ │ │ ├── icon_ok.png │ │ │ │ └── icon_sd.png │ │ │ ├── button │ │ │ │ ├── alpha_button_off.png │ │ │ │ └── alpha_button_on.png │ │ │ ├── mask_about_headico.png │ │ │ ├── mask_antenna.png │ │ │ ├── mask_carroussel_left.png │ │ │ ├── mask_carroussel_right.png │ │ │ ├── mask_coord_shadow.png │ │ │ ├── mask_cvpoint.png │ │ │ ├── mask_cvpoint_center.png │ │ │ ├── mask_dot.png │ │ │ ├── mask_htrim_frame.png │ │ │ ├── mask_library_active_model.png │ │ │ ├── mask_library_score_0.png │ │ │ ├── mask_library_score_1.png │ │ │ ├── mask_library_slot.png │ │ │ ├── mask_library_star_0.png │ │ │ ├── mask_library_star_1.png │ │ │ ├── mask_mainviews_item_in.png │ │ │ ├── mask_mainviews_item_out.png │ │ │ ├── mask_point.png │ │ │ ├── mask_rscale.png │ │ │ ├── mask_shutdown_circle.png │ │ │ ├── mask_swipe_circle.png │ │ │ ├── mask_swipe_left.png │ │ │ ├── mask_swipe_right.png │ │ │ ├── mask_timer.png │ │ │ ├── mask_timer_bg.png │ │ │ ├── mask_topmenu_altitude_ico.png │ │ │ ├── mask_topmenu_masterpart_ico.png │ │ │ ├── mask_topmenu_sdcard.png │ │ │ ├── mask_topmenu_slavepart_ico.png │ │ │ ├── mask_topmenu_usb.png │ │ │ ├── mask_topmenu_volume_ico.png │ │ │ ├── mask_trim_shadow.png │ │ │ ├── mask_txbat.png │ │ │ ├── mask_txbat_charging.png │ │ │ ├── mask_vtrim_frame.png │ │ │ ├── slider │ │ │ │ ├── bar_left.png │ │ │ │ ├── bar_right.png │ │ │ │ ├── point_in.png │ │ │ │ ├── point_mid.png │ │ │ │ └── point_out.png │ │ │ └── volume │ │ │ │ ├── mask_volume_0.png │ │ │ │ ├── mask_volume_1.png │ │ │ │ ├── mask_volume_2.png │ │ │ │ ├── mask_volume_3.png │ │ │ │ ├── mask_volume_4.png │ │ │ │ └── mask_volume_scale.png │ │ ├── CMakeLists.txt │ │ └── sticks.xbm │ ├── bluetooth.cpp │ ├── bluetooth.h │ ├── buzzer.cpp │ ├── buzzer.h │ ├── chksize.h │ ├── cli.cpp │ ├── cli.h │ ├── crc.cpp │ ├── crc.h │ ├── curves.cpp │ ├── dataconstants.h │ ├── datastructs.h │ ├── debounce.h │ ├── debug.cpp │ ├── debug.h │ ├── definitions.h │ ├── disk_cache.cpp │ ├── disk_cache.h │ ├── dmafifo.h │ ├── dump.cpp │ ├── dump.h │ ├── fifo.h │ ├── fonts.h │ ├── fonts │ │ ├── .gitignore │ │ ├── 480x272 │ │ │ ├── CMakeLists.txt │ │ │ ├── font_dblsize.png │ │ │ ├── font_dblsize.specs │ │ │ ├── font_midsize.png │ │ │ ├── font_midsize.specs │ │ │ ├── font_smlsize.png │ │ │ ├── font_smlsize.specs │ │ │ ├── font_stdsize.png │ │ │ ├── font_stdsize.specs │ │ │ ├── font_stdsizebold.png │ │ │ ├── font_stdsizebold.specs │ │ │ ├── font_tinsize.png │ │ │ ├── font_tinsize.specs │ │ │ ├── font_xxlsize.png │ │ │ └── font_xxlsize.specs │ │ ├── CMakeLists.txt │ │ ├── Kanit │ │ │ ├── Kanit-Black.ttf │ │ │ ├── Kanit-BlackItalic.ttf │ │ │ ├── Kanit-Bold.ttf │ │ │ ├── Kanit-BoldItalic.ttf │ │ │ ├── Kanit-ExtraBold.ttf │ │ │ ├── Kanit-ExtraBoldItalic.ttf │ │ │ ├── Kanit-ExtraLight.ttf │ │ │ ├── Kanit-ExtraLightItalic.ttf │ │ │ ├── Kanit-Italic.ttf │ │ │ ├── Kanit-Light.ttf │ │ │ ├── Kanit-LightItalic.ttf │ │ │ ├── Kanit-Medium.ttf │ │ │ ├── Kanit-MediumItalic.ttf │ │ │ ├── Kanit-Regular.ttf │ │ │ ├── Kanit-SemiBold.ttf │ │ │ ├── Kanit-SemiBoldItalic.ttf │ │ │ ├── Kanit-Thin.ttf │ │ │ ├── Kanit-ThinItalic.ttf │ │ │ └── OFL.txt │ │ ├── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Bold.ttf │ │ │ └── Roboto-Regular.ttf │ │ ├── Ubuntu │ │ │ ├── UFL.txt │ │ │ ├── Ubuntu-Bold.ttf │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ ├── Ubuntu-Italic.ttf │ │ │ ├── Ubuntu-Light.ttf │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ ├── Ubuntu-Medium.ttf │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ └── Ubuntu-Regular.ttf │ │ ├── extra_11px.png │ │ ├── extra_16px.png │ │ ├── sqt5 │ │ │ ├── font_03x05.png │ │ │ ├── font_04x06.png │ │ │ ├── font_04x06_extra.png │ │ │ ├── font_05x07.png │ │ │ ├── font_05x07_B_compressed.png │ │ │ ├── font_05x07_avr.png │ │ │ ├── font_05x07_extra.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.png │ │ │ ├── font_10x14_compressed.png │ │ │ ├── font_10x14_extra.png │ │ │ ├── font_22x38_num.png │ │ │ ├── font_cz_04x06.png │ │ │ ├── font_cz_05x07.png │ │ │ ├── font_cz_08x10.png │ │ │ ├── font_cz_10x14.png │ │ │ ├── font_de_04x06.png │ │ │ ├── font_de_05x07.png │ │ │ ├── font_de_08x10.png │ │ │ ├── font_de_10x14.png │ │ │ ├── font_es_04x06.png │ │ │ ├── font_es_05x07.png │ │ │ ├── font_es_08x10.png │ │ │ ├── font_es_10x14.png │ │ │ ├── font_fi_04x06.png │ │ │ ├── font_fi_05x07.png │ │ │ ├── font_fi_08x10.png │ │ │ ├── font_fi_10x14.png │ │ │ ├── font_fr_04x06.png │ │ │ ├── font_fr_05x07.png │ │ │ ├── font_fr_08x10.png │ │ │ ├── font_fr_10x14.png │ │ │ ├── font_it_04x06.png │ │ │ ├── font_it_05x07.png │ │ │ ├── font_it_08x10.png │ │ │ ├── font_it_10x14.png │ │ │ ├── font_pl_04x06.png │ │ │ ├── font_pl_05x07.png │ │ │ ├── font_pl_08x10.png │ │ │ ├── font_pl_10x14.png │ │ │ ├── font_pt_04x06.png │ │ │ ├── font_pt_05x07.png │ │ │ ├── font_pt_08x10.png │ │ │ ├── font_pt_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ └── font_se_10x14.png │ │ └── std │ │ │ ├── font_03x05.png │ │ │ ├── font_04x06.png │ │ │ ├── font_04x06_extra.png │ │ │ ├── font_05x07.png │ │ │ ├── font_05x07_B_compressed.png │ │ │ ├── font_05x07_extra.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.png │ │ │ ├── font_10x14_compressed.png │ │ │ ├── font_10x14_extra.png │ │ │ ├── font_22x38_num.png │ │ │ ├── font_cz_04x06.png │ │ │ ├── font_cz_05x07.png │ │ │ ├── font_cz_08x10.png │ │ │ ├── font_cz_10x14.png │ │ │ ├── font_de_04x06.png │ │ │ ├── font_de_05x07.png │ │ │ ├── font_de_08x10.png │ │ │ ├── font_de_10x14.png │ │ │ ├── font_es_04x06.png │ │ │ ├── font_es_05x07.png │ │ │ ├── font_es_08x10.png │ │ │ ├── font_es_10x14.png │ │ │ ├── font_fi_04x06.png │ │ │ ├── font_fi_05x07.png │ │ │ ├── font_fi_08x10.png │ │ │ ├── font_fi_10x14.png │ │ │ ├── font_fr_04x06.png │ │ │ ├── font_fr_05x07.png │ │ │ ├── font_fr_08x10.png │ │ │ ├── font_fr_10x14.png │ │ │ ├── font_it_04x06.png │ │ │ ├── font_it_05x07.png │ │ │ ├── font_it_08x10.png │ │ │ ├── font_it_10x14.png │ │ │ ├── font_pl_04x06.png │ │ │ ├── font_pl_05x07.png │ │ │ ├── font_pl_08x10.png │ │ │ ├── font_pl_10x14.png │ │ │ ├── font_pt_04x06.png │ │ │ ├── font_pt_05x07.png │ │ │ ├── font_pt_08x10.png │ │ │ ├── font_pt_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ └── font_se_10x14.png │ ├── functions.cpp │ ├── globals.h │ ├── gps.cpp │ ├── gps.h │ ├── gui │ │ ├── 128x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── bmp.cpp │ │ │ ├── draw_functions.cpp │ │ │ ├── fonts.cpp │ │ │ ├── gui.h │ │ │ ├── lcd.h │ │ │ ├── menu_model.cpp │ │ │ ├── menu_radio.cpp │ │ │ ├── menus.h │ │ │ ├── model_curve_edit.cpp │ │ │ ├── model_custom_scripts.cpp │ │ │ ├── model_display.cpp │ │ │ ├── model_failsafe.cpp │ │ │ ├── model_flightmodes.cpp │ │ │ ├── model_gvars.cpp │ │ │ ├── model_input_edit.cpp │ │ │ ├── model_logical_switches.cpp │ │ │ ├── model_mix_edit.cpp │ │ │ ├── model_outputs.cpp │ │ │ ├── model_select.cpp │ │ │ ├── model_select_sd.cpp │ │ │ ├── model_setup.cpp │ │ │ ├── model_special_functions.cpp │ │ │ ├── model_telemetry.cpp │ │ │ ├── model_telemetry_sensor.cpp │ │ │ ├── model_templates.cpp │ │ │ ├── popups.cpp │ │ │ ├── popups.h │ │ │ ├── radio_calibration.cpp │ │ │ ├── radio_calibration_hall.cpp │ │ │ ├── radio_diaganas.cpp │ │ │ ├── radio_diagkeys.cpp │ │ │ ├── radio_setup.cpp │ │ │ ├── splash.cpp │ │ │ ├── startup_shutdown.cpp │ │ │ ├── view_about.cpp │ │ │ ├── view_channels.cpp │ │ │ ├── view_main.cpp │ │ │ ├── view_statistics.cpp │ │ │ ├── view_telemetry.cpp │ │ │ └── widgets.cpp │ │ ├── 212x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── bmp.cpp │ │ │ ├── draw_functions.cpp │ │ │ ├── fonts.cpp │ │ │ ├── gui.h │ │ │ ├── lcd.h │ │ │ ├── menu_model.cpp │ │ │ ├── menu_radio.cpp │ │ │ ├── menus.h │ │ │ ├── model_curve_edit.cpp │ │ │ ├── model_custom_scripts.cpp │ │ │ ├── model_display.cpp │ │ │ ├── model_failsafe.cpp │ │ │ ├── model_flightmodes.cpp │ │ │ ├── model_gvars.cpp │ │ │ ├── model_input_edit.cpp │ │ │ ├── model_logical_switches.cpp │ │ │ ├── model_mix_edit.cpp │ │ │ ├── model_outputs.cpp │ │ │ ├── model_select.cpp │ │ │ ├── model_setup.cpp │ │ │ ├── model_special_functions.cpp │ │ │ ├── model_telemetry.cpp │ │ │ ├── model_telemetry_sensor.cpp │ │ │ ├── popups.cpp │ │ │ ├── popups.h │ │ │ ├── radio_calibration.cpp │ │ │ ├── radio_diaganas.cpp │ │ │ ├── radio_diagkeys.cpp │ │ │ ├── radio_setup.cpp │ │ │ ├── splash.cpp │ │ │ ├── startup_shutdown.cpp │ │ │ ├── view_about.cpp │ │ │ ├── view_channels.cpp │ │ │ ├── view_main.cpp │ │ │ ├── view_statistics.cpp │ │ │ ├── view_telemetry.cpp │ │ │ └── widgets.cpp │ │ ├── 480x272 │ │ │ ├── CMakeLists.txt │ │ │ ├── bitmapbuffer.cpp │ │ │ ├── bitmapbuffer.h │ │ │ ├── bitmaps.cpp │ │ │ ├── bitmaps.h │ │ │ ├── colors.h │ │ │ ├── curves.cpp │ │ │ ├── draw_functions.h │ │ │ ├── fonts.cpp │ │ │ ├── gui.h │ │ │ ├── layout.cpp │ │ │ ├── layout.h │ │ │ ├── layouts │ │ │ │ ├── layout1x1.cpp │ │ │ │ ├── layout2+1.cpp │ │ │ │ ├── layout2x1.cpp │ │ │ │ ├── layout2x2.cpp │ │ │ │ ├── layout2x4.cpp │ │ │ │ ├── layout4+2.cpp │ │ │ │ ├── mask_layout1x1.png │ │ │ │ ├── mask_layout2+1.png │ │ │ │ ├── mask_layout2x1.png │ │ │ │ ├── mask_layout2x2.png │ │ │ │ ├── mask_layout2x4.png │ │ │ │ └── mask_layout4+2.png │ │ │ ├── lcd.cpp │ │ │ ├── lcd.h │ │ │ ├── menu_model.cpp │ │ │ ├── menu_radio.cpp │ │ │ ├── menus.cpp │ │ │ ├── menus.h │ │ │ ├── model_curves.cpp │ │ │ ├── model_custom_scripts.cpp │ │ │ ├── model_failsafe.cpp │ │ │ ├── model_flightmodes.cpp │ │ │ ├── model_gvars.cpp │ │ │ ├── model_inputs.cpp │ │ │ ├── model_logical_switches.cpp │ │ │ ├── model_mixes.cpp │ │ │ ├── model_module_options.cpp │ │ │ ├── model_outputs.cpp │ │ │ ├── model_receiver_options.cpp │ │ │ ├── model_select.cpp │ │ │ ├── model_setup.cpp │ │ │ ├── model_special_functions.cpp │ │ │ ├── model_telemetry.cpp │ │ │ ├── model_telemetry_sensor.cpp │ │ │ ├── popups.cpp │ │ │ ├── radio_calibration.cpp │ │ │ ├── radio_diaganas.cpp │ │ │ ├── radio_diagkeys.cpp │ │ │ ├── radio_ghost_menu.cpp │ │ │ ├── radio_hardware.cpp │ │ │ ├── radio_power_meter.cpp │ │ │ ├── radio_sdmanager.cpp │ │ │ ├── radio_setup.cpp │ │ │ ├── radio_spectrum_analyser.cpp │ │ │ ├── radio_tools.cpp │ │ │ ├── radio_trainer.cpp │ │ │ ├── radio_version.cpp │ │ │ ├── rle.cpp │ │ │ ├── rle.h │ │ │ ├── screens_setup.cpp │ │ │ ├── splash.cpp │ │ │ ├── theme.cpp │ │ │ ├── theme.h │ │ │ ├── themes │ │ │ │ ├── darkblue.cpp │ │ │ │ ├── default.cpp │ │ │ │ └── flexi.cpp │ │ │ ├── topbar.cpp │ │ │ ├── topbar.h │ │ │ ├── view_about.cpp │ │ │ ├── view_channels.cpp │ │ │ ├── view_logical_switches.cpp │ │ │ ├── view_main.cpp │ │ │ ├── view_statistics.cpp │ │ │ ├── view_text.cpp │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ ├── widgets.cpp │ │ │ ├── widgets │ │ │ │ ├── gauge.cpp │ │ │ │ ├── modelbmp.cpp │ │ │ │ ├── outputs.cpp │ │ │ │ ├── text.cpp │ │ │ │ ├── timer.cpp │ │ │ │ └── value.cpp │ │ │ ├── widgets_container.h │ │ │ └── zone.h │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── colorlcd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── draw_functions.cpp │ │ │ │ ├── draw_functions.h │ │ │ │ └── model_heli.cpp │ │ │ └── stdlcd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── draw_functions.cpp │ │ │ │ ├── draw_functions.h │ │ │ │ ├── lcd_1bit.cpp │ │ │ │ ├── lcd_4bits.cpp │ │ │ │ ├── menus.cpp │ │ │ │ ├── menus.h │ │ │ │ ├── model_curves.cpp │ │ │ │ ├── model_heli.cpp │ │ │ │ ├── model_inputs.cpp │ │ │ │ ├── model_mixes.cpp │ │ │ │ ├── model_module_options.cpp │ │ │ │ ├── model_notes.cpp │ │ │ │ ├── model_receiver_options.cpp │ │ │ │ ├── model_setup_afhds3.cpp │ │ │ │ ├── model_setup_pxx1.cpp │ │ │ │ ├── model_setup_pxx2.cpp │ │ │ │ ├── popups.cpp │ │ │ │ ├── popups.h │ │ │ │ ├── radio_ghost_menu.cpp │ │ │ │ ├── radio_hardware.cpp │ │ │ │ ├── radio_power_meter.cpp │ │ │ │ ├── radio_sdmanager.cpp │ │ │ │ ├── radio_spectrum_analyser.cpp │ │ │ │ ├── radio_tools.cpp │ │ │ │ ├── radio_trainer.cpp │ │ │ │ ├── radio_version.cpp │ │ │ │ ├── view_telemetry.cpp │ │ │ │ └── view_text.cpp │ │ ├── gui_common.cpp │ │ ├── gui_common.h │ │ ├── navigation │ │ │ ├── common.cpp │ │ │ ├── navigation_9x.cpp │ │ │ ├── navigation_horus.cpp │ │ │ ├── navigation_x7.cpp │ │ │ ├── navigation_x9d.cpp │ │ │ └── navigation_xlite.cpp │ │ └── screenshot.cpp │ ├── gvars.cpp │ ├── gvars.h │ ├── gyro.cpp │ ├── gyro.h │ ├── haptic.cpp │ ├── haptic.h │ ├── io │ │ ├── bootloader_flash.cpp │ │ ├── crsf │ │ │ ├── crc8.cpp │ │ │ ├── crc8.h │ │ │ ├── crossfire.cpp │ │ │ ├── crossfire.h │ │ │ ├── crsf.cpp │ │ │ ├── crsf.h │ │ │ ├── crsf_utilities.cpp │ │ │ ├── crsf_utilities.h │ │ │ ├── crsf_write.cpp │ │ │ └── crsf_write.h │ │ ├── frsky_firmware_update.cpp │ │ ├── frsky_firmware_update.h │ │ ├── frsky_pxx2.h │ │ ├── frsky_sport.h │ │ ├── multi_firmware_update.cpp │ │ ├── multi_firmware_update.h │ │ └── stk500.h │ ├── keys.cpp │ ├── keys.h │ ├── logs.cpp │ ├── lua │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── api_general.cpp │ │ ├── api_lcd.cpp │ │ ├── api_model.cpp │ │ ├── interface.cpp │ │ ├── lua_api.h │ │ └── widgets.cpp │ ├── main.cpp │ ├── maths.cpp │ ├── mixer.cpp │ ├── mixer_scheduler.cpp │ ├── mixer_scheduler.h │ ├── myeeprom.h │ ├── opentx.cpp │ ├── opentx.h │ ├── opentx_constants.h │ ├── opentx_helpers.h │ ├── opentx_types.h │ ├── options.h │ ├── pulses │ │ ├── afhds3.cpp │ │ ├── afhds3.h │ │ ├── crossfire.cpp │ │ ├── dsm2.cpp │ │ ├── ghost.cpp │ │ ├── modules_constants.h │ │ ├── modules_helpers.cpp │ │ ├── modules_helpers.h │ │ ├── multi.cpp │ │ ├── multi.h │ │ ├── ppm.cpp │ │ ├── pulses.cpp │ │ ├── pulses.h │ │ ├── pulses_common.h │ │ ├── pxx.h │ │ ├── pxx1.cpp │ │ ├── pxx1.h │ │ ├── pxx2.cpp │ │ ├── pxx2.h │ │ └── sbus.cpp │ ├── pwr.h │ ├── rtc.cpp │ ├── rtc.h │ ├── rtos.h │ ├── sbus.cpp │ ├── sbus.h │ ├── sdcard.cpp │ ├── sdcard.h │ ├── serial.cpp │ ├── serial.h │ ├── simu.cpp │ ├── stamp.cpp │ ├── stamp.h.in │ ├── storage │ │ ├── conversions │ │ │ ├── CMakeLists.txt │ │ │ ├── conversions.cpp │ │ │ ├── conversions.h │ │ │ ├── conversions_130_131.cpp │ │ │ ├── conversions_130_137.cpp │ │ │ ├── conversions_216_218.cpp │ │ │ ├── conversions_218_219.cpp │ │ │ ├── datastructs_130.h │ │ │ └── datastructs_218.h │ │ ├── eeprom_common.cpp │ │ ├── eeprom_common.h │ │ ├── eeprom_raw.cpp │ │ ├── eeprom_raw.h │ │ ├── eeprom_rlc.cpp │ │ ├── eeprom_rlc.h │ │ ├── modelslist.cpp │ │ ├── modelslist.h │ │ ├── rlc.cpp │ │ ├── rtc_backup.cpp │ │ ├── rtc_backup.h │ │ ├── sdcard_raw.cpp │ │ ├── sdcard_raw.h │ │ ├── storage.h │ │ └── storage_common.cpp │ ├── strhelpers.cpp │ ├── strhelpers.h │ ├── switches.cpp │ ├── syscalls.c │ ├── targets │ │ ├── common │ │ │ └── arm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── loadboot.cpp │ │ │ │ └── stm32 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── adc_driver.cpp │ │ │ │ ├── audio_dac_driver.cpp │ │ │ │ ├── aux_serial_driver.cpp │ │ │ │ ├── bluetooth_driver.cpp │ │ │ │ ├── board_common.h │ │ │ │ ├── bootloader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bin_files.cpp │ │ │ │ ├── bin_files.h │ │ │ │ ├── boot.cpp │ │ │ │ ├── boot.h │ │ │ │ └── init.c │ │ │ │ ├── cpu_id.cpp │ │ │ │ ├── cpu_id.h │ │ │ │ ├── delays.cpp │ │ │ │ ├── f2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── system_stm32f2xx.c │ │ │ │ ├── f4 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── system_stm32f4xx.c │ │ │ │ ├── flash_driver.cpp │ │ │ │ ├── heartbeat_driver.cpp │ │ │ │ ├── intmodule_serial_driver.cpp │ │ │ │ ├── lsm6ds_driver.cpp │ │ │ │ ├── mixer_scheduler_driver.cpp │ │ │ │ ├── pwr_driver.cpp │ │ │ │ ├── rotary_encoder_driver.cpp │ │ │ │ ├── rtc_driver.cpp │ │ │ │ ├── sdio_sd.c │ │ │ │ ├── sdio_sd.h │ │ │ │ ├── sticks_pwm_driver.cpp │ │ │ │ ├── timers_driver.cpp │ │ │ │ ├── usb_bsp.c │ │ │ │ ├── usb_conf.h │ │ │ │ ├── usb_driver.cpp │ │ │ │ ├── usb_driver.h │ │ │ │ ├── usbd_cdc.cpp │ │ │ │ ├── usbd_conf.h │ │ │ │ ├── usbd_desc.c │ │ │ │ ├── usbd_desc.h │ │ │ │ ├── usbd_hid_joystick.c │ │ │ │ ├── usbd_storage_msd.cpp │ │ │ │ └── usbd_usr.cpp │ │ ├── horus │ │ │ ├── CMakeLists.txt │ │ │ ├── audio_spi_driver.cpp │ │ │ ├── backlight_driver.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── bootloader │ │ │ │ └── boot_menu.cpp │ │ │ ├── diskio.cpp │ │ │ ├── extmodule_driver.cpp │ │ │ ├── gps_driver.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── led_driver.cpp │ │ │ ├── sdram_driver.c │ │ │ ├── startup_stm32f42_43xxx.s │ │ │ ├── stm32_ramboot.ld │ │ │ ├── stm32f4_flash.ld │ │ │ ├── telemetry_driver.cpp │ │ │ ├── tp_gt911.cpp │ │ │ ├── tp_gt911.h │ │ │ ├── trainer_driver.cpp │ │ │ ├── usb_charger_driver.cpp │ │ │ └── x12s_adc_driver.cpp │ │ ├── simu │ │ │ ├── CMakeLists.txt │ │ │ ├── opentxsimulator.cpp │ │ │ ├── opentxsimulator.h │ │ │ ├── simpgmspace.cpp │ │ │ ├── simpgmspace.h │ │ │ ├── simudisk.cpp │ │ │ ├── simueeprom.cpp │ │ │ ├── simufatfs.cpp │ │ │ └── simulcd.h │ │ ├── sky9x │ │ │ ├── AT91SAM3S2.h │ │ │ ├── AT91SAM3S4.h │ │ │ ├── CMakeLists.txt │ │ │ ├── MEDSdcard.c │ │ │ ├── Media.h │ │ │ ├── adc_driver.cpp │ │ │ ├── audio_driver.cpp │ │ │ ├── audio_driver.h │ │ │ ├── aux_serial_driver.cpp │ │ │ ├── bluetooth.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── board_lowlevel.c │ │ │ ├── board_lowlevel.h │ │ │ ├── buzzer_driver.cpp │ │ │ ├── chip.h │ │ │ ├── coproc_driver.cpp │ │ │ ├── core_cm3.c │ │ │ ├── core_cm3.h │ │ │ ├── crt.c │ │ │ ├── diskio.cpp │ │ │ ├── eeprom_driver.cpp │ │ │ ├── flash_driver.cpp │ │ │ ├── haptic_driver.cpp │ │ │ ├── i2c_driver.cpp │ │ │ ├── i2c_driver.h │ │ │ ├── joystick.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── massstorage.cpp │ │ │ ├── pulses_driver.cpp │ │ │ ├── pwr_driver.cpp │ │ │ ├── rotary_encoder_driver.cpp │ │ │ ├── rtc_driver.cpp │ │ │ ├── rtc_ds3231_driver.cpp │ │ │ ├── sam3s4c_flash.ld │ │ │ ├── sam3s8c_flash.ld │ │ │ ├── sdcard_driver.cpp │ │ │ ├── telemetry_driver.cpp │ │ │ ├── trainer_driver.cpp │ │ │ ├── usb │ │ │ │ ├── common │ │ │ │ │ ├── core │ │ │ │ │ │ ├── USBConfigurationDescriptor.c │ │ │ │ │ │ ├── USBConfigurationDescriptor.h │ │ │ │ │ │ ├── USBDeviceDescriptor.h │ │ │ │ │ │ ├── USBDeviceQualifierDescriptor.h │ │ │ │ │ │ ├── USBEndpointDescriptor.c │ │ │ │ │ │ ├── USBEndpointDescriptor.h │ │ │ │ │ │ ├── USBFeatureRequest.c │ │ │ │ │ │ ├── USBFeatureRequest.h │ │ │ │ │ │ ├── USBGenericDescriptor.c │ │ │ │ │ │ ├── USBGenericDescriptor.h │ │ │ │ │ │ ├── USBGenericRequest.c │ │ │ │ │ │ ├── USBGenericRequest.h │ │ │ │ │ │ ├── USBGetDescriptorRequest.c │ │ │ │ │ │ ├── USBGetDescriptorRequest.h │ │ │ │ │ │ ├── USBInterfaceAssociationDescriptor.h │ │ │ │ │ │ ├── USBInterfaceDescriptor.h │ │ │ │ │ │ ├── USBInterfaceRequest.c │ │ │ │ │ │ ├── USBInterfaceRequest.h │ │ │ │ │ │ ├── USBIrqHandler.c │ │ │ │ │ │ ├── USBIrqHandler.h │ │ │ │ │ │ ├── USBSetAddressRequest.c │ │ │ │ │ │ ├── USBSetAddressRequest.h │ │ │ │ │ │ ├── USBSetConfigurationRequest.c │ │ │ │ │ │ ├── USBSetConfigurationRequest.h │ │ │ │ │ │ └── USBStringDescriptor.h │ │ │ │ │ ├── hid │ │ │ │ │ │ ├── HIDButton.h │ │ │ │ │ │ ├── HIDDescriptor.h │ │ │ │ │ │ ├── HIDDeviceDescriptor.h │ │ │ │ │ │ ├── HIDGenericDescriptor.h │ │ │ │ │ │ ├── HIDGenericDesktop.h │ │ │ │ │ │ ├── HIDGenericRequest.h │ │ │ │ │ │ ├── HIDIdleRequest.c │ │ │ │ │ │ ├── HIDIdleRequest.h │ │ │ │ │ │ ├── HIDInterfaceDescriptor.h │ │ │ │ │ │ ├── HIDReport.h │ │ │ │ │ │ ├── HIDReportRequest.c │ │ │ │ │ │ └── HIDReportRequest.h │ │ │ │ │ └── massstorage │ │ │ │ │ │ ├── MSDeviceDescriptor.h │ │ │ │ │ │ └── MSInterfaceDescriptor.h │ │ │ │ └── device │ │ │ │ │ ├── core │ │ │ │ │ ├── USBD.h │ │ │ │ │ ├── USBDDriver.c │ │ │ │ │ ├── USBDDriver.h │ │ │ │ │ ├── USBDDriverDescriptors.h │ │ │ │ │ └── USBD_UDP.c │ │ │ │ │ ├── hid-joystick │ │ │ │ │ ├── HIDDJoystickDriver.c │ │ │ │ │ ├── HIDDJoystickDriver.h │ │ │ │ │ ├── HIDDJoystickDriverDescriptors.c │ │ │ │ │ ├── HIDDJoystickDriverDescriptors.h │ │ │ │ │ ├── HIDDJoystickInputReport.c │ │ │ │ │ └── HIDDJoystickInputReport.h │ │ │ │ │ └── massstorage │ │ │ │ │ ├── MSD.h │ │ │ │ │ ├── MSDDStateMachine.c │ │ │ │ │ ├── MSDDStateMachine.h │ │ │ │ │ ├── MSDDriver.c │ │ │ │ │ ├── MSDDriver.h │ │ │ │ │ ├── MSDDriverDescriptors.c │ │ │ │ │ ├── MSDDriverDescriptors.h │ │ │ │ │ ├── MSDIOFifo.h │ │ │ │ │ ├── MSDLun.c │ │ │ │ │ ├── MSDLun.h │ │ │ │ │ ├── SBC.h │ │ │ │ │ ├── SBCMethods.c │ │ │ │ │ └── SBCMethods.h │ │ │ ├── usb_driver.cpp │ │ │ └── vectors_sam3s.c │ │ ├── stlink-v2.cfg │ │ ├── stm32f2x_stlink.cfg │ │ ├── stm32f4x_stlink.cfg │ │ ├── taranis │ │ │ ├── CMakeLists.txt │ │ │ ├── backlight_driver.cpp │ │ │ ├── bind_button_driver.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── bootloader │ │ │ │ └── boot_menu.cpp │ │ │ ├── diskio.cpp │ │ │ ├── dwt.h │ │ │ ├── extmodule_driver.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── i2c_driver.cpp │ │ │ ├── intmodule_pulses_driver.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver_aspi.cpp │ │ │ ├── lcd_driver_spi.cpp │ │ │ ├── led_driver.cpp │ │ │ ├── startup_stm32f40_41xxx.s │ │ │ ├── stm32_ramboot.ld │ │ │ ├── stm32f2_flash.ld │ │ │ ├── stm32f4_flash.ld │ │ │ ├── telemetry_driver.cpp │ │ │ ├── top_lcd_driver.cpp │ │ │ ├── trainer_driver.cpp │ │ │ └── usb_charger_driver.cpp │ │ └── tbs │ │ │ ├── CMakeLists.txt │ │ │ ├── backlight_driver.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── diskio.cpp │ │ │ ├── extmodule_driver.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver_spi.cpp │ │ │ ├── led_driver.cpp │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── startup_stm32f40_41xxx.s │ │ │ ├── stm32f4_flash.ld │ │ │ ├── telemetry_driver.cpp │ │ │ ├── usb_agent_driver.cpp │ │ │ ├── usb_charger_driver.cpp │ │ │ └── usbd_hid_agent.c │ ├── tasks.cpp │ ├── tasks.h │ ├── telemetry │ │ ├── crossfire.cpp │ │ ├── crossfire.h │ │ ├── flysky_ibus.cpp │ │ ├── flysky_ibus.h │ │ ├── frsky.cpp │ │ ├── frsky.h │ │ ├── frsky_d.cpp │ │ ├── frsky_pxx2.cpp │ │ ├── frsky_sport.cpp │ │ ├── ghost.cpp │ │ ├── ghost.h │ │ ├── hitec.cpp │ │ ├── hitec.h │ │ ├── hott.cpp │ │ ├── hott.h │ │ ├── mlink.cpp │ │ ├── mlink.h │ │ ├── multi.cpp │ │ ├── multi.h │ │ ├── spektrum.cpp │ │ ├── spektrum.h │ │ ├── telemetry.cpp │ │ ├── telemetry.h │ │ ├── telemetry_holders.h │ │ ├── telemetry_sensors.cpp │ │ └── telemetry_sensors.h │ ├── tests │ │ ├── 1b_39x32.bmp │ │ ├── 1b_6x32.bmp │ │ ├── 4b_20x20.bmp │ │ ├── 4b_31x31.bmp │ │ ├── 4b_7x32.bmp │ │ ├── CMakeLists.txt │ │ ├── MidsizeNextPosPrec1_128x64.png │ │ ├── MidsizeNextPosPrec1_212x64.png │ │ ├── SmlsizeDecimalPoint_128x64.png │ │ ├── SmlsizeDecimalPoint_212x64.png │ │ ├── big_numbers_128x64.png │ │ ├── big_numbers_212x64.png │ │ ├── bmpwrapping_212x64.png │ │ ├── colorlcd.cpp │ │ ├── conversions.cpp │ │ ├── crossfire.cpp │ │ ├── dblsize_128x64.png │ │ ├── dblsize_212x64.png │ │ ├── dblsize_bottom_right_128x64.png │ │ ├── dblsize_bottom_right_212x64.png │ │ ├── drawswitch_212x64.png │ │ ├── eeprom.cpp │ │ ├── eeprom_22_x7.bin │ │ ├── eeprom_22_x9d+.bin │ │ ├── eeprom_22_xlite.bin │ │ ├── eeprom_23_x9d+.bin │ │ ├── fonts_480x272.png │ │ ├── frsky.cpp │ │ ├── functions.cpp │ │ ├── gtests.cpp │ │ ├── gtests.h │ │ ├── invers_0_0_128x64.png │ │ ├── invers_0_0_212x64.png │ │ ├── invers_0_1_128x64.png │ │ ├── invers_0_1_212x64.png │ │ ├── lcd.cpp │ │ ├── lcdDrawBitmapLoadAndDisplay_212x64.png │ │ ├── lcdDrawHorizontalLine_212x64.png │ │ ├── lcdDrawLine_128x64.png │ │ ├── lcdDrawLine_212x64.png │ │ ├── lcdDrawVerticalLine_212x64.png │ │ ├── lcd_480x272.cpp │ │ ├── line_wrap_128x64.png │ │ ├── line_wrap_212x64.png │ │ ├── location.h.in │ │ ├── lua.cpp │ │ ├── midsize_128x64.png │ │ ├── midsize_212x64.png │ │ ├── mixer.cpp │ │ ├── model_22_x10.otx │ │ ├── model_22_x12s.otx │ │ ├── plane.bmp │ │ ├── prec1_dblsize_invers_128x64.png │ │ ├── prec1_dblsize_invers_212x64.png │ │ ├── prec2_left_128x64.png │ │ ├── prec2_left_212x64.png │ │ ├── prec2_right_128x64.png │ │ ├── prec2_right_212x64.png │ │ ├── primitives_480x272.png │ │ ├── smlsize_128x64.png │ │ ├── smlsize_212x64.png │ │ ├── smlsize_drawstringwithindex_128x64.png │ │ ├── smlsize_drawstringwithindex_212x64.png │ │ ├── stdsize_128x64.png │ │ ├── stdsize_212x64.png │ │ ├── switches.cpp │ │ ├── timers.cpp │ │ ├── transparency_480x272.png │ │ ├── unsigned_128x64.png │ │ ├── unsigned_212x64.png │ │ ├── vline_128x64.png │ │ ├── vline_212x64.png │ │ ├── vline_480x272.png │ │ ├── vline_lt0_128x64.png │ │ └── vline_lt0_212x64.png │ ├── thirdparty │ │ ├── CoOS │ │ │ ├── OsConfig.h │ │ │ ├── kernel │ │ │ │ ├── CoOS.h │ │ │ │ ├── OsCore.h │ │ │ │ ├── OsError.h │ │ │ │ ├── OsEvent.h │ │ │ │ ├── OsFlag.h │ │ │ │ ├── OsKernelHeap.h │ │ │ │ ├── OsMM.h │ │ │ │ ├── OsMutex.h │ │ │ │ ├── OsQueue.h │ │ │ │ ├── OsServiceReq.h │ │ │ │ ├── OsTask.h │ │ │ │ ├── OsTime.h │ │ │ │ ├── OsTimer.h │ │ │ │ ├── coocox.h │ │ │ │ ├── core.c │ │ │ │ ├── event.c │ │ │ │ ├── flag.c │ │ │ │ ├── hook.c │ │ │ │ ├── kernelHeap.c │ │ │ │ ├── mbox.c │ │ │ │ ├── mm.c │ │ │ │ ├── mutex.c │ │ │ │ ├── queue.c │ │ │ │ ├── sem.c │ │ │ │ ├── serviceReq.c │ │ │ │ ├── task.c │ │ │ │ ├── time.c │ │ │ │ ├── timer.c │ │ │ │ ├── utility.c │ │ │ │ └── utility.h │ │ │ └── portable │ │ │ │ ├── GCC │ │ │ │ └── port.c │ │ │ │ ├── OsArch.h │ │ │ │ └── arch.c │ │ ├── FatFs │ │ │ ├── 00history.txt │ │ │ ├── 00readme.txt │ │ │ ├── diskio.h │ │ │ ├── fattime.c │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── integer.h │ │ │ └── option │ │ │ │ ├── cc932.c │ │ │ │ ├── cc936.c │ │ │ │ ├── cc949.c │ │ │ │ ├── cc950.c │ │ │ │ ├── ccsbcs.c │ │ │ │ ├── syscall.c │ │ │ │ └── unicode.c │ │ ├── Lua │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── contents.html │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── luac.1 │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ ├── osi-certified-72x60.png │ │ │ │ └── readme.html │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lbitlib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lrotable.c │ │ │ │ ├── lrotable.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ ├── STM32F2xx_StdPeriph_Lib_V1.1.0 │ │ │ └── Libraries │ │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F2xx │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ │ └── system_stm32f2xx.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ └── gcc_ride7 │ │ │ │ │ │ └── startup_stm32f2xx.s │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ └── core_cmInstr.h │ │ │ │ └── STM32F2xx_StdPeriph_Driver │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f2xx_adc.h │ │ │ │ ├── stm32f2xx_can.h │ │ │ │ ├── stm32f2xx_crc.h │ │ │ │ ├── stm32f2xx_cryp.h │ │ │ │ ├── stm32f2xx_dac.h │ │ │ │ ├── stm32f2xx_dbgmcu.h │ │ │ │ ├── stm32f2xx_dcmi.h │ │ │ │ ├── stm32f2xx_dma.h │ │ │ │ ├── stm32f2xx_exti.h │ │ │ │ ├── stm32f2xx_flash.h │ │ │ │ ├── stm32f2xx_fsmc.h │ │ │ │ ├── stm32f2xx_gpio.h │ │ │ │ ├── stm32f2xx_hash.h │ │ │ │ ├── stm32f2xx_i2c.h │ │ │ │ ├── stm32f2xx_iwdg.h │ │ │ │ ├── stm32f2xx_pwr.h │ │ │ │ ├── stm32f2xx_rcc.h │ │ │ │ ├── stm32f2xx_rng.h │ │ │ │ ├── stm32f2xx_rtc.h │ │ │ │ ├── stm32f2xx_sdio.h │ │ │ │ ├── stm32f2xx_spi.h │ │ │ │ ├── stm32f2xx_syscfg.h │ │ │ │ ├── stm32f2xx_tim.h │ │ │ │ ├── stm32f2xx_usart.h │ │ │ │ └── stm32f2xx_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f2xx_adc.c │ │ │ │ ├── stm32f2xx_can.c │ │ │ │ ├── stm32f2xx_crc.c │ │ │ │ ├── stm32f2xx_cryp.c │ │ │ │ ├── stm32f2xx_cryp_aes.c │ │ │ │ ├── stm32f2xx_cryp_des.c │ │ │ │ ├── stm32f2xx_cryp_tdes.c │ │ │ │ ├── stm32f2xx_dac.c │ │ │ │ ├── stm32f2xx_dbgmcu.c │ │ │ │ ├── stm32f2xx_dcmi.c │ │ │ │ ├── stm32f2xx_dma.c │ │ │ │ ├── stm32f2xx_exti.c │ │ │ │ ├── stm32f2xx_flash.c │ │ │ │ ├── stm32f2xx_fsmc.c │ │ │ │ ├── stm32f2xx_gpio.c │ │ │ │ ├── stm32f2xx_hash.c │ │ │ │ ├── stm32f2xx_hash_md5.c │ │ │ │ ├── stm32f2xx_hash_sha1.c │ │ │ │ ├── stm32f2xx_i2c.c │ │ │ │ ├── stm32f2xx_iwdg.c │ │ │ │ ├── stm32f2xx_pwr.c │ │ │ │ ├── stm32f2xx_rcc.c │ │ │ │ ├── stm32f2xx_rng.c │ │ │ │ ├── stm32f2xx_rtc.c │ │ │ │ ├── stm32f2xx_sdio.c │ │ │ │ ├── stm32f2xx_spi.c │ │ │ │ ├── stm32f2xx_syscfg.c │ │ │ │ ├── stm32f2xx_tim.c │ │ │ │ ├── stm32f2xx_usart.c │ │ │ │ └── stm32f2xx_wwdg.c │ │ ├── STM32F4xx_DSP_StdPeriph_Lib_V1.4.0 │ │ │ └── Libraries │ │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_const_structs.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ │ └── STM32F4xx_StdPeriph_Driver │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f4xx_adc.h │ │ │ │ ├── stm32f4xx_can.h │ │ │ │ ├── stm32f4xx_crc.h │ │ │ │ ├── stm32f4xx_cryp.h │ │ │ │ ├── stm32f4xx_dac.h │ │ │ │ ├── stm32f4xx_dbgmcu.h │ │ │ │ ├── stm32f4xx_dcmi.h │ │ │ │ ├── stm32f4xx_dma.h │ │ │ │ ├── stm32f4xx_dma2d.h │ │ │ │ ├── stm32f4xx_exti.h │ │ │ │ ├── stm32f4xx_flash.h │ │ │ │ ├── stm32f4xx_flash_ramfunc.h │ │ │ │ ├── stm32f4xx_fmc.h │ │ │ │ ├── stm32f4xx_fsmc.h │ │ │ │ ├── stm32f4xx_gpio.h │ │ │ │ ├── stm32f4xx_hash.h │ │ │ │ ├── stm32f4xx_i2c.h │ │ │ │ ├── stm32f4xx_iwdg.h │ │ │ │ ├── stm32f4xx_ltdc.h │ │ │ │ ├── stm32f4xx_pwr.h │ │ │ │ ├── stm32f4xx_rcc.h │ │ │ │ ├── stm32f4xx_rng.h │ │ │ │ ├── stm32f4xx_rtc.h │ │ │ │ ├── stm32f4xx_sai.h │ │ │ │ ├── stm32f4xx_sdio.h │ │ │ │ ├── stm32f4xx_spi.h │ │ │ │ ├── stm32f4xx_syscfg.h │ │ │ │ ├── stm32f4xx_tim.h │ │ │ │ ├── stm32f4xx_usart.h │ │ │ │ └── stm32f4xx_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f4xx_adc.c │ │ │ │ ├── stm32f4xx_can.c │ │ │ │ ├── stm32f4xx_crc.c │ │ │ │ ├── stm32f4xx_cryp.c │ │ │ │ ├── stm32f4xx_cryp_aes.c │ │ │ │ ├── stm32f4xx_cryp_des.c │ │ │ │ ├── stm32f4xx_cryp_tdes.c │ │ │ │ ├── stm32f4xx_dac.c │ │ │ │ ├── stm32f4xx_dbgmcu.c │ │ │ │ ├── stm32f4xx_dcmi.c │ │ │ │ ├── stm32f4xx_dma.c │ │ │ │ ├── stm32f4xx_dma2d.c │ │ │ │ ├── stm32f4xx_exti.c │ │ │ │ ├── stm32f4xx_flash.c │ │ │ │ ├── stm32f4xx_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_fmc.c │ │ │ │ ├── stm32f4xx_fsmc.c │ │ │ │ ├── stm32f4xx_gpio.c │ │ │ │ ├── stm32f4xx_hash.c │ │ │ │ ├── stm32f4xx_hash_md5.c │ │ │ │ ├── stm32f4xx_hash_sha1.c │ │ │ │ ├── stm32f4xx_i2c.c │ │ │ │ ├── stm32f4xx_iwdg.c │ │ │ │ ├── stm32f4xx_ltdc.c │ │ │ │ ├── stm32f4xx_pwr.c │ │ │ │ ├── stm32f4xx_rcc.c │ │ │ │ ├── stm32f4xx_rng.c │ │ │ │ ├── stm32f4xx_rtc.c │ │ │ │ ├── stm32f4xx_sai.c │ │ │ │ ├── stm32f4xx_sdio.c │ │ │ │ ├── stm32f4xx_spi.c │ │ │ │ ├── stm32f4xx_syscfg.c │ │ │ │ ├── stm32f4xx_tim.c │ │ │ │ ├── stm32f4xx_usart.c │ │ │ │ └── stm32f4xx_wwdg.c │ │ ├── STM32_USB-Host-Device_Lib_V2.2.0 │ │ │ └── Libraries │ │ │ │ ├── STM32_USB_Device_Library │ │ │ │ ├── Class │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── usbd_audio_core.h │ │ │ │ │ │ │ └── usbd_audio_out_if.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── usbd_audio_core.c │ │ │ │ │ │ │ └── usbd_audio_out_if.c │ │ │ │ │ ├── cdc │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── usbd_cdc_core.h │ │ │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── usbd_cdc_core.c │ │ │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ │ │ ├── customhid │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ └── usbd_customhid_core.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── usbd_customhid_core.c │ │ │ │ │ ├── dfu │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ ├── usbd_dfu_core.h │ │ │ │ │ │ │ ├── usbd_dfu_mal.h │ │ │ │ │ │ │ ├── usbd_flash_if.h │ │ │ │ │ │ │ ├── usbd_mem_if_template.h │ │ │ │ │ │ │ └── usbd_otp_if.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── usbd_dfu_core.c │ │ │ │ │ │ │ ├── usbd_dfu_mal.c │ │ │ │ │ │ │ ├── usbd_flash_if.c │ │ │ │ │ │ │ ├── usbd_mem_if_template.c │ │ │ │ │ │ │ └── usbd_otp_if.c │ │ │ │ │ ├── hid │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ └── usbd_hid_core.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── usbd_hid_core.c │ │ │ │ │ ├── hid_cdc_wrapper │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ └── usbd_hid_cdc_wrapper.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── usbd_hid_cdc_wrapper.c │ │ │ │ │ ├── hid_msc_wrapper │ │ │ │ │ │ ├── inc │ │ │ │ │ │ │ └── usbd_msc_hid_core.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── usbd_msc_hid_core.c │ │ │ │ │ └── msc │ │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ │ ├── Core │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_conf_template.h │ │ │ │ │ │ ├── usbd_core.h │ │ │ │ │ │ ├── usbd_def.h │ │ │ │ │ │ ├── usbd_ioreq.h │ │ │ │ │ │ ├── usbd_req.h │ │ │ │ │ │ └── usbd_usr.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_core.c │ │ │ │ │ │ ├── usbd_ioreq.c │ │ │ │ │ │ └── usbd_req.c │ │ │ │ └── Release_Notes.html │ │ │ │ └── STM32_USB_OTG_Driver │ │ │ │ ├── Release_Notes.html │ │ │ │ ├── inc │ │ │ │ ├── usb_bsp.h │ │ │ │ ├── usb_conf_template.h │ │ │ │ ├── usb_core.h │ │ │ │ ├── usb_dcd.h │ │ │ │ ├── usb_dcd_int.h │ │ │ │ ├── usb_defines.h │ │ │ │ ├── usb_hcd.h │ │ │ │ ├── usb_hcd_int.h │ │ │ │ ├── usb_otg.h │ │ │ │ └── usb_regs.h │ │ │ │ └── src │ │ │ │ ├── usb_core.c │ │ │ │ ├── usb_dcd.c │ │ │ │ ├── usb_dcd_int.c │ │ │ │ ├── usb_hcd.c │ │ │ │ ├── usb_hcd_int.c │ │ │ │ └── usb_otg.c │ │ ├── Stb │ │ │ └── stb_image.h │ │ ├── windows │ │ │ ├── dirent │ │ │ │ └── dirent.h │ │ │ └── msinttypes │ │ │ │ ├── changelog.txt │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ └── xdk-asf-3.31.0 │ │ │ └── sam │ │ │ └── drivers │ │ │ └── twi │ │ │ ├── twi.c │ │ │ └── twi.h │ ├── timers.cpp │ ├── timers.h │ ├── touch.h │ ├── trainer.cpp │ ├── trainer.h │ ├── translations.cpp │ ├── translations.h │ ├── translations │ │ ├── CMakeLists.txt │ │ ├── cz.h.txt │ │ ├── de.h.txt │ │ ├── en.h.txt │ │ ├── es.h.txt │ │ ├── fi.h.txt │ │ ├── fr.h.txt │ │ ├── it.h.txt │ │ ├── nl.h.txt │ │ ├── pl.h.txt │ │ ├── pt.h.txt │ │ ├── se.h.txt │ │ ├── tts_cz.cpp │ │ ├── tts_de.cpp │ │ ├── tts_en.cpp │ │ ├── tts_es.cpp │ │ ├── tts_fr.cpp │ │ ├── tts_hu.cpp │ │ ├── tts_it.cpp │ │ ├── tts_nl.cpp │ │ ├── tts_pl.cpp │ │ ├── tts_pt.cpp │ │ ├── tts_ru.cpp │ │ ├── tts_se.cpp │ │ ├── tts_sk.cpp │ │ └── untranslated.h │ └── vario.cpp └── util │ ├── .gitignore │ ├── addtr.py │ ├── bin2lbm.py │ ├── build-firmware.py │ ├── capitalize.py │ ├── codecs.py │ ├── crossfire-parse.py │ ├── dsm2.py │ ├── elf-size-compare.awk │ ├── elf-size-report.awk │ ├── elf-size-report.sh │ ├── fat12.py │ ├── find_clang.py │ ├── font2png.py │ ├── fwoptions.py │ ├── generate_datacopy.py │ ├── img2lbm.py │ ├── lua │ └── lua_event_test.lua │ ├── lua_trace2plot.py │ ├── luaexport.py │ ├── maxvolume.cmd │ ├── parse.py │ ├── sinus.py │ ├── sport-parse.py │ ├── taranisicons.py │ ├── translate.py │ ├── tts_common.py │ ├── tts_cz.py │ ├── tts_de.py │ ├── tts_doc_cz.md │ ├── tts_en.py │ ├── tts_es.py │ ├── tts_fr.py │ ├── tts_it.py │ ├── tts_pt.py │ ├── tts_ru.py │ └── voices_ru.psv ├── sonar-project.properties ├── sound ├── .gitignore ├── OpenTXSound.sln ├── recorder │ ├── .gitignore │ ├── App.xaml │ ├── App.xaml.cs │ ├── GPLv3_Logo.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── OpenTXRecorder.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WaveIn.cs │ ├── WaveNative.cs │ ├── aboutWindow.xaml │ ├── aboutWindow.xaml.cs │ ├── clsWaveProcessor.cs │ ├── icon.ico │ ├── play.png │ ├── record.png │ ├── recorder_logo.png │ ├── recorder_logo.xcf │ ├── recorder_logo_small.png │ ├── sentencetables.cs │ └── stop.png └── speaker │ ├── .gitignore │ ├── App.xaml │ ├── App.xaml.cs │ ├── GPLv3_Logo.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── OpenTXspeaker.csproj │ ├── OpenTXspeaker.sln │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── aboutWindow.xaml │ ├── aboutWindow.xaml.cs │ ├── eSpeak.png │ ├── icon.ico │ ├── installvoices.xaml │ ├── installvoices.xaml.cs │ ├── sentencetables.cs │ ├── speaker_logo.png │ ├── speaker_logo.xcf │ └── speaker_logo_small.png └── tools ├── add-issue-links.py ├── boards.py ├── build-companion-nightly.sh ├── build-companion-release.sh ├── build-frsk.py ├── build-frsky.py ├── build-imrc.py ├── build-jumper.py ├── build-opentx.py ├── build-radiomaster.py ├── build-tbs.py ├── clang-format.sh ├── codeformat.sh ├── commit-tests.sh ├── copyright-header.txt ├── copyright.py ├── eeprom_upgd_check ├── check.lua ├── create.lua └── readme.txt ├── extract-map.py ├── include-guard.py ├── latency.py └── uncrustify.cfg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/ISSUE_TEMPLATE/help.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/newfeature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/ISSUE_TEMPLATE/newfeature.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | OpenTX -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/GPLv2.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Bitmaps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/Bitmaps.cmake -------------------------------------------------------------------------------- /cmake/FindFox.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/FindFox.cmake -------------------------------------------------------------------------------- /cmake/FindPhonon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/FindPhonon.cmake -------------------------------------------------------------------------------- /cmake/FindSDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/FindSDL.cmake -------------------------------------------------------------------------------- /cmake/FindXercesC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/FindXercesC.cmake -------------------------------------------------------------------------------- /cmake/FindXsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/FindXsd.cmake -------------------------------------------------------------------------------- /cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/cmake/Macros.cmake -------------------------------------------------------------------------------- /companion/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/releasenotes.txt -------------------------------------------------------------------------------- /companion/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/apppreferencesdialog.h -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/apppreferencesdialog.ui -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/burnconfigdialog.cpp -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/burnconfigdialog.h -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/burnconfigdialog.ui -------------------------------------------------------------------------------- /companion/src/companion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/companion.cpp -------------------------------------------------------------------------------- /companion/src/companion.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/companion.desktop.in -------------------------------------------------------------------------------- /companion/src/companion.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/companion.qrc -------------------------------------------------------------------------------- /companion/src/comparedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/comparedialog.cpp -------------------------------------------------------------------------------- /companion/src/comparedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/comparedialog.h -------------------------------------------------------------------------------- /companion/src/comparedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/comparedialog.ui -------------------------------------------------------------------------------- /companion/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/constants.h -------------------------------------------------------------------------------- /companion/src/creditsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/creditsdialog.cpp -------------------------------------------------------------------------------- /companion/src/creditsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/creditsdialog.h -------------------------------------------------------------------------------- /companion/src/customdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/customdebug.cpp -------------------------------------------------------------------------------- /companion/src/customdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/customdebug.h -------------------------------------------------------------------------------- /companion/src/customizesplashdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/customizesplashdialog.h -------------------------------------------------------------------------------- /companion/src/downloaddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/downloaddialog.cpp -------------------------------------------------------------------------------- /companion/src/downloaddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/downloaddialog.h -------------------------------------------------------------------------------- /companion/src/downloaddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/downloaddialog.ui -------------------------------------------------------------------------------- /companion/src/firmwares/afhds3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/afhds3.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/afhds3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/afhds3.h -------------------------------------------------------------------------------- /companion/src/firmwares/boards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/boards.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/boards.h -------------------------------------------------------------------------------- /companion/src/firmwares/curvedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/curvedata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/curvedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/curvedata.h -------------------------------------------------------------------------------- /companion/src/firmwares/datahelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/datahelpers.h -------------------------------------------------------------------------------- /companion/src/firmwares/gvardata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/gvardata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/gvardata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/gvardata.h -------------------------------------------------------------------------------- /companion/src/firmwares/heli_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/heli_data.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/heli_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/heli_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/input_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/input_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/mixdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/mixdata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/mixdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/mixdata.h -------------------------------------------------------------------------------- /companion/src/firmwares/modeldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/modeldata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/modeldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/modeldata.h -------------------------------------------------------------------------------- /companion/src/firmwares/moduledata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/moduledata.h -------------------------------------------------------------------------------- /companion/src/firmwares/output_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/output_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/radiodata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/radiodata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/radiodata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/radiodata.h -------------------------------------------------------------------------------- /companion/src/firmwares/rawsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/rawsource.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/rawsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/rawsource.h -------------------------------------------------------------------------------- /companion/src/firmwares/rawswitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/rawswitch.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/rawswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/rawswitch.h -------------------------------------------------------------------------------- /companion/src/firmwares/sensordata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/sensordata.h -------------------------------------------------------------------------------- /companion/src/firmwares/telem_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/telem_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/timerdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/timerdata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/timerdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/firmwares/timerdata.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flasheepromdialog.cpp -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flasheepromdialog.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flasheepromdialog.ui -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flashfirmwaredialog.cpp -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flashfirmwaredialog.h -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/flashfirmwaredialog.ui -------------------------------------------------------------------------------- /companion/src/fusesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fusesdialog.cpp -------------------------------------------------------------------------------- /companion/src/fusesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fusesdialog.h -------------------------------------------------------------------------------- /companion/src/fusesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fusesdialog.ui -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fwpreferencesdialog.cpp -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fwpreferencesdialog.h -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/fwpreferencesdialog.ui -------------------------------------------------------------------------------- /companion/src/generaledit/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/generaledit/hardware.h -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/generaledit/trainer.cpp -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/generaledit/trainer.h -------------------------------------------------------------------------------- /companion/src/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/helpers.cpp -------------------------------------------------------------------------------- /companion/src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/helpers.h -------------------------------------------------------------------------------- /companion/src/helpers_html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/helpers_html.cpp -------------------------------------------------------------------------------- /companion/src/helpers_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/helpers_html.h -------------------------------------------------------------------------------- /companion/src/htmldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/htmldialog.ui -------------------------------------------------------------------------------- /companion/src/images/.gitignore: -------------------------------------------------------------------------------- 1 | */*.directory 2 | -------------------------------------------------------------------------------- /companion/src/images/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/customize.png -------------------------------------------------------------------------------- /companion/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/icon.png -------------------------------------------------------------------------------- /companion/src/images/iconmac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/iconmac.icns -------------------------------------------------------------------------------- /companion/src/images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/maps.png -------------------------------------------------------------------------------- /companion/src/images/originals/scripts/makewhite.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mogrify -negate -level 0,0,0 *.png 3 | 4 | -------------------------------------------------------------------------------- /companion/src/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/screenshot.png -------------------------------------------------------------------------------- /companion/src/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/splash.png -------------------------------------------------------------------------------- /companion/src/images/splash_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/splash_dmg.png -------------------------------------------------------------------------------- /companion/src/images/taranison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/taranison.png -------------------------------------------------------------------------------- /companion/src/images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/track.png -------------------------------------------------------------------------------- /companion/src/images/track0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/track0.png -------------------------------------------------------------------------------- /companion/src/images/winicons/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/winicons/icon.rc -------------------------------------------------------------------------------- /companion/src/images/wizard/flaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/wizard/flaps.png -------------------------------------------------------------------------------- /companion/src/images/wizard/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/wizard/gyro.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/wizard/tail.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/wizard/tails.png -------------------------------------------------------------------------------- /companion/src/images/wizard/vtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/images/wizard/vtail.png -------------------------------------------------------------------------------- /companion/src/logsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/logsdialog.cpp -------------------------------------------------------------------------------- /companion/src/logsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/logsdialog.h -------------------------------------------------------------------------------- /companion/src/logsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/logsdialog.ui -------------------------------------------------------------------------------- /companion/src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/macros.h -------------------------------------------------------------------------------- /companion/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/mainwindow.cpp -------------------------------------------------------------------------------- /companion/src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/mainwindow.h -------------------------------------------------------------------------------- /companion/src/mdichild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/mdichild.cpp -------------------------------------------------------------------------------- /companion/src/mdichild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/mdichild.h -------------------------------------------------------------------------------- /companion/src/mdichild.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/mdichild.ui -------------------------------------------------------------------------------- /companion/src/modeledit/channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/channels.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/channels.h -------------------------------------------------------------------------------- /companion/src/modeledit/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/curves.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/curves.h -------------------------------------------------------------------------------- /companion/src/modeledit/curves.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/curves.ui -------------------------------------------------------------------------------- /companion/src/modeledit/edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/edge.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/edge.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/expodialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/expodialog.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/flightmode.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/flightmodes.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/heli.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/heli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/heli.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/heli.ui -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/inputs.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/inputs.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/mixerdialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/mixes.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/mixes.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/modeledit.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/modeledit.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/modeledit.ui -------------------------------------------------------------------------------- /companion/src/modeledit/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/node.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/node.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/setup.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/setup.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/setup.ui -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/telemetry.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/telemetry.h -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modeledit/telemetry.ui -------------------------------------------------------------------------------- /companion/src/modelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modelprinter.cpp -------------------------------------------------------------------------------- /companion/src/modelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modelprinter.h -------------------------------------------------------------------------------- /companion/src/modelslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modelslist.cpp -------------------------------------------------------------------------------- /companion/src/modelslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/modelslist.h -------------------------------------------------------------------------------- /companion/src/multimodelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/multimodelprinter.cpp -------------------------------------------------------------------------------- /companion/src/multimodelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/multimodelprinter.h -------------------------------------------------------------------------------- /companion/src/printdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/printdialog.cpp -------------------------------------------------------------------------------- /companion/src/printdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/printdialog.h -------------------------------------------------------------------------------- /companion/src/printdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/printdialog.ui -------------------------------------------------------------------------------- /companion/src/process_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_copy.cpp -------------------------------------------------------------------------------- /companion/src/process_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_copy.h -------------------------------------------------------------------------------- /companion/src/process_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_flash.cpp -------------------------------------------------------------------------------- /companion/src/process_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_flash.h -------------------------------------------------------------------------------- /companion/src/process_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_sync.cpp -------------------------------------------------------------------------------- /companion/src/process_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/process_sync.h -------------------------------------------------------------------------------- /companion/src/profilechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/profilechooser.cpp -------------------------------------------------------------------------------- /companion/src/profilechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/profilechooser.h -------------------------------------------------------------------------------- /companion/src/profilechooser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/profilechooser.ui -------------------------------------------------------------------------------- /companion/src/progressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progressdialog.cpp -------------------------------------------------------------------------------- /companion/src/progressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progressdialog.h -------------------------------------------------------------------------------- /companion/src/progressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progressdialog.ui -------------------------------------------------------------------------------- /companion/src/progresswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progresswidget.cpp -------------------------------------------------------------------------------- /companion/src/progresswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progresswidget.h -------------------------------------------------------------------------------- /companion/src/progresswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/progresswidget.ui -------------------------------------------------------------------------------- /companion/src/radiointerface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/radiointerface.cpp -------------------------------------------------------------------------------- /companion/src/radiointerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/radiointerface.h -------------------------------------------------------------------------------- /companion/src/radionotfound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/radionotfound.cpp -------------------------------------------------------------------------------- /companion/src/radionotfound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/radionotfound.h -------------------------------------------------------------------------------- /companion/src/radionotfound.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/radionotfound.ui -------------------------------------------------------------------------------- /companion/src/releasenotesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/releasenotesdialog.cpp -------------------------------------------------------------------------------- /companion/src/releasenotesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/releasenotesdialog.h -------------------------------------------------------------------------------- /companion/src/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/shared/autocheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autocheckbox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autocheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autocheckbox.h -------------------------------------------------------------------------------- /companion/src/shared/autocombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autocombobox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autocombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autocombobox.h -------------------------------------------------------------------------------- /companion/src/shared/autohexspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autohexspinbox.h -------------------------------------------------------------------------------- /companion/src/shared/autolabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autolabel.cpp -------------------------------------------------------------------------------- /companion/src/shared/autolabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autolabel.h -------------------------------------------------------------------------------- /companion/src/shared/autolineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autolineedit.cpp -------------------------------------------------------------------------------- /companion/src/shared/autolineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autolineedit.h -------------------------------------------------------------------------------- /companion/src/shared/autoslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autoslider.cpp -------------------------------------------------------------------------------- /companion/src/shared/autoslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autoslider.h -------------------------------------------------------------------------------- /companion/src/shared/autospinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autospinbox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autospinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autospinbox.h -------------------------------------------------------------------------------- /companion/src/shared/autotimeedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autotimeedit.cpp -------------------------------------------------------------------------------- /companion/src/shared/autotimeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autotimeedit.h -------------------------------------------------------------------------------- /companion/src/shared/autowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autowidget.cpp -------------------------------------------------------------------------------- /companion/src/shared/autowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autowidget.h -------------------------------------------------------------------------------- /companion/src/shared/autowidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/autowidgets.h -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/genericpanel.cpp -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/shared/genericpanel.h -------------------------------------------------------------------------------- /companion/src/simulation/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/simulation/joystick.cpp -------------------------------------------------------------------------------- /companion/src/simulation/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/simulation/joystick.h -------------------------------------------------------------------------------- /companion/src/simulation/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/simulation/simulator.h -------------------------------------------------------------------------------- /companion/src/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/simulator.cpp -------------------------------------------------------------------------------- /companion/src/simulator.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/simulator.desktop.in -------------------------------------------------------------------------------- /companion/src/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/splash.h -------------------------------------------------------------------------------- /companion/src/splashlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/splashlabel.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/splashlibrarydialog.cpp -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/splashlibrarydialog.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/splashlibrarydialog.ui -------------------------------------------------------------------------------- /companion/src/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/storage/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/appdata.cpp -------------------------------------------------------------------------------- /companion/src/storage/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/appdata.h -------------------------------------------------------------------------------- /companion/src/storage/bineeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/bineeprom.cpp -------------------------------------------------------------------------------- /companion/src/storage/bineeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/bineeprom.h -------------------------------------------------------------------------------- /companion/src/storage/categorized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/categorized.cpp -------------------------------------------------------------------------------- /companion/src/storage/categorized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/categorized.h -------------------------------------------------------------------------------- /companion/src/storage/eepe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/eepe.cpp -------------------------------------------------------------------------------- /companion/src/storage/eepe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/eepe.h -------------------------------------------------------------------------------- /companion/src/storage/eepexml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/eepexml.cpp -------------------------------------------------------------------------------- /companion/src/storage/hexeeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/hexeeprom.cpp -------------------------------------------------------------------------------- /companion/src/storage/hexeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/hexeeprom.h -------------------------------------------------------------------------------- /companion/src/storage/hexinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/hexinterface.h -------------------------------------------------------------------------------- /companion/src/storage/mountlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/mountlist.cpp -------------------------------------------------------------------------------- /companion/src/storage/mountlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/mountlist.h -------------------------------------------------------------------------------- /companion/src/storage/otx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/otx.cpp -------------------------------------------------------------------------------- /companion/src/storage/otx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/otx.h -------------------------------------------------------------------------------- /companion/src/storage/rlefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/rlefile.cpp -------------------------------------------------------------------------------- /companion/src/storage/rlefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/rlefile.h -------------------------------------------------------------------------------- /companion/src/storage/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/sdcard.cpp -------------------------------------------------------------------------------- /companion/src/storage/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/sdcard.h -------------------------------------------------------------------------------- /companion/src/storage/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/storage.cpp -------------------------------------------------------------------------------- /companion/src/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/storage/storage.h -------------------------------------------------------------------------------- /companion/src/styleeditdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/styleeditdialog.cpp -------------------------------------------------------------------------------- /companion/src/styleeditdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/styleeditdialog.h -------------------------------------------------------------------------------- /companion/src/styleeditdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/styleeditdialog.ui -------------------------------------------------------------------------------- /companion/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/tests/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/tests/conversions.cpp -------------------------------------------------------------------------------- /companion/src/tests/gtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/tests/gtests.cpp -------------------------------------------------------------------------------- /companion/src/tests/gtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/tests/gtests.h -------------------------------------------------------------------------------- /companion/src/tests/location.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/tests/location.h.in -------------------------------------------------------------------------------- /companion/src/thirdparty/maxlibqt/src/widgets/TimerEdit: -------------------------------------------------------------------------------- 1 | #include "TimerEdit.h" 2 | -------------------------------------------------------------------------------- /companion/src/thirdparty/miniz/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DFOO) -------------------------------------------------------------------------------- /companion/src/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/translations.cpp -------------------------------------------------------------------------------- /companion/src/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/translations.h -------------------------------------------------------------------------------- /companion/src/translations.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/translations.qrc.in -------------------------------------------------------------------------------- /companion/src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/version.h.in -------------------------------------------------------------------------------- /companion/src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/warnings.h -------------------------------------------------------------------------------- /companion/src/wizarddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/wizarddata.cpp -------------------------------------------------------------------------------- /companion/src/wizarddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/wizarddata.h -------------------------------------------------------------------------------- /companion/src/wizarddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/wizarddialog.cpp -------------------------------------------------------------------------------- /companion/src/wizarddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/src/wizarddialog.h -------------------------------------------------------------------------------- /companion/targets/mac/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/targets/mac/DS_Store -------------------------------------------------------------------------------- /companion/targets/windows/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/targets/windows/avrdude.exe -------------------------------------------------------------------------------- /companion/targets/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/targets/windows/libusb0.dll -------------------------------------------------------------------------------- /companion/targets/windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/companion/targets/windows/license.txt -------------------------------------------------------------------------------- /doc/lua-reference-guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/doc/lua-reference-guide.tex -------------------------------------------------------------------------------- /jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | /settings.sh 2 | -------------------------------------------------------------------------------- /jenkins/get-from-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/get-from-server.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-21/release-all.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-21/update-repo.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-21/version.sh -------------------------------------------------------------------------------- /jenkins/nightly-22/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-22/release-all.sh -------------------------------------------------------------------------------- /jenkins/nightly-22/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-22/update-repo.sh -------------------------------------------------------------------------------- /jenkins/nightly-22/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/nightly-22/version.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-20/release-all.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-20/release-lua.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-voices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-20/release-voices.sh -------------------------------------------------------------------------------- /jenkins/release-20/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-20/update-repo.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-21/release-all.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-21/release-lua.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-voices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-21/release-voices.sh -------------------------------------------------------------------------------- /jenkins/release-21/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-21/update-repo.sh -------------------------------------------------------------------------------- /jenkins/release-21/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/release-21/version.sh -------------------------------------------------------------------------------- /jenkins/upload-to-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/jenkins/upload-to-server.sh -------------------------------------------------------------------------------- /launchpad/artful/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/artful/changelog -------------------------------------------------------------------------------- /launchpad/bionic/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/bionic/changelog -------------------------------------------------------------------------------- /launchpad/common/.gitignore: -------------------------------------------------------------------------------- 1 | /suffix 2 | -------------------------------------------------------------------------------- /launchpad/common/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/common/control -------------------------------------------------------------------------------- /launchpad/common/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/common/copyright -------------------------------------------------------------------------------- /launchpad/common/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/common/rules -------------------------------------------------------------------------------- /launchpad/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/prepare.sh -------------------------------------------------------------------------------- /launchpad/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/readme.md -------------------------------------------------------------------------------- /launchpad/update-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/update-changelog.sh -------------------------------------------------------------------------------- /launchpad/xenial/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/xenial/changelog -------------------------------------------------------------------------------- /launchpad/zesty/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/launchpad/zesty/changelog -------------------------------------------------------------------------------- /radio/.gitignore: -------------------------------------------------------------------------------- 1 | /gtest-1.6.0 2 | -------------------------------------------------------------------------------- /radio/data/MODELE24-2014-07-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/data/MODELE24-2014-07-11.csv -------------------------------------------------------------------------------- /radio/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/data/readme.txt -------------------------------------------------------------------------------- /radio/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/releasenotes.txt -------------------------------------------------------------------------------- /radio/sdcard/.gitignore: -------------------------------------------------------------------------------- 1 | */opentx.sdcard.version 2 | -------------------------------------------------------------------------------- /radio/sdcard/horus/IMAGES/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/horus/IMAGES/readme.txt -------------------------------------------------------------------------------- /radio/sdcard/horus/LOGS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/horus/LOGS/readme.txt -------------------------------------------------------------------------------- /radio/sdcard/horus/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/horus/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/tango/BF/bf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/BF/bf.lua -------------------------------------------------------------------------------- /radio/sdcard/tango/LOGS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/LOGS/readme.txt -------------------------------------------------------------------------------- /radio/sdcard/tango/MODELS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/MODELS/readme.txt -------------------------------------------------------------------------------- /radio/sdcard/tango/SCRIPTS/BF/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/SCRIPTS/BF/ui.lua -------------------------------------------------------------------------------- /radio/sdcard/tango/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/tango/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/tango/SCRIPTS/snake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/SCRIPTS/snake.lua -------------------------------------------------------------------------------- /radio/sdcard/tango/SOUNDS/en/d.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/SOUNDS/en/d.wav -------------------------------------------------------------------------------- /radio/sdcard/tango/SOUNDS/en/i.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/SOUNDS/en/i.wav -------------------------------------------------------------------------------- /radio/sdcard/tango/SOUNDS/en/p.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/sdcard/tango/SOUNDS/en/p.wav -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/.gitignore -------------------------------------------------------------------------------- /radio/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/audio.cpp -------------------------------------------------------------------------------- /radio/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/audio.h -------------------------------------------------------------------------------- /radio/src/bin_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bin_allocator.cpp -------------------------------------------------------------------------------- /radio/src/bin_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bin_allocator.h -------------------------------------------------------------------------------- /radio/src/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitfield.h -------------------------------------------------------------------------------- /radio/src/bitmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /*.lbm 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/128x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/128x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/128x64/download.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/128x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/128x64/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/.gitignore: -------------------------------------------------------------------------------- 1 | /mainmenu.png 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/icons.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/lock.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/logo.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/shutdown.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/212x64/startup.png -------------------------------------------------------------------------------- /radio/src/bitmaps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/bitmaps/sticks.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bitmaps/sticks.xbm -------------------------------------------------------------------------------- /radio/src/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bluetooth.cpp -------------------------------------------------------------------------------- /radio/src/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/bluetooth.h -------------------------------------------------------------------------------- /radio/src/buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/buzzer.cpp -------------------------------------------------------------------------------- /radio/src/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/buzzer.h -------------------------------------------------------------------------------- /radio/src/chksize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/chksize.h -------------------------------------------------------------------------------- /radio/src/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/cli.cpp -------------------------------------------------------------------------------- /radio/src/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/cli.h -------------------------------------------------------------------------------- /radio/src/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/crc.cpp -------------------------------------------------------------------------------- /radio/src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/crc.h -------------------------------------------------------------------------------- /radio/src/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/curves.cpp -------------------------------------------------------------------------------- /radio/src/dataconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/dataconstants.h -------------------------------------------------------------------------------- /radio/src/datastructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/datastructs.h -------------------------------------------------------------------------------- /radio/src/debounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/debounce.h -------------------------------------------------------------------------------- /radio/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/debug.cpp -------------------------------------------------------------------------------- /radio/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/debug.h -------------------------------------------------------------------------------- /radio/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/definitions.h -------------------------------------------------------------------------------- /radio/src/disk_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/disk_cache.cpp -------------------------------------------------------------------------------- /radio/src/disk_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/disk_cache.h -------------------------------------------------------------------------------- /radio/src/dmafifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/dmafifo.h -------------------------------------------------------------------------------- /radio/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/dump.cpp -------------------------------------------------------------------------------- /radio/src/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/dump.h -------------------------------------------------------------------------------- /radio/src/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fifo.h -------------------------------------------------------------------------------- /radio/src/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts.h -------------------------------------------------------------------------------- /radio/src/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/.gitignore -------------------------------------------------------------------------------- /radio/src/fonts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(480x272) 2 | -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Kanit/Kanit-Black.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Kanit/Kanit-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Kanit/Kanit-Light.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Kanit/Kanit-Thin.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Kanit/OFL.txt -------------------------------------------------------------------------------- /radio/src/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/Ubuntu/UFL.txt -------------------------------------------------------------------------------- /radio/src/fonts/extra_11px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/extra_11px.png -------------------------------------------------------------------------------- /radio/src/fonts/extra_16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/extra_16px.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/sqt5/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/sqt5/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/sqt5/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/sqt5/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/sqt5/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fi_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fi_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fr_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fr_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fr_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_fr_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_it_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_it_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_it_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_it_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pl_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pl_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pl_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pl_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pt_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pt_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pt_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_pt_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_se_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_se_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_se_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/fonts/std/font_se_10x14.png -------------------------------------------------------------------------------- /radio/src/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/functions.cpp -------------------------------------------------------------------------------- /radio/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/globals.h -------------------------------------------------------------------------------- /radio/src/gps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gps.cpp -------------------------------------------------------------------------------- /radio/src/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gps.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/gui/128x64/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/bmp.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/gui.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/menu_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/menu_model.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/menu_radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/menu_radio.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/menus.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/model_gvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/model_gvars.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/model_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/model_select.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/model_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/model_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/popups.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/radio_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/radio_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/view_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/view_about.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/128x64/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/gui/212x64/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/bmp.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/gui.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/menu_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/menu_model.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/menu_radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/menu_radio.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/menus.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/model_gvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/model_gvars.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/model_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/model_select.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/model_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/model_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/popups.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/radio_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/radio_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/view_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/view_about.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/212x64/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/gui/480x272/bitmapbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/bitmapbuffer.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/bitmaps.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/bitmaps.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/colors.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/curves.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/gui.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/layout.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/layout.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/menu_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/menu_model.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/menu_radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/menu_radio.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/menus.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/menus.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/model_gvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/model_gvars.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/model_mixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/model_mixes.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/model_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/model_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/radio_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/radio_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/radio_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/radio_tools.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/rle.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/rle.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/theme.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/theme.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/topbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/topbar.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/topbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/topbar.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/view_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/view_about.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/view_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/view_text.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/widget.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/widget.h -------------------------------------------------------------------------------- /radio/src/gui/480x272/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/480x272/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/480x272/zone.h -------------------------------------------------------------------------------- /radio/src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/gui/common/stdlcd/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/common/stdlcd/menus.cpp -------------------------------------------------------------------------------- /radio/src/gui/common/stdlcd/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/common/stdlcd/menus.h -------------------------------------------------------------------------------- /radio/src/gui/common/stdlcd/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/common/stdlcd/popups.h -------------------------------------------------------------------------------- /radio/src/gui/gui_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/gui_common.cpp -------------------------------------------------------------------------------- /radio/src/gui/gui_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/gui_common.h -------------------------------------------------------------------------------- /radio/src/gui/navigation/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/navigation/common.cpp -------------------------------------------------------------------------------- /radio/src/gui/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gui/screenshot.cpp -------------------------------------------------------------------------------- /radio/src/gvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gvars.cpp -------------------------------------------------------------------------------- /radio/src/gvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gvars.h -------------------------------------------------------------------------------- /radio/src/gyro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gyro.cpp -------------------------------------------------------------------------------- /radio/src/gyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/gyro.h -------------------------------------------------------------------------------- /radio/src/haptic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/haptic.cpp -------------------------------------------------------------------------------- /radio/src/haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/haptic.h -------------------------------------------------------------------------------- /radio/src/io/bootloader_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/bootloader_flash.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crc8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crc8.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crc8.h -------------------------------------------------------------------------------- /radio/src/io/crsf/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crossfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crossfire.h -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf.h -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf_utilities.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf_utilities.h -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf_write.cpp -------------------------------------------------------------------------------- /radio/src/io/crsf/crsf_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/crsf/crsf_write.h -------------------------------------------------------------------------------- /radio/src/io/frsky_firmware_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/frsky_firmware_update.h -------------------------------------------------------------------------------- /radio/src/io/frsky_pxx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/frsky_pxx2.h -------------------------------------------------------------------------------- /radio/src/io/frsky_sport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/frsky_sport.h -------------------------------------------------------------------------------- /radio/src/io/multi_firmware_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/multi_firmware_update.h -------------------------------------------------------------------------------- /radio/src/io/stk500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/io/stk500.h -------------------------------------------------------------------------------- /radio/src/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/keys.cpp -------------------------------------------------------------------------------- /radio/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/keys.h -------------------------------------------------------------------------------- /radio/src/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/logs.cpp -------------------------------------------------------------------------------- /radio/src/lua/.gitignore: -------------------------------------------------------------------------------- 1 | /lua_exports_*.inc 2 | -------------------------------------------------------------------------------- /radio/src/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/lua/api_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/api_general.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/api_lcd.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/api_model.cpp -------------------------------------------------------------------------------- /radio/src/lua/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/interface.cpp -------------------------------------------------------------------------------- /radio/src/lua/lua_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/lua_api.h -------------------------------------------------------------------------------- /radio/src/lua/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/lua/widgets.cpp -------------------------------------------------------------------------------- /radio/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/main.cpp -------------------------------------------------------------------------------- /radio/src/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/maths.cpp -------------------------------------------------------------------------------- /radio/src/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/mixer.cpp -------------------------------------------------------------------------------- /radio/src/mixer_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/mixer_scheduler.cpp -------------------------------------------------------------------------------- /radio/src/mixer_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/mixer_scheduler.h -------------------------------------------------------------------------------- /radio/src/myeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/myeeprom.h -------------------------------------------------------------------------------- /radio/src/opentx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/opentx.cpp -------------------------------------------------------------------------------- /radio/src/opentx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/opentx.h -------------------------------------------------------------------------------- /radio/src/opentx_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/opentx_constants.h -------------------------------------------------------------------------------- /radio/src/opentx_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/opentx_helpers.h -------------------------------------------------------------------------------- /radio/src/opentx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/opentx_types.h -------------------------------------------------------------------------------- /radio/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/options.h -------------------------------------------------------------------------------- /radio/src/pulses/afhds3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/afhds3.cpp -------------------------------------------------------------------------------- /radio/src/pulses/afhds3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/afhds3.h -------------------------------------------------------------------------------- /radio/src/pulses/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/pulses/dsm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/dsm2.cpp -------------------------------------------------------------------------------- /radio/src/pulses/ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/ghost.cpp -------------------------------------------------------------------------------- /radio/src/pulses/modules_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/modules_constants.h -------------------------------------------------------------------------------- /radio/src/pulses/modules_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/modules_helpers.cpp -------------------------------------------------------------------------------- /radio/src/pulses/modules_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/modules_helpers.h -------------------------------------------------------------------------------- /radio/src/pulses/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/multi.cpp -------------------------------------------------------------------------------- /radio/src/pulses/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/multi.h -------------------------------------------------------------------------------- /radio/src/pulses/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/ppm.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pulses.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pulses.h -------------------------------------------------------------------------------- /radio/src/pulses/pulses_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pulses_common.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pxx.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pxx1.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pxx1.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pxx2.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/pxx2.h -------------------------------------------------------------------------------- /radio/src/pulses/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pulses/sbus.cpp -------------------------------------------------------------------------------- /radio/src/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/pwr.h -------------------------------------------------------------------------------- /radio/src/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/rtc.cpp -------------------------------------------------------------------------------- /radio/src/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/rtc.h -------------------------------------------------------------------------------- /radio/src/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/rtos.h -------------------------------------------------------------------------------- /radio/src/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/sbus.cpp -------------------------------------------------------------------------------- /radio/src/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/sbus.h -------------------------------------------------------------------------------- /radio/src/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/sdcard.cpp -------------------------------------------------------------------------------- /radio/src/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/sdcard.h -------------------------------------------------------------------------------- /radio/src/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/serial.cpp -------------------------------------------------------------------------------- /radio/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/serial.h -------------------------------------------------------------------------------- /radio/src/simu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/simu.cpp -------------------------------------------------------------------------------- /radio/src/stamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/stamp.cpp -------------------------------------------------------------------------------- /radio/src/stamp.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/stamp.h.in -------------------------------------------------------------------------------- /radio/src/storage/eeprom_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_common.cpp -------------------------------------------------------------------------------- /radio/src/storage/eeprom_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_common.h -------------------------------------------------------------------------------- /radio/src/storage/eeprom_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_raw.cpp -------------------------------------------------------------------------------- /radio/src/storage/eeprom_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_raw.h -------------------------------------------------------------------------------- /radio/src/storage/eeprom_rlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_rlc.cpp -------------------------------------------------------------------------------- /radio/src/storage/eeprom_rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/eeprom_rlc.h -------------------------------------------------------------------------------- /radio/src/storage/modelslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/modelslist.cpp -------------------------------------------------------------------------------- /radio/src/storage/modelslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/modelslist.h -------------------------------------------------------------------------------- /radio/src/storage/rlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/rlc.cpp -------------------------------------------------------------------------------- /radio/src/storage/rtc_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/rtc_backup.cpp -------------------------------------------------------------------------------- /radio/src/storage/rtc_backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/rtc_backup.h -------------------------------------------------------------------------------- /radio/src/storage/sdcard_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/sdcard_raw.cpp -------------------------------------------------------------------------------- /radio/src/storage/sdcard_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/sdcard_raw.h -------------------------------------------------------------------------------- /radio/src/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/storage.h -------------------------------------------------------------------------------- /radio/src/storage/storage_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/storage/storage_common.cpp -------------------------------------------------------------------------------- /radio/src/strhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/strhelpers.cpp -------------------------------------------------------------------------------- /radio/src/strhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/strhelpers.h -------------------------------------------------------------------------------- /radio/src/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/switches.cpp -------------------------------------------------------------------------------- /radio/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/syscalls.c -------------------------------------------------------------------------------- /radio/src/targets/horus/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/horus/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/board.h -------------------------------------------------------------------------------- /radio/src/targets/horus/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/horus/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/hal.h -------------------------------------------------------------------------------- /radio/src/targets/horus/tp_gt911.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/tp_gt911.cpp -------------------------------------------------------------------------------- /radio/src/targets/horus/tp_gt911.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/horus/tp_gt911.h -------------------------------------------------------------------------------- /radio/src/targets/simu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/targets/simu/simpgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/simpgmspace.h -------------------------------------------------------------------------------- /radio/src/targets/simu/simudisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/simudisk.cpp -------------------------------------------------------------------------------- /radio/src/targets/simu/simueeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/simueeprom.cpp -------------------------------------------------------------------------------- /radio/src/targets/simu/simufatfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/simufatfs.cpp -------------------------------------------------------------------------------- /radio/src/targets/simu/simulcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/simu/simulcd.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/AT91SAM3S2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/AT91SAM3S2.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/AT91SAM3S4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/AT91SAM3S4.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/MEDSdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/MEDSdcard.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/Media.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/bluetooth.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/board.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/chip.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/core_cm3.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/core_cm3.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/crt.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/i2c_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/i2c_driver.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/sky9x/joystick.cpp -------------------------------------------------------------------------------- /radio/src/targets/stlink-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/stlink-v2.cfg -------------------------------------------------------------------------------- /radio/src/targets/stm32f2x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/stm32f2x_stlink.cfg -------------------------------------------------------------------------------- /radio/src/targets/stm32f4x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/stm32f4x_stlink.cfg -------------------------------------------------------------------------------- /radio/src/targets/taranis/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/taranis/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/taranis/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/taranis/board.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/taranis/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/taranis/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/taranis/dwt.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/taranis/hal.h -------------------------------------------------------------------------------- /radio/src/targets/tbs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/targets/tbs/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/tbs/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/board.h -------------------------------------------------------------------------------- /radio/src/targets/tbs/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/tbs/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/hal.h -------------------------------------------------------------------------------- /radio/src/targets/tbs/keys_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/keys_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/tbs/led_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/led_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/tbs/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/malloc.c -------------------------------------------------------------------------------- /radio/src/targets/tbs/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/targets/tbs/malloc.h -------------------------------------------------------------------------------- /radio/src/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tasks.cpp -------------------------------------------------------------------------------- /radio/src/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tasks.h -------------------------------------------------------------------------------- /radio/src/telemetry/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/crossfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/crossfire.h -------------------------------------------------------------------------------- /radio/src/telemetry/flysky_ibus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/flysky_ibus.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/flysky_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/flysky_ibus.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/frsky.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/frsky.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/frsky_d.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_pxx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/frsky_pxx2.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_sport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/frsky_sport.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/ghost.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/ghost.h -------------------------------------------------------------------------------- /radio/src/telemetry/hitec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/hitec.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/hitec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/hitec.h -------------------------------------------------------------------------------- /radio/src/telemetry/hott.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/hott.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/hott.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/hott.h -------------------------------------------------------------------------------- /radio/src/telemetry/mlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/mlink.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/mlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/mlink.h -------------------------------------------------------------------------------- /radio/src/telemetry/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/multi.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/multi.h -------------------------------------------------------------------------------- /radio/src/telemetry/spektrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/spektrum.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/spektrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/spektrum.h -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/telemetry.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/telemetry/telemetry.h -------------------------------------------------------------------------------- /radio/src/tests/1b_39x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/1b_39x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/1b_6x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/1b_6x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_20x20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/4b_20x20.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_31x31.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/4b_31x31.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_7x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/4b_7x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/tests/colorlcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/colorlcd.cpp -------------------------------------------------------------------------------- /radio/src/tests/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/conversions.cpp -------------------------------------------------------------------------------- /radio/src/tests/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/tests/dblsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/dblsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/dblsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/dblsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/drawswitch_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/drawswitch_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/eeprom.cpp -------------------------------------------------------------------------------- /radio/src/tests/eeprom_22_x7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/eeprom_22_x7.bin -------------------------------------------------------------------------------- /radio/src/tests/eeprom_22_x9d+.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/eeprom_22_x9d+.bin -------------------------------------------------------------------------------- /radio/src/tests/eeprom_22_xlite.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/eeprom_22_xlite.bin -------------------------------------------------------------------------------- /radio/src/tests/eeprom_23_x9d+.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/eeprom_23_x9d+.bin -------------------------------------------------------------------------------- /radio/src/tests/fonts_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/fonts_480x272.png -------------------------------------------------------------------------------- /radio/src/tests/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/frsky.cpp -------------------------------------------------------------------------------- /radio/src/tests/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/functions.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/gtests.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/gtests.h -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/invers_0_0_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/invers_0_0_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_1_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/invers_0_1_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_1_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/invers_0_1_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/lcd.cpp -------------------------------------------------------------------------------- /radio/src/tests/lcd_480x272.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/lcd_480x272.cpp -------------------------------------------------------------------------------- /radio/src/tests/line_wrap_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/line_wrap_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/location.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/location.h.in -------------------------------------------------------------------------------- /radio/src/tests/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/lua.cpp -------------------------------------------------------------------------------- /radio/src/tests/midsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/midsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/midsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/midsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/mixer.cpp -------------------------------------------------------------------------------- /radio/src/tests/model_22_x10.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/model_22_x10.otx -------------------------------------------------------------------------------- /radio/src/tests/model_22_x12s.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/model_22_x12s.otx -------------------------------------------------------------------------------- /radio/src/tests/plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/plane.bmp -------------------------------------------------------------------------------- /radio/src/tests/smlsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/smlsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/smlsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/smlsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/stdsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/stdsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/switches.cpp -------------------------------------------------------------------------------- /radio/src/tests/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/timers.cpp -------------------------------------------------------------------------------- /radio/src/tests/unsigned_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/unsigned_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/unsigned_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/unsigned_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/vline_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/vline_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/tests/vline_480x272.png -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/FatFs/diskio.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/FatFs/ff.c -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/FatFs/ff.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/FatFs/ffconf.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/Makefile -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/README -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/doc/lua.1 -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/doc/luac.1 -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lapi.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lapi.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/ldo.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/ldo.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lgc.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lgc.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/llex.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/llex.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lmem.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lmem.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/ltm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/ltm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lua.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lua.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/luac.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lvm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lvm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lzio.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/thirdparty/Lua/src/lzio.h -------------------------------------------------------------------------------- /radio/src/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/timers.cpp -------------------------------------------------------------------------------- /radio/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/timers.h -------------------------------------------------------------------------------- /radio/src/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/touch.h -------------------------------------------------------------------------------- /radio/src/trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/trainer.cpp -------------------------------------------------------------------------------- /radio/src/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/trainer.h -------------------------------------------------------------------------------- /radio/src/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations.cpp -------------------------------------------------------------------------------- /radio/src/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations.h -------------------------------------------------------------------------------- /radio/src/translations/cz.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/cz.h.txt -------------------------------------------------------------------------------- /radio/src/translations/de.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/de.h.txt -------------------------------------------------------------------------------- /radio/src/translations/en.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/en.h.txt -------------------------------------------------------------------------------- /radio/src/translations/es.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/es.h.txt -------------------------------------------------------------------------------- /radio/src/translations/fi.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/fi.h.txt -------------------------------------------------------------------------------- /radio/src/translations/fr.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/fr.h.txt -------------------------------------------------------------------------------- /radio/src/translations/it.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/it.h.txt -------------------------------------------------------------------------------- /radio/src/translations/nl.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/nl.h.txt -------------------------------------------------------------------------------- /radio/src/translations/pl.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/pl.h.txt -------------------------------------------------------------------------------- /radio/src/translations/pt.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/pt.h.txt -------------------------------------------------------------------------------- /radio/src/translations/se.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/se.h.txt -------------------------------------------------------------------------------- /radio/src/translations/tts_cz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_cz.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_de.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_de.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_en.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_en.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_es.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_es.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_fr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_fr.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_hu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_hu.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_it.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_nl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_pl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_pt.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_ru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_ru.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_se.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_se.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_sk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/translations/tts_sk.cpp -------------------------------------------------------------------------------- /radio/src/vario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/src/vario.cpp -------------------------------------------------------------------------------- /radio/util/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | 3 | -------------------------------------------------------------------------------- /radio/util/addtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/addtr.py -------------------------------------------------------------------------------- /radio/util/bin2lbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/bin2lbm.py -------------------------------------------------------------------------------- /radio/util/build-firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/build-firmware.py -------------------------------------------------------------------------------- /radio/util/capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/capitalize.py -------------------------------------------------------------------------------- /radio/util/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/codecs.py -------------------------------------------------------------------------------- /radio/util/crossfire-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/crossfire-parse.py -------------------------------------------------------------------------------- /radio/util/dsm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/dsm2.py -------------------------------------------------------------------------------- /radio/util/elf-size-compare.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/elf-size-compare.awk -------------------------------------------------------------------------------- /radio/util/elf-size-report.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/elf-size-report.awk -------------------------------------------------------------------------------- /radio/util/elf-size-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/elf-size-report.sh -------------------------------------------------------------------------------- /radio/util/fat12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/fat12.py -------------------------------------------------------------------------------- /radio/util/find_clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/find_clang.py -------------------------------------------------------------------------------- /radio/util/font2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/font2png.py -------------------------------------------------------------------------------- /radio/util/fwoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/fwoptions.py -------------------------------------------------------------------------------- /radio/util/generate_datacopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/generate_datacopy.py -------------------------------------------------------------------------------- /radio/util/img2lbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/img2lbm.py -------------------------------------------------------------------------------- /radio/util/lua/lua_event_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/lua/lua_event_test.lua -------------------------------------------------------------------------------- /radio/util/lua_trace2plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/lua_trace2plot.py -------------------------------------------------------------------------------- /radio/util/luaexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/luaexport.py -------------------------------------------------------------------------------- /radio/util/maxvolume.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/maxvolume.cmd -------------------------------------------------------------------------------- /radio/util/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/parse.py -------------------------------------------------------------------------------- /radio/util/sinus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/sinus.py -------------------------------------------------------------------------------- /radio/util/sport-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/sport-parse.py -------------------------------------------------------------------------------- /radio/util/taranisicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/taranisicons.py -------------------------------------------------------------------------------- /radio/util/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/translate.py -------------------------------------------------------------------------------- /radio/util/tts_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_common.py -------------------------------------------------------------------------------- /radio/util/tts_cz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_cz.py -------------------------------------------------------------------------------- /radio/util/tts_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_de.py -------------------------------------------------------------------------------- /radio/util/tts_doc_cz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_doc_cz.md -------------------------------------------------------------------------------- /radio/util/tts_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_en.py -------------------------------------------------------------------------------- /radio/util/tts_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_es.py -------------------------------------------------------------------------------- /radio/util/tts_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_fr.py -------------------------------------------------------------------------------- /radio/util/tts_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_it.py -------------------------------------------------------------------------------- /radio/util/tts_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_pt.py -------------------------------------------------------------------------------- /radio/util/tts_ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/tts_ru.py -------------------------------------------------------------------------------- /radio/util/voices_ru.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/radio/util/voices_ru.psv -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /sound/.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | -------------------------------------------------------------------------------- /sound/OpenTXSound.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/OpenTXSound.sln -------------------------------------------------------------------------------- /sound/recorder/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXrecorder.suo 2 | /bin/* 3 | /obj/* 4 | *.csproj.user 5 | -------------------------------------------------------------------------------- /sound/recorder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/App.xaml -------------------------------------------------------------------------------- /sound/recorder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/App.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/GPLv3_Logo.png -------------------------------------------------------------------------------- /sound/recorder/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/MainWindow.xaml -------------------------------------------------------------------------------- /sound/recorder/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/MainWindow.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/Program.cs -------------------------------------------------------------------------------- /sound/recorder/WaveIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/WaveIn.cs -------------------------------------------------------------------------------- /sound/recorder/WaveNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/WaveNative.cs -------------------------------------------------------------------------------- /sound/recorder/aboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/aboutWindow.xaml -------------------------------------------------------------------------------- /sound/recorder/aboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/aboutWindow.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/clsWaveProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/clsWaveProcessor.cs -------------------------------------------------------------------------------- /sound/recorder/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/icon.ico -------------------------------------------------------------------------------- /sound/recorder/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/play.png -------------------------------------------------------------------------------- /sound/recorder/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/record.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/recorder_logo.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/recorder_logo.xcf -------------------------------------------------------------------------------- /sound/recorder/sentencetables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/sentencetables.cs -------------------------------------------------------------------------------- /sound/recorder/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/recorder/stop.png -------------------------------------------------------------------------------- /sound/speaker/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXspeaker.suo 2 | /bin/* 3 | /obj/* 4 | -------------------------------------------------------------------------------- /sound/speaker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/App.xaml -------------------------------------------------------------------------------- /sound/speaker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/App.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/GPLv3_Logo.png -------------------------------------------------------------------------------- /sound/speaker/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/MainWindow.xaml -------------------------------------------------------------------------------- /sound/speaker/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/MainWindow.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/OpenTXspeaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/OpenTXspeaker.csproj -------------------------------------------------------------------------------- /sound/speaker/OpenTXspeaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/OpenTXspeaker.sln -------------------------------------------------------------------------------- /sound/speaker/aboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/aboutWindow.xaml -------------------------------------------------------------------------------- /sound/speaker/aboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/aboutWindow.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/eSpeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/eSpeak.png -------------------------------------------------------------------------------- /sound/speaker/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/icon.ico -------------------------------------------------------------------------------- /sound/speaker/installvoices.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/installvoices.xaml -------------------------------------------------------------------------------- /sound/speaker/installvoices.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/installvoices.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/sentencetables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/sentencetables.cs -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/speaker_logo.png -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/sound/speaker/speaker_logo.xcf -------------------------------------------------------------------------------- /tools/add-issue-links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/add-issue-links.py -------------------------------------------------------------------------------- /tools/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/boards.py -------------------------------------------------------------------------------- /tools/build-companion-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-companion-nightly.sh -------------------------------------------------------------------------------- /tools/build-companion-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-companion-release.sh -------------------------------------------------------------------------------- /tools/build-frsk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-frsk.py -------------------------------------------------------------------------------- /tools/build-frsky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-frsky.py -------------------------------------------------------------------------------- /tools/build-imrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-imrc.py -------------------------------------------------------------------------------- /tools/build-jumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-jumper.py -------------------------------------------------------------------------------- /tools/build-opentx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-opentx.py -------------------------------------------------------------------------------- /tools/build-radiomaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-radiomaster.py -------------------------------------------------------------------------------- /tools/build-tbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/build-tbs.py -------------------------------------------------------------------------------- /tools/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/clang-format.sh -------------------------------------------------------------------------------- /tools/codeformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/codeformat.sh -------------------------------------------------------------------------------- /tools/commit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/commit-tests.sh -------------------------------------------------------------------------------- /tools/copyright-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/copyright-header.txt -------------------------------------------------------------------------------- /tools/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/copyright.py -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/eeprom_upgd_check/check.lua -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/create.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/eeprom_upgd_check/create.lua -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/eeprom_upgd_check/readme.txt -------------------------------------------------------------------------------- /tools/extract-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/extract-map.py -------------------------------------------------------------------------------- /tools/include-guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/include-guard.py -------------------------------------------------------------------------------- /tools/latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/latency.py -------------------------------------------------------------------------------- /tools/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbs-fpv/freedomtx/HEAD/tools/uncrustify.cfg --------------------------------------------------------------------------------