├── .clang-format ├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── pull_request_template.md └── workflows │ ├── actions.yml │ ├── auto_close.yml │ ├── linux_cpn.yml │ ├── macosx_cpn.yml │ ├── win_cpn-32.yml │ └── win_cpn-64.yml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_muffin.md ├── cmake.sh ├── cmake ├── Bitmaps.cmake ├── FetchGtest.cmake ├── FetchMaxLibQt.cmake ├── FetchMiniz.cmake ├── FetchYamlCpp.cmake ├── FindDfuutil.cmake ├── FindFox.cmake ├── FindLibssl1.cmake ├── FindLibusb1.cmake ├── FindPhonon.cmake ├── FindSDL.cmake ├── FindXercesC.cmake ├── FindXsd.cmake ├── GenericDefinitions.cmake ├── Macros.cmake ├── NativeTargets.cmake ├── QtDefs.cmake └── toolchain │ ├── arm-none-eabi.cmake │ └── native.cmake ├── companion ├── releasenotes.txt ├── src │ ├── CMakeLists.txt │ ├── CPackLinuxDeploy.cmake.in │ ├── 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 │ ├── 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 │ ├── firmwares │ │ ├── CMakeLists.txt │ │ ├── adjustmentreference.cpp │ │ ├── adjustmentreference.h │ │ ├── boardfactories.cpp │ │ ├── boardfactories.h │ │ ├── boardjson.cpp │ │ ├── boardjson.h │ │ ├── boards.cpp │ │ ├── boards.h │ │ ├── curvedata.cpp │ │ ├── curvedata.h │ │ ├── curvereference.cpp │ │ ├── curvereference.h │ │ ├── customfunctiondata.cpp │ │ ├── customfunctiondata.h │ │ ├── customisation_data.cpp │ │ ├── customisation_data.h │ │ ├── datahelpers.cpp │ │ ├── datahelpers.h │ │ ├── edgetx │ │ │ ├── edgetxinterface.cpp │ │ │ ├── edgetxinterface.h │ │ │ ├── yaml_calibdata.cpp │ │ │ ├── yaml_calibdata.h │ │ │ ├── yaml_curvedata.cpp │ │ │ ├── yaml_curvedata.h │ │ │ ├── yaml_customfunctiondata.cpp │ │ │ ├── yaml_customfunctiondata.h │ │ │ ├── yaml_expodata.cpp │ │ │ ├── yaml_expodata.h │ │ │ ├── yaml_generalsettings.cpp │ │ │ ├── yaml_generalsettings.h │ │ │ ├── yaml_logicalswitchdata.cpp │ │ │ ├── yaml_logicalswitchdata.h │ │ │ ├── yaml_mixdata.cpp │ │ │ ├── yaml_mixdata.h │ │ │ ├── yaml_modeldata.cpp │ │ │ ├── yaml_modeldata.h │ │ │ ├── yaml_moduledata.cpp │ │ │ ├── yaml_moduledata.h │ │ │ ├── yaml_ops.cpp │ │ │ ├── yaml_ops.h │ │ │ ├── yaml_rawsource.cpp │ │ │ ├── yaml_rawsource.h │ │ │ ├── yaml_rawswitch.cpp │ │ │ ├── yaml_rawswitch.h │ │ │ ├── yaml_screendata.cpp │ │ │ ├── yaml_screendata.h │ │ │ ├── yaml_sensordata.cpp │ │ │ ├── yaml_sensordata.h │ │ │ ├── yaml_switchconfig.cpp │ │ │ ├── yaml_switchconfig.h │ │ │ ├── yaml_trainerdata.cpp │ │ │ ├── yaml_trainerdata.h │ │ │ ├── yaml_usbjoystickdata.cpp │ │ │ └── yaml_usbjoystickdata.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 │ ├── generaledit │ │ ├── CMakeLists.txt │ │ ├── calibration.cpp │ │ ├── calibration.h │ │ ├── generaledit.cpp │ │ ├── generaledit.h │ │ ├── generaledit.ui │ │ ├── generaloptions.cpp │ │ ├── generaloptions.h │ │ ├── generalsetup.cpp │ │ ├── generalsetup.h │ │ ├── generalsetup.ui │ │ ├── hardware.cpp │ │ ├── hardware.h │ │ ├── timezoneedit.cpp │ │ ├── timezoneedit.h │ │ ├── trainer.cpp │ │ └── trainer.h │ ├── helpers.cpp │ ├── helpers.h │ ├── helpers_html.cpp │ ├── helpers_html.h │ ├── htmldialog.ui │ ├── hwdefs.qrc.in │ ├── images │ │ ├── .gitignore │ │ ├── companion-title-alt.png │ │ ├── companion-title.png │ │ ├── customize.png │ │ ├── icon.png │ │ ├── iconmac.icns │ │ ├── layouts │ │ │ ├── mask_layout1+2.png │ │ │ ├── mask_layout1+3.png │ │ │ ├── mask_layout1x1.png │ │ │ ├── mask_layout1x2.png │ │ │ ├── mask_layout1x3.png │ │ │ ├── mask_layout1x4.png │ │ │ ├── mask_layout2+1.png │ │ │ ├── mask_layout2+3.png │ │ │ ├── mask_layout2x1.png │ │ │ ├── mask_layout2x2.png │ │ │ ├── mask_layout2x3.png │ │ │ ├── mask_layout2x4.png │ │ │ ├── mask_layout4+2.png │ │ │ └── mask_layout4+2b.png │ │ ├── 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 │ │ │ │ ├── download.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 │ │ │ │ ├── download.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 │ │ │ ├── Boxer │ │ │ │ ├── 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 │ │ │ ├── Commando8 │ │ │ │ ├── bottom.png │ │ │ │ ├── left-mdl.png │ │ │ │ ├── left-rtn.png │ │ │ │ ├── left-sys.png │ │ │ │ ├── right-dn.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right-pagedn.png │ │ │ │ ├── right-pageup.png │ │ │ │ ├── right-up.png │ │ │ │ └── top.png │ │ │ ├── Fatfish │ │ │ │ └── F16 │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── right.png │ │ │ │ │ └── top.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 │ │ │ ├── JumperT12max │ │ │ │ ├── bottom.png │ │ │ │ ├── exit.png │ │ │ │ ├── left.png │ │ │ │ ├── menu.png │ │ │ │ ├── page.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── JumperT14 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── JumperT15 │ │ │ │ ├── bottom.png │ │ │ │ ├── exit.png │ │ │ │ ├── left.png │ │ │ │ ├── model.png │ │ │ │ ├── page.png │ │ │ │ ├── right.png │ │ │ │ └── top.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 │ │ │ ├── JumperT20 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.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 │ │ │ ├── JumperTPROS │ │ │ │ ├── bottom.png │ │ │ │ ├── exit.png │ │ │ │ ├── left.png │ │ │ │ ├── menu.png │ │ │ │ ├── page.png │ │ │ │ ├── right-ent.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── LR3PRO │ │ │ │ ├── bottom.png │ │ │ │ ├── center_LCD.png │ │ │ │ ├── left.png │ │ │ │ ├── left_escape.png │ │ │ │ ├── right.png │ │ │ │ ├── right_down.png │ │ │ │ ├── right_enter.png │ │ │ │ ├── right_minus.png │ │ │ │ ├── right_plus.png │ │ │ │ ├── right_up.png │ │ │ │ └── top.png │ │ │ ├── NV14 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── PL18 │ │ │ │ ├── bottom.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ ├── Pocket │ │ │ │ ├── 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 │ │ │ ├── edgetx.ico │ │ │ ├── edgetx_128.ico │ │ │ ├── edgetx_16.ico │ │ │ ├── edgetx_20.ico │ │ │ ├── edgetx_24.ico │ │ │ ├── edgetx_256.ico │ │ │ ├── edgetx_30.ico │ │ │ ├── edgetx_32.ico │ │ │ ├── edgetx_36.ico │ │ │ ├── edgetx_40.ico │ │ │ ├── edgetx_48.ico │ │ │ ├── edgetx_60.ico │ │ │ ├── edgetx_64.ico │ │ │ ├── edgetx_72.ico │ │ │ ├── edgetx_80.ico │ │ │ ├── edgetx_96.ico │ │ │ └── icon.rc │ │ └── 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 │ ├── labels.cpp │ ├── labels.h │ ├── 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 │ │ ├── colorcustomscreens.cpp │ │ ├── colorcustomscreens.h │ │ ├── curves.cpp │ │ ├── curves.h │ │ ├── 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 │ │ ├── modeloptions.cpp │ │ ├── modeloptions.h │ │ ├── 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 │ ├── shared │ │ ├── CMakeLists.txt │ │ ├── autobitmappedcheckbox.cpp │ │ ├── autobitmappedcheckbox.h │ │ ├── autobitmappedcombobox.cpp │ │ ├── autobitmappedcombobox.h │ │ ├── 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 │ │ ├── curvedialog.cpp │ │ ├── curvedialog.h │ │ ├── curvedialog.ui │ │ ├── curveimage.cpp │ │ ├── curveimage.h │ │ ├── curveimagewidget.cpp │ │ ├── curveimagewidget.h │ │ ├── genericpanel.cpp │ │ ├── genericpanel.h │ │ ├── labelvalidator.h │ │ ├── namevalidator.h │ │ ├── textvalidator.cpp │ │ ├── textvalidator.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 │ │ ├── keys_cheat_list.txt │ │ ├── radiooutputswidget.cpp │ │ ├── radiooutputswidget.h │ │ ├── radiooutputswidget.ui │ │ ├── radiouiaction.h │ │ ├── simulateduiwidget.cpp │ │ ├── simulateduiwidget.h │ │ ├── simulateduiwidget9X.cpp │ │ ├── simulateduiwidget9X.ui │ │ ├── simulateduiwidgetBoxer.cpp │ │ ├── simulateduiwidgetBoxer.ui │ │ ├── simulateduiwidgetCommando8.cpp │ │ ├── simulateduiwidgetCommando8.ui │ │ ├── simulateduiwidgetEL18.cpp │ │ ├── simulateduiwidgetEL18.ui │ │ ├── simulateduiwidgetFatfishF16.cpp │ │ ├── simulateduiwidgetFatfishF16.ui │ │ ├── simulateduiwidgetJumperT12.cpp │ │ ├── simulateduiwidgetJumperT12.ui │ │ ├── simulateduiwidgetJumperT12max.cpp │ │ ├── simulateduiwidgetJumperT12max.ui │ │ ├── simulateduiwidgetJumperT14.cpp │ │ ├── simulateduiwidgetJumperT14.ui │ │ ├── simulateduiwidgetJumperT15.cpp │ │ ├── simulateduiwidgetJumperT15.ui │ │ ├── simulateduiwidgetJumperT16.cpp │ │ ├── simulateduiwidgetJumperT16.ui │ │ ├── simulateduiwidgetJumperT18.cpp │ │ ├── simulateduiwidgetJumperT18.ui │ │ ├── simulateduiwidgetJumperT20.cpp │ │ ├── simulateduiwidgetJumperT20.ui │ │ ├── simulateduiwidgetJumperTLITE.cpp │ │ ├── simulateduiwidgetJumperTLITE.ui │ │ ├── simulateduiwidgetJumperTPRO.cpp │ │ ├── simulateduiwidgetJumperTPRO.ui │ │ ├── simulateduiwidgetJumperTPROS.cpp │ │ ├── simulateduiwidgetJumperTPROS.ui │ │ ├── simulateduiwidgetLR3PRO.cpp │ │ ├── simulateduiwidgetLR3PRO.ui │ │ ├── simulateduiwidgetNV14.cpp │ │ ├── simulateduiwidgetNV14.ui │ │ ├── simulateduiwidgetPL18.cpp │ │ ├── simulateduiwidgetPL18.ui │ │ ├── simulateduiwidgetPocket.cpp │ │ ├── simulateduiwidgetPocket.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.cpp │ │ │ ├── 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 │ ├── sounds │ │ ├── 0.wav │ │ ├── 1.wav │ │ ├── 10.wav │ │ ├── 11.wav │ │ ├── 12.wav │ │ ├── 13.wav │ │ ├── 14.wav │ │ ├── 15.wav │ │ ├── 2.wav │ │ ├── 3.wav │ │ ├── 4.wav │ │ ├── 5.wav │ │ ├── 6.wav │ │ ├── 7.wav │ │ ├── 8.wav │ │ └── 9.wav │ ├── splash.h │ ├── splashlabel.h │ ├── splashlibrarydialog.cpp │ ├── splashlibrarydialog.h │ ├── splashlibrarydialog.ui │ ├── storage │ │ ├── CMakeLists.txt │ │ ├── appdata.cpp │ │ ├── appdata.h │ │ ├── bineeprom.cpp │ │ ├── bineeprom.h │ │ ├── crc.cpp │ │ ├── crc.h │ │ ├── eepe.cpp │ │ ├── eepe.h │ │ ├── eepexml.cpp │ │ ├── etx.cpp │ │ ├── etx.h │ │ ├── firmwareinterface.cpp │ │ ├── firmwareinterface.h │ │ ├── hexeeprom.cpp │ │ ├── hexeeprom.h │ │ ├── hexinterface.cpp │ │ ├── hexinterface.h │ │ ├── labeled.cpp │ │ ├── labeled.h │ │ ├── minizinterface.cpp │ │ ├── minizinterface.h │ │ ├── mountlist.cpp │ │ ├── mountlist.h │ │ ├── otx.cpp │ │ ├── otx.h │ │ ├── rlefile.cpp │ │ ├── rlefile.h │ │ ├── sdcard.cpp │ │ ├── sdcard.h │ │ ├── storage.cpp │ │ ├── storage.h │ │ ├── yaml.cpp │ │ └── yaml.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ │ ├── download.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.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 │ │ │ ├── download.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.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 │ │ │ ├── download.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.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 │ │ │ ├── download.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.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 │ │ │ ├── download.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.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 │ │ └── qcustomplot │ │ │ ├── CMakeLists.txt │ │ │ ├── GPL.txt │ │ │ ├── changelog.txt │ │ │ ├── qcustomplot.cpp │ │ │ └── qcustomplot.h │ ├── translations.cpp │ ├── translations.h │ ├── translations.qrc.in │ ├── translations │ │ ├── companion_cs.ts │ │ ├── companion_da.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 │ ├── updates │ │ ├── CMakeLists.txt │ │ ├── chooserdialog.cpp │ │ ├── chooserdialog.h │ │ ├── chooserdialog.ui │ │ ├── downloaddialog.cpp │ │ ├── downloaddialog.h │ │ ├── downloaddialog.ui │ │ ├── repo.cpp │ │ ├── repo.h │ │ ├── repoassets.cpp │ │ ├── repoassets.h │ │ ├── repodatamodels.cpp │ │ ├── repodatamodels.h │ │ ├── repometadata.cpp │ │ ├── repometadata.h │ │ ├── reporeleases.cpp │ │ ├── reporeleases.h │ │ ├── updatecompanion.cpp │ │ ├── updatecompanion.h │ │ ├── updatefactories.cpp │ │ ├── updatefactories.h │ │ ├── updatefirmware.cpp │ │ ├── updatefirmware.h │ │ ├── updateinterface.cpp │ │ ├── updateinterface.h │ │ ├── updatemultiprotocol.cpp │ │ ├── updatemultiprotocol.h │ │ ├── updatenetwork.cpp │ │ ├── updatenetwork.h │ │ ├── updateoptionsdialog.cpp │ │ ├── updateoptionsdialog.h │ │ ├── updateoptionsdialog.ui │ │ ├── updateparameters.cpp │ │ ├── updateparameters.h │ │ ├── updates.cpp │ │ ├── updates.h │ │ ├── updatesdcard.cpp │ │ ├── updatesdcard.h │ │ ├── updatesdialog.cpp │ │ ├── updatesdialog.h │ │ ├── updatesdialog.ui │ │ ├── updatesounds.cpp │ │ ├── updatesounds.h │ │ ├── updatestatus.cpp │ │ ├── updatestatus.h │ │ ├── updatethemes.cpp │ │ └── updatethemes.h │ ├── 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 │ │ ├── libcrypto-1_1-x64.dll │ │ ├── libcrypto-1_1.dll │ │ ├── libssl-1_1-x64.dll │ │ ├── libssl-1_1.dll │ │ └── license.txt.in └── util │ └── generate_hwdefs_qrc.py ├── fw.json ├── radio ├── .gitignore ├── data │ ├── MODELE24-2014-07-11-sport.log │ ├── MODELE24-2014-07-11.csv │ └── readme.txt ├── releasenotes.txt ├── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── FreeRTOSConfig.h │ ├── MultiProtoDefs.h │ ├── MultiSubtypeDefs.h │ ├── analogs.cpp │ ├── analogs.h │ ├── audio.cpp │ ├── audio.h │ ├── bin_allocator.cpp │ ├── bin_allocator.h │ ├── bitmaps │ │ ├── .gitignore │ │ ├── 128x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── sleep.png │ │ │ └── splash.png │ │ ├── 212x64 │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── icons.png │ │ │ ├── lock.png │ │ │ ├── logo.png │ │ │ ├── power.png │ │ │ ├── shutdown.png │ │ │ ├── sleep.png │ │ │ ├── splash.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 │ │ │ ├── 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 │ │ │ │ └── img-src │ │ │ │ │ ├── horusboot.svg │ │ │ │ │ ├── horusboot_OKKOicons.svg │ │ │ │ │ ├── horusboot_connected.svg │ │ │ │ │ └── horusboot_file.svg │ │ │ ├── button │ │ │ │ └── alpha_button_off.png │ │ │ ├── default_theme │ │ │ │ ├── alpha_stick_background.png │ │ │ │ ├── alpha_stick_pointer.png │ │ │ │ ├── img-src │ │ │ │ │ ├── radio_icons.svg │ │ │ │ │ └── timer_calib.svg │ │ │ │ ├── mask_busy.png │ │ │ │ ├── mask_currentmenu_bg.png │ │ │ │ ├── mask_currentmenu_dot.png │ │ │ │ ├── mask_currentmenu_shadow.png │ │ │ │ ├── mask_edgetx.png │ │ │ │ ├── mask_error.png │ │ │ │ ├── mask_menu_model.png │ │ │ │ ├── mask_menu_model_select.png │ │ │ │ ├── mask_menu_notes.png │ │ │ │ ├── mask_menu_radio.png │ │ │ │ ├── mask_menu_stats.png │ │ │ │ ├── mask_menu_theme.png │ │ │ │ ├── mask_model_curves.png │ │ │ │ ├── mask_model_flight_modes.png │ │ │ │ ├── mask_model_grid_large.png │ │ │ │ ├── mask_model_grid_small.png │ │ │ │ ├── mask_model_gvars.png │ │ │ │ ├── mask_model_heli.png │ │ │ │ ├── mask_model_inputs.png │ │ │ │ ├── mask_model_list_one.png │ │ │ │ ├── mask_model_list_two.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_model_usb.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_mplex_add.png │ │ │ │ ├── mask_mplex_multi.png │ │ │ │ ├── mask_mplex_replace.png │ │ │ │ ├── mask_radio_calibration.png │ │ │ │ ├── mask_radio_edit_theme.png │ │ │ │ ├── mask_radio_global_functions.png │ │ │ │ ├── mask_radio_hardware.png │ │ │ │ ├── mask_radio_sd_browser.png │ │ │ │ ├── mask_radio_setup.png │ │ │ │ ├── mask_radio_tools.png │ │ │ │ ├── mask_radio_trainer.png │ │ │ │ ├── mask_radio_version.png │ │ │ │ ├── mask_radio_wifi.png │ │ │ │ ├── mask_shutdown.png │ │ │ │ ├── mask_stats_analogs.png │ │ │ │ ├── mask_stats_debug.png │ │ │ │ ├── mask_stats_throttle_graph.png │ │ │ │ ├── mask_stats_timers.png │ │ │ │ ├── mask_textline_curve.png │ │ │ │ ├── mask_textline_fm.png │ │ │ │ ├── mask_theme_add_view.png │ │ │ │ ├── mask_theme_setup.png │ │ │ │ ├── mask_theme_view1.png │ │ │ │ ├── mask_theme_view10.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 │ │ │ │ ├── mask_theme_view9.png │ │ │ │ └── mask_topleft.png │ │ │ ├── mask_antenna.png │ │ │ ├── mask_coord_shadow.png │ │ │ ├── mask_cvpoint.png │ │ │ ├── mask_cvpoint_center.png │ │ │ ├── mask_dot.png │ │ │ ├── mask_point.png │ │ │ ├── mask_rscale.png │ │ │ ├── mask_shutdown_circle.png │ │ │ ├── mask_timer.png │ │ │ ├── mask_timer_bg.png │ │ │ ├── mask_topmenu_gps_18.png │ │ │ ├── mask_topmenu_usb.png │ │ │ ├── mask_trim_shadow.png │ │ │ ├── mask_txbat.png │ │ │ ├── mask_txbat_charging.png │ │ │ ├── mask_usb_symbol.png │ │ │ ├── splash_logo.png │ │ │ └── volume │ │ │ │ ├── img-src │ │ │ │ └── volume.svg │ │ │ │ ├── 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 │ ├── boards │ │ └── generic_stm32 │ │ │ ├── CMakeLists.txt │ │ │ ├── analog_inputs.cpp │ │ │ ├── analog_inputs.h │ │ │ ├── aux_ports.cpp │ │ │ ├── bor_level.cpp │ │ │ ├── inputs.cpp │ │ │ ├── intmodule_heartbeat.cpp │ │ │ ├── intmodule_heartbeat.h │ │ │ ├── linker │ │ │ ├── bootloader.ld │ │ │ ├── common_sections.ld │ │ │ ├── common_text.ld │ │ │ ├── definitions.ld │ │ │ ├── firmware.ld │ │ │ ├── section_ccm.ld │ │ │ ├── stm32f20x │ │ │ │ ├── extra_sections.ld │ │ │ │ └── layout.ld │ │ │ ├── stm32f40x │ │ │ │ ├── extra_sections.ld │ │ │ │ └── layout.ld │ │ │ ├── stm32f413 │ │ │ │ ├── extra_sections.ld │ │ │ │ └── layout.ld │ │ │ └── stm32f429_sdram │ │ │ │ ├── extra_sections.ld │ │ │ │ └── layout.ld │ │ │ ├── module_ports.cpp │ │ │ ├── module_ports.h │ │ │ ├── rgb_leds.cpp │ │ │ ├── rgb_leds.h │ │ │ ├── sport_update.cpp │ │ │ ├── sport_update.h │ │ │ ├── startup │ │ │ ├── startup_stm32f205xx.s │ │ │ ├── startup_stm32f40_41xxx.s │ │ │ ├── startup_stm32f413xx.s │ │ │ └── startup_stm32f42_43xxx.s │ │ │ ├── switches.cpp │ │ │ └── trainer_ports.cpp │ ├── buzzer.cpp │ ├── buzzer.h │ ├── chksize.h │ ├── cli.cpp │ ├── cli.h │ ├── crc.cpp │ ├── crc.h │ ├── curves.cpp │ ├── curves.h │ ├── dataconstants.h │ ├── datastructs.h │ ├── datastructs_private.h │ ├── debug.cpp │ ├── debug.h │ ├── definitions.h │ ├── disk_cache.cpp │ ├── disk_cache.h │ ├── drivers │ │ ├── frftl.cpp │ │ └── frftl.h │ ├── dump.cpp │ ├── dump.h │ ├── fifo.h │ ├── fonts │ │ ├── .gitignore │ │ ├── Arimo │ │ │ ├── Arimo-Bold.ttf │ │ │ └── Arimo-Regular.ttf │ │ ├── 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 │ │ ├── Noto │ │ │ ├── LICENSE_OFL.txt │ │ │ ├── NotoSansCJKsc-Bold.otf │ │ │ ├── NotoSansCJKsc-Regular.otf │ │ │ └── README │ │ ├── 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 │ │ ├── extra_17px.png │ │ ├── lvgl │ │ │ ├── EdgeTX │ │ │ │ ├── OpenArrow-Regular.woff │ │ │ │ ├── extra.sfd │ │ │ │ ├── extra.svg │ │ │ │ └── extra.ttf │ │ │ ├── get_char_ck.py │ │ │ ├── get_char_cyrillic.py │ │ │ ├── get_char_he.py │ │ │ ├── get_char_jp.py │ │ │ ├── lv_font_arimo_he_13.c │ │ │ ├── lv_font_arimo_he_16.c │ │ │ ├── lv_font_arimo_he_24.c │ │ │ ├── lv_font_arimo_he_9.c │ │ │ ├── lv_font_arimo_he_bold_16.c │ │ │ ├── lv_font_arimo_he_bold_32.c │ │ │ ├── lv_font_arimo_he_bold_64.c │ │ │ ├── lv_font_arimo_ru_13.c │ │ │ ├── lv_font_arimo_ru_16.c │ │ │ ├── lv_font_arimo_ru_24.c │ │ │ ├── lv_font_arimo_ru_9.c │ │ │ ├── lv_font_arimo_ru_bold_16.c │ │ │ ├── lv_font_arimo_ru_bold_32.c │ │ │ ├── lv_font_arimo_ru_bold_64.c │ │ │ ├── lv_font_arimo_ua_13.c │ │ │ ├── lv_font_arimo_ua_16.c │ │ │ ├── lv_font_arimo_ua_24.c │ │ │ ├── lv_font_arimo_ua_9.c │ │ │ ├── lv_font_arimo_ua_bold_16.c │ │ │ ├── lv_font_arimo_ua_bold_32.c │ │ │ ├── lv_font_arimo_ua_bold_64.c │ │ │ ├── lv_font_noto_cn_13.c │ │ │ ├── lv_font_noto_cn_16.c │ │ │ ├── lv_font_noto_cn_24.c │ │ │ ├── lv_font_noto_cn_9.c │ │ │ ├── lv_font_noto_cn_bold_16.c │ │ │ ├── lv_font_noto_cn_bold_32.c │ │ │ ├── lv_font_noto_cn_bold_64.c │ │ │ ├── lv_font_noto_jp_13.c │ │ │ ├── lv_font_noto_jp_16.c │ │ │ ├── lv_font_noto_jp_24.c │ │ │ ├── lv_font_noto_jp_9.c │ │ │ ├── lv_font_noto_jp_bold_16.c │ │ │ ├── lv_font_noto_jp_bold_32.c │ │ │ ├── lv_font_noto_jp_bold_64.c │ │ │ ├── lv_font_noto_tw_13.c │ │ │ ├── lv_font_noto_tw_16.c │ │ │ ├── lv_font_noto_tw_24.c │ │ │ ├── lv_font_noto_tw_9.c │ │ │ ├── lv_font_noto_tw_bold_16.c │ │ │ ├── lv_font_noto_tw_bold_32.c │ │ │ ├── lv_font_noto_tw_bold_64.c │ │ │ ├── lv_font_roboto_13.c │ │ │ ├── lv_font_roboto_16.c │ │ │ ├── lv_font_roboto_24.c │ │ │ ├── lv_font_roboto_9.c │ │ │ ├── lv_font_roboto_bl_16.c │ │ │ ├── lv_font_roboto_bold_16.c │ │ │ ├── lv_font_roboto_bold_32.c │ │ │ ├── lv_font_roboto_bold_64.c │ │ │ ├── lz4_font.cpp │ │ │ └── make_fonts.sh │ │ ├── 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_da_04x06.png │ │ │ ├── font_da_05x07.png │ │ │ ├── font_da_08x10.png │ │ │ ├── font_da_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_ru_04x06.png │ │ │ ├── font_ru_05x07.png │ │ │ ├── font_ru_08x10.png │ │ │ ├── font_ru_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ ├── font_se_10x14.png │ │ │ ├── font_ua_04x06.png │ │ │ ├── font_ua_05x07.png │ │ │ ├── font_ua_08x10.png │ │ │ └── font_ua_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_da_04x06.png │ │ │ ├── font_da_05x07.png │ │ │ ├── font_da_08x10.png │ │ │ ├── font_da_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_ru_04x06.png │ │ │ ├── font_ru_05x07.png │ │ │ ├── font_ru_08x10.png │ │ │ ├── font_ru_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ ├── font_se_10x14.png │ │ │ ├── font_ua_04x06.png │ │ │ ├── font_ua_05x07.png │ │ │ ├── font_ua_08x10.png │ │ │ └── font_ua_10x14.png │ ├── functions.cpp │ ├── fw_version.h │ ├── globals.h │ ├── gps.cpp │ ├── gps.h │ ├── gui │ │ ├── 128x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── bmp.cpp │ │ │ ├── gui.h │ │ │ ├── lcd.cpp │ │ │ ├── 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 │ │ │ ├── model_templates.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 │ │ ├── 212x64 │ │ │ ├── CMakeLists.txt │ │ │ ├── bmp.cpp │ │ │ ├── gui.h │ │ │ ├── lcd.cpp │ │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── colorlcd │ │ │ ├── CMakeLists.txt │ │ │ ├── LvglWrapper.cpp │ │ │ ├── LvglWrapper.h │ │ │ ├── access_settings.cpp │ │ │ ├── access_settings.h │ │ │ ├── afhds2a_settings.cpp │ │ │ ├── afhds2a_settings.h │ │ │ ├── afhds3_options.cpp │ │ │ ├── afhds3_options.h │ │ │ ├── afhds3_settings.cpp │ │ │ ├── afhds3_settings.h │ │ │ ├── bind_menu_d16.cpp │ │ │ ├── bind_menu_d16.h │ │ │ ├── bitmaps.cpp │ │ │ ├── bitmaps.h │ │ │ ├── channel_bar.cpp │ │ │ ├── channel_bar.h │ │ │ ├── channel_range.cpp │ │ │ ├── channel_range.h │ │ │ ├── color_editor.cpp │ │ │ ├── color_editor.h │ │ │ ├── color_list.cpp │ │ │ ├── color_list.h │ │ │ ├── color_picker.cpp │ │ │ ├── color_picker.h │ │ │ ├── colors.cpp │ │ │ ├── colors.h │ │ │ ├── confirm_dialog.cpp │ │ │ ├── confirm_dialog.h │ │ │ ├── crossfire_settings.cpp │ │ │ ├── crossfire_settings.h │ │ │ ├── curve.cpp │ │ │ ├── curve.h │ │ │ ├── curve_param.cpp │ │ │ ├── curve_param.h │ │ │ ├── curveedit.cpp │ │ │ ├── curveedit.h │ │ │ ├── curves.cpp │ │ │ ├── custom_failsafe.cpp │ │ │ ├── custom_failsafe.h │ │ │ ├── draw_functions.cpp │ │ │ ├── draw_functions.h │ │ │ ├── file_browser.cpp │ │ │ ├── file_browser.h │ │ │ ├── file_carosell.cpp │ │ │ ├── file_carosell.h │ │ │ ├── file_preview.cpp │ │ │ ├── file_preview.h │ │ │ ├── fm_matrix.cpp │ │ │ ├── fm_matrix.h │ │ │ ├── fonts.cpp │ │ │ ├── fullscreen_dialog.cpp │ │ │ ├── fullscreen_dialog.h │ │ │ ├── function_switches.cpp │ │ │ ├── function_switches.h │ │ │ ├── getset_helpers.h │ │ │ ├── gui.h │ │ │ ├── gvar_numberedit.cpp │ │ │ ├── gvar_numberedit.h │ │ │ ├── hw_bluetooth.cpp │ │ │ ├── hw_bluetooth.h │ │ │ ├── hw_extmodule.cpp │ │ │ ├── hw_extmodule.h │ │ │ ├── hw_inputs.cpp │ │ │ ├── hw_inputs.h │ │ │ ├── hw_intmodule.cpp │ │ │ ├── hw_intmodule.h │ │ │ ├── hw_serial.cpp │ │ │ ├── hw_serial.h │ │ │ ├── input_edit.cpp │ │ │ ├── input_edit.h │ │ │ ├── input_edit_adv.cpp │ │ │ ├── input_edit_adv.h │ │ │ ├── input_mix_button.cpp │ │ │ ├── input_mix_button.h │ │ │ ├── input_mix_group.cpp │ │ │ ├── input_mix_group.h │ │ │ ├── input_source.cpp │ │ │ ├── input_source.h │ │ │ ├── layout.cpp │ │ │ ├── layout.h │ │ │ ├── layouts │ │ │ │ ├── layout1+2.cpp │ │ │ │ ├── layout1+3.cpp │ │ │ │ ├── layout1x1.cpp │ │ │ │ ├── layout1x2.cpp │ │ │ │ ├── layout1x3.cpp │ │ │ │ ├── layout1x4.cpp │ │ │ │ ├── layout2+1.cpp │ │ │ │ ├── layout2+3.cpp │ │ │ │ ├── layout2x1.cpp │ │ │ │ ├── layout2x2.cpp │ │ │ │ ├── layout2x3.cpp │ │ │ │ ├── layout2x4.cpp │ │ │ │ ├── layout4+2.cpp │ │ │ │ ├── layout4+2b.cpp │ │ │ │ ├── layout_factory_impl.cpp │ │ │ │ ├── layout_factory_impl.h │ │ │ │ ├── sliders.cpp │ │ │ │ ├── sliders.h │ │ │ │ ├── topbar_impl.cpp │ │ │ │ ├── topbar_impl.h │ │ │ │ ├── trims.cpp │ │ │ │ └── trims.h │ │ │ ├── lcd.cpp │ │ │ ├── lcd.h │ │ │ ├── libopenui.h │ │ │ ├── list_line_button.cpp │ │ │ ├── list_line_button.h │ │ │ ├── listbox.cpp │ │ │ ├── listbox.h │ │ │ ├── lz4_bitmaps.cpp │ │ │ ├── lz4_bitmaps.h │ │ │ ├── lz4_fonts.h │ │ │ ├── menu_model.cpp │ │ │ ├── menu_model.h │ │ │ ├── menu_radio.cpp │ │ │ ├── menu_radio.h │ │ │ ├── menu_screen.cpp │ │ │ ├── menu_screen.h │ │ │ ├── menus.h │ │ │ ├── message_dialog.cpp │ │ │ ├── message_dialog.h │ │ │ ├── mixer_edit.cpp │ │ │ ├── mixer_edit.h │ │ │ ├── mixer_edit_adv.cpp │ │ │ ├── mixer_edit_adv.h │ │ │ ├── model_curves.cpp │ │ │ ├── model_curves.h │ │ │ ├── model_flightmodes.cpp │ │ │ ├── model_flightmodes.h │ │ │ ├── model_gvars.cpp │ │ │ ├── model_gvars.h │ │ │ ├── model_heli.cpp │ │ │ ├── model_heli.h │ │ │ ├── model_inputs.cpp │ │ │ ├── model_inputs.h │ │ │ ├── model_logical_switches.cpp │ │ │ ├── model_logical_switches.h │ │ │ ├── model_mixer_scripts.cpp │ │ │ ├── model_mixer_scripts.h │ │ │ ├── model_mixes.cpp │ │ │ ├── model_mixes.h │ │ │ ├── model_outputs.cpp │ │ │ ├── model_outputs.h │ │ │ ├── model_select.cpp │ │ │ ├── model_select.h │ │ │ ├── model_setup.cpp │ │ │ ├── model_setup.h │ │ │ ├── model_telemetry.cpp │ │ │ ├── model_telemetry.h │ │ │ ├── model_templates.cpp │ │ │ ├── model_templates.h │ │ │ ├── model_usbjoystick.cpp │ │ │ ├── model_usbjoystick.h │ │ │ ├── module_setup.cpp │ │ │ ├── module_setup.h │ │ │ ├── mpm_settings.cpp │ │ │ ├── mpm_settings.h │ │ │ ├── multi_rfprotos.cpp │ │ │ ├── multi_rfprotos.h │ │ │ ├── output_edit.cpp │ │ │ ├── output_edit.h │ │ │ ├── page.cpp │ │ │ ├── page.h │ │ │ ├── popups.cpp │ │ │ ├── popups.h │ │ │ ├── ppm_settings.cpp │ │ │ ├── ppm_settings.h │ │ │ ├── preflight_checks.cpp │ │ │ ├── preflight_checks.h │ │ │ ├── preview_window.cpp │ │ │ ├── preview_window.h │ │ │ ├── pxx1_settings.cpp │ │ │ ├── pxx1_settings.h │ │ │ ├── radio_calibration.cpp │ │ │ ├── radio_calibration.h │ │ │ ├── radio_diaganas.cpp │ │ │ ├── radio_diaganas.h │ │ │ ├── radio_diagcustswitches.cpp │ │ │ ├── radio_diagcustswitches.h │ │ │ ├── radio_diagkeys.cpp │ │ │ ├── radio_diagkeys.h │ │ │ ├── radio_ghost_module_config.cpp │ │ │ ├── radio_ghost_module_config.h │ │ │ ├── radio_hardware.cpp │ │ │ ├── radio_hardware.h │ │ │ ├── radio_sdmanager.cpp │ │ │ ├── radio_sdmanager.h │ │ │ ├── radio_setup.cpp │ │ │ ├── radio_setup.h │ │ │ ├── radio_spectrum_analyser.cpp │ │ │ ├── radio_spectrum_analyser.h │ │ │ ├── radio_theme.cpp │ │ │ ├── radio_theme.h │ │ │ ├── radio_tools.cpp │ │ │ ├── radio_tools.h │ │ │ ├── radio_trainer.cpp │ │ │ ├── radio_trainer.h │ │ │ ├── radio_version.cpp │ │ │ ├── radio_version.h │ │ │ ├── radio_wifi.cpp │ │ │ ├── radio_wifi.h │ │ │ ├── screen_setup.cpp │ │ │ ├── screen_setup.h │ │ │ ├── screen_user_interface.cpp │ │ │ ├── screen_user_interface.h │ │ │ ├── select_fab_button.cpp │ │ │ ├── select_fab_button.h │ │ │ ├── select_fab_carousel.cpp │ │ │ ├── select_fab_carousel.h │ │ │ ├── sourcechoice.cpp │ │ │ ├── sourcechoice.h │ │ │ ├── special_functions.cpp │ │ │ ├── special_functions.h │ │ │ ├── splash.cpp │ │ │ ├── standalone_lua.cpp │ │ │ ├── standalone_lua.h │ │ │ ├── switch_warn_dialog.cpp │ │ │ ├── switch_warn_dialog.h │ │ │ ├── switchchoice.cpp │ │ │ ├── switchchoice.h │ │ │ ├── tabsgroup.cpp │ │ │ ├── tabsgroup.h │ │ │ ├── textedits.h │ │ │ ├── theme.cpp │ │ │ ├── theme.h │ │ │ ├── theme_manager.cpp │ │ │ ├── theme_manager.h │ │ │ ├── themes │ │ │ │ ├── etx_lv_theme.cpp │ │ │ │ └── etx_lv_theme.h │ │ │ ├── throttle_params.cpp │ │ │ ├── throttle_params.h │ │ │ ├── timeedit.cpp │ │ │ ├── timeedit.h │ │ │ ├── timer_setup.cpp │ │ │ ├── timer_setup.h │ │ │ ├── topbar.cpp │ │ │ ├── topbar.h │ │ │ ├── trainer_bluetooth.cpp │ │ │ ├── trainer_bluetooth.h │ │ │ ├── trainer_setup.cpp │ │ │ ├── trainer_setup.h │ │ │ ├── trims_setup.cpp │ │ │ ├── trims_setup.h │ │ │ ├── view_about.cpp │ │ │ ├── view_about.h │ │ │ ├── view_channels.cpp │ │ │ ├── view_channels.h │ │ │ ├── view_logical_switches.cpp │ │ │ ├── view_logical_switches.h │ │ │ ├── view_main.cpp │ │ │ ├── view_main.h │ │ │ ├── view_main_decoration.cpp │ │ │ ├── view_main_decoration.h │ │ │ ├── view_main_menu.cpp │ │ │ ├── view_main_menu.h │ │ │ ├── view_statistics.cpp │ │ │ ├── view_statistics.h │ │ │ ├── view_text.cpp │ │ │ ├── view_text.h │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ ├── widget_settings.cpp │ │ │ ├── widget_settings.h │ │ │ ├── widgets │ │ │ │ ├── gauge.cpp │ │ │ │ ├── modelbmp.cpp │ │ │ │ ├── outputs.cpp │ │ │ │ ├── radio_info.cpp │ │ │ │ ├── text.cpp │ │ │ │ ├── timer.cpp │ │ │ │ ├── value.cpp │ │ │ │ └── widgets_container_impl.h │ │ │ ├── widgets_container.h │ │ │ ├── widgets_setup.cpp │ │ │ ├── widgets_setup.h │ │ │ └── zone.h │ │ ├── common │ │ │ └── stdlcd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── calibration.cpp │ │ │ │ ├── calibration.h │ │ │ │ ├── draw_functions.cpp │ │ │ │ ├── draw_functions.h │ │ │ │ ├── features.h │ │ │ │ ├── fonts.cpp │ │ │ │ ├── fonts.h │ │ │ │ ├── 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 │ │ │ │ ├── model_usbjoystick.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 │ │ │ │ ├── splash.cpp │ │ │ │ ├── utf8.cpp │ │ │ │ ├── utf8.h │ │ │ │ ├── view_telemetry.cpp │ │ │ │ └── view_text.cpp │ │ ├── gui_common.cpp │ │ ├── gui_common.h │ │ ├── navigation │ │ │ ├── common.cpp │ │ │ ├── navigation.h │ │ │ ├── navigation_9x.cpp │ │ │ ├── navigation_x7.cpp │ │ │ ├── navigation_x9d.cpp │ │ │ └── navigation_xlite.cpp │ │ └── screenshot.cpp │ ├── gvars.cpp │ ├── gvars.h │ ├── gyro.cpp │ ├── gyro.h │ ├── hal │ │ ├── CMakeLists.txt │ │ ├── abnormal_reboot.h │ │ ├── adc_driver.cpp │ │ ├── adc_driver.h │ │ ├── eeprom_driver.h │ │ ├── fatfs_diskio.cpp │ │ ├── fatfs_diskio.h │ │ ├── key_driver.cpp │ │ ├── key_driver.h │ │ ├── module_driver.h │ │ ├── module_port.cpp │ │ ├── module_port.h │ │ ├── rotary_encoder.h │ │ ├── serial_driver.h │ │ ├── serial_port.h │ │ ├── storage.cpp │ │ ├── storage.h │ │ ├── switch_driver.cpp │ │ ├── switch_driver.h │ │ ├── timer_driver.h │ │ ├── trainer_driver.h │ │ ├── usb_driver.h │ │ └── watchdog_driver.h │ ├── haptic.cpp │ ├── haptic.h │ ├── inactivity_timer.cpp │ ├── inactivity_timer.h │ ├── input_mapping.cpp │ ├── input_mapping.h │ ├── io │ │ ├── bootloader_flash.cpp │ │ ├── bootloader_flash.h │ │ ├── frsky_firmware_update.cpp │ │ ├── frsky_firmware_update.h │ │ ├── frsky_sport.h │ │ ├── multi_firmware_update.cpp │ │ ├── multi_firmware_update.h │ │ ├── multi_protolist.cpp │ │ ├── multi_protolist.h │ │ └── stk500.h │ ├── keys.cpp │ ├── keys.h │ ├── logs.cpp │ ├── lua │ │ ├── CMakeLists.txt │ │ ├── api_colorlcd.cpp │ │ ├── api_colorlcd.h │ │ ├── api_filesystem.cpp │ │ ├── api_filesystem.h │ │ ├── api_general.cpp │ │ ├── api_model.cpp │ │ ├── api_stdlcd.cpp │ │ ├── interface.cpp │ │ ├── lua_api.h │ │ ├── lua_event.cpp │ │ ├── lua_event.h │ │ ├── lua_touch.h │ │ ├── lua_widget.cpp │ │ ├── lua_widget.h │ │ ├── lua_widget_factory.cpp │ │ ├── lua_widget_factory.h │ │ └── widgets.cpp │ ├── lv_conf.h │ ├── main.cpp │ ├── maths.cpp │ ├── mixer.cpp │ ├── mixer_scheduler.cpp │ ├── mixer_scheduler.h │ ├── mixes.cpp │ ├── mixes.h │ ├── model_audio.cpp │ ├── model_audio.h │ ├── model_init.cpp │ ├── model_init.h │ ├── module.h │ ├── myeeprom.h │ ├── opentx.cpp │ ├── opentx.h │ ├── opentx_constants.h │ ├── opentx_helpers.h │ ├── opentx_types.h │ ├── options.h │ ├── pulses │ │ ├── afhds2.cpp │ │ ├── afhds2.h │ │ ├── afhds3.cpp │ │ ├── afhds3.h │ │ ├── afhds3_config.h │ │ ├── afhds3_module.h │ │ ├── afhds3_transport.cpp │ │ ├── afhds3_transport.h │ │ ├── crossfire.cpp │ │ ├── crossfire.h │ │ ├── dsm2.cpp │ │ ├── dsm2.h │ │ ├── flysky.cpp │ │ ├── flysky.h │ │ ├── ghost.cpp │ │ ├── ghost.h │ │ ├── modules_constants.h │ │ ├── modules_helpers.cpp │ │ ├── modules_helpers.h │ │ ├── multi.cpp │ │ ├── multi.h │ │ ├── ppm.cpp │ │ ├── ppm.h │ │ ├── pulses.cpp │ │ ├── pulses.h │ │ ├── pulses_common.h │ │ ├── pxx.cpp │ │ ├── pxx.h │ │ ├── pxx1.cpp │ │ ├── pxx1.h │ │ ├── pxx1_transport.h │ │ ├── pxx2.cpp │ │ ├── pxx2.h │ │ ├── pxx2_ota.cpp │ │ ├── pxx2_ota.h │ │ ├── pxx2_transport.h │ │ ├── sbus.cpp │ │ └── sbus.h │ ├── pwr.h │ ├── rtc.cpp │ ├── rtc.h │ ├── rtos.c │ ├── rtos.h │ ├── sbus.cpp │ ├── sbus.h │ ├── sdcard.cpp │ ├── sdcard.h │ ├── serial.cpp │ ├── serial.h │ ├── simu.cpp │ ├── spacemouse.cpp │ ├── spacemouse.h │ ├── stamp.cpp │ ├── stamp.h.in │ ├── storage │ │ ├── modelslist.cpp │ │ ├── modelslist.h │ │ ├── rlc.cpp │ │ ├── rlc.h │ │ ├── rtc_backup.cpp │ │ ├── rtc_backup.h │ │ ├── sdcard_common.cpp │ │ ├── sdcard_common.h │ │ ├── sdcard_raw.h │ │ ├── sdcard_yaml.cpp │ │ ├── sdcard_yaml.h │ │ ├── storage.h │ │ ├── storage_common.cpp │ │ └── yaml │ │ │ ├── CMakeLists.txt │ │ │ ├── yaml_bits.cpp │ │ │ ├── yaml_bits.h │ │ │ ├── yaml_datastructs.cpp │ │ │ ├── yaml_datastructs.h │ │ │ ├── yaml_datastructs_128x64.cpp │ │ │ ├── yaml_datastructs_funcs.cpp │ │ │ ├── yaml_datastructs_muffin.cpp │ │ │ ├── yaml_datastructs_nv14.cpp │ │ │ ├── yaml_datastructs_pl18.cpp │ │ │ ├── yaml_datastructs_t15.cpp │ │ │ ├── yaml_datastructs_t20.cpp │ │ │ ├── yaml_datastructs_tpro.cpp │ │ │ ├── yaml_datastructs_x10.cpp │ │ │ ├── yaml_datastructs_x12s.cpp │ │ │ ├── yaml_datastructs_x9d.cpp │ │ │ ├── yaml_datastructs_x9e.cpp │ │ │ ├── yaml_datastructs_xlites.cpp │ │ │ ├── yaml_defs.h │ │ │ ├── yaml_labelslist.cpp │ │ │ ├── yaml_labelslist.h │ │ │ ├── yaml_modelslist.cpp │ │ │ ├── yaml_modelslist.h │ │ │ ├── yaml_node.h │ │ │ ├── yaml_parser.cpp │ │ │ ├── yaml_parser.h │ │ │ ├── yaml_tree_walker.cpp │ │ │ └── yaml_tree_walker.h │ ├── strhelpers.cpp │ ├── strhelpers.h │ ├── switches.cpp │ ├── switches.h │ ├── syscalls.c │ ├── targets │ │ ├── common │ │ │ ├── arm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── loadboot.cpp │ │ │ │ └── stm32 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── abnormal_reboot.cpp │ │ │ │ │ ├── ads79xx.cpp │ │ │ │ │ ├── ads79xx.h │ │ │ │ │ ├── audio_dac_driver.cpp │ │ │ │ │ ├── bluetooth_driver.cpp │ │ │ │ │ ├── bluetooth_driver.h │ │ │ │ │ ├── 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_driver.cpp │ │ │ │ │ ├── delays_driver.h │ │ │ │ │ ├── diskio_sdio.cpp │ │ │ │ │ ├── diskio_sdio.h │ │ │ │ │ ├── diskio_spi.cpp │ │ │ │ │ ├── diskio_spi.h │ │ │ │ │ ├── diskio_spi_flash.cpp │ │ │ │ │ ├── diskio_spi_flash.h │ │ │ │ │ ├── dma2d.cpp │ │ │ │ │ ├── dma2d.h │ │ │ │ │ ├── f2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── system_stm32f2xx.c │ │ │ │ │ ├── f4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── system_stm32f4xx.c │ │ │ │ │ ├── flash_driver.cpp │ │ │ │ │ ├── flysky_gimbal_driver.cpp │ │ │ │ │ ├── flysky_gimbal_driver.h │ │ │ │ │ ├── heartbeat_driver.cpp │ │ │ │ │ ├── heartbeat_driver.h │ │ │ │ │ ├── lsm6ds_driver.cpp │ │ │ │ │ ├── mixer_scheduler_driver.cpp │ │ │ │ │ ├── module_timer_driver.cpp │ │ │ │ │ ├── module_timer_driver.h │ │ │ │ │ ├── pwr_driver.cpp │ │ │ │ │ ├── rotary_encoder_driver.cpp │ │ │ │ │ ├── rtc_driver.cpp │ │ │ │ │ ├── sdcard_spi.cpp │ │ │ │ │ ├── sdcard_spi.h │ │ │ │ │ ├── spi_flash.cpp │ │ │ │ │ ├── spi_flash.h │ │ │ │ │ ├── sticks_pwm_driver.cpp │ │ │ │ │ ├── sticks_pwm_driver.h │ │ │ │ │ ├── stm32_adc.cpp │ │ │ │ │ ├── stm32_adc.h │ │ │ │ │ ├── stm32_cmsis.h │ │ │ │ │ ├── stm32_dma.cpp │ │ │ │ │ ├── stm32_dma.h │ │ │ │ │ ├── stm32_exti_driver.cpp │ │ │ │ │ ├── stm32_exti_driver.h │ │ │ │ │ ├── stm32_gpio_driver.cpp │ │ │ │ │ ├── stm32_gpio_driver.h │ │ │ │ │ ├── stm32_hal.cpp │ │ │ │ │ ├── stm32_hal.h │ │ │ │ │ ├── stm32_hal_ll.h │ │ │ │ │ ├── stm32_i2c_driver.cpp │ │ │ │ │ ├── stm32_i2c_driver.h │ │ │ │ │ ├── stm32_pulse_driver.cpp │ │ │ │ │ ├── stm32_pulse_driver.h │ │ │ │ │ ├── stm32_serial_driver.cpp │ │ │ │ │ ├── stm32_serial_driver.h │ │ │ │ │ ├── stm32_softserial_driver.cpp │ │ │ │ │ ├── stm32_softserial_driver.h │ │ │ │ │ ├── stm32_spi.cpp │ │ │ │ │ ├── stm32_spi.h │ │ │ │ │ ├── stm32_spi_adc.h │ │ │ │ │ ├── stm32_switch_driver.cpp │ │ │ │ │ ├── stm32_switch_driver.h │ │ │ │ │ ├── stm32_timer.cpp │ │ │ │ │ ├── stm32_timer.h │ │ │ │ │ ├── stm32_usart_driver.cpp │ │ │ │ │ ├── stm32_usart_driver.h │ │ │ │ │ ├── stm32_ws2812.cpp │ │ │ │ │ ├── stm32_ws2812.h │ │ │ │ │ ├── stm32f2xx_hal_conf.h │ │ │ │ │ ├── stm32f4xx_hal_conf.h │ │ │ │ │ ├── timers_driver.cpp │ │ │ │ │ ├── timers_driver.h │ │ │ │ │ ├── trainer_driver.cpp │ │ │ │ │ ├── trainer_driver.h │ │ │ │ │ ├── usb_conf.h │ │ │ │ │ ├── usb_driver.cpp │ │ │ │ │ ├── usbd_cdc.cpp │ │ │ │ │ ├── usbd_conf.c │ │ │ │ │ ├── usbd_conf.h │ │ │ │ │ ├── usbd_desc.c │ │ │ │ │ ├── usbd_desc.h │ │ │ │ │ ├── usbd_hid_joystick.c │ │ │ │ │ ├── usbd_msc_conf.h │ │ │ │ │ ├── usbd_storage_msd.cpp │ │ │ │ │ ├── usbd_storage_msd.h │ │ │ │ │ ├── vs1053b.cpp │ │ │ │ │ └── watchdog_driver.cpp │ │ │ └── esp32 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── abnormal_reboot.cpp │ │ │ │ ├── adc_hal_driver.cpp │ │ │ │ ├── board_common.h │ │ │ │ ├── components │ │ │ │ ├── lvgl_esp32_drivers │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CONTRIBUTE_CONTROLLER_SUPPORT.md │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── component.mk │ │ │ │ │ ├── lvgl_helpers.c │ │ │ │ │ ├── lvgl_helpers.h │ │ │ │ │ ├── lvgl_i2c │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── i2c_manager.c │ │ │ │ │ │ └── i2c_manager.h │ │ │ │ │ ├── lvgl_spi_conf.h │ │ │ │ │ ├── lvgl_tft │ │ │ │ │ │ ├── EVE.h │ │ │ │ │ │ ├── EVE_commands.c │ │ │ │ │ │ ├── EVE_commands.h │ │ │ │ │ │ ├── EVE_config.h │ │ │ │ │ │ ├── FT81x.c │ │ │ │ │ │ ├── FT81x.h │ │ │ │ │ │ ├── GC9A01.c │ │ │ │ │ │ ├── GC9A01.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── disp_driver.c │ │ │ │ │ │ ├── disp_driver.h │ │ │ │ │ │ ├── disp_mcu.c │ │ │ │ │ │ ├── disp_mcu.h │ │ │ │ │ │ ├── disp_spi.c │ │ │ │ │ │ ├── disp_spi.h │ │ │ │ │ │ ├── esp_lcd_backlight.c │ │ │ │ │ │ ├── esp_lcd_backlight.h │ │ │ │ │ │ ├── esp_lcd_panel_hx8357.c │ │ │ │ │ │ ├── esp_lcd_panel_ili9488.c │ │ │ │ │ │ ├── hx8357.c │ │ │ │ │ │ ├── hx8357.h │ │ │ │ │ │ ├── il3820.c │ │ │ │ │ │ ├── il3820.h │ │ │ │ │ │ ├── ili9163c.c │ │ │ │ │ │ ├── ili9163c.h │ │ │ │ │ │ ├── ili9341.c │ │ │ │ │ │ ├── ili9341.h │ │ │ │ │ │ ├── ili9481.c │ │ │ │ │ │ ├── ili9481.h │ │ │ │ │ │ ├── ili9486.c │ │ │ │ │ │ ├── ili9486.h │ │ │ │ │ │ ├── ili9488.c │ │ │ │ │ │ ├── ili9488.h │ │ │ │ │ │ ├── jd79653a.c │ │ │ │ │ │ ├── jd79653a.h │ │ │ │ │ │ ├── pcd8544.c │ │ │ │ │ │ ├── pcd8544.h │ │ │ │ │ │ ├── ra8875.c │ │ │ │ │ │ ├── ra8875.h │ │ │ │ │ │ ├── sh1107.c │ │ │ │ │ │ ├── sh1107.h │ │ │ │ │ │ ├── ssd1306.c │ │ │ │ │ │ ├── ssd1306.h │ │ │ │ │ │ ├── st7735s.c │ │ │ │ │ │ ├── st7735s.h │ │ │ │ │ │ ├── st7789.c │ │ │ │ │ │ ├── st7789.h │ │ │ │ │ │ ├── st7796s.c │ │ │ │ │ │ ├── st7796s.h │ │ │ │ │ │ ├── uc8151d.c │ │ │ │ │ │ └── uc8151d.h │ │ │ │ │ └── lvgl_touch │ │ │ │ │ │ ├── FT81x.c │ │ │ │ │ │ ├── FT81x.h │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── adcraw.c │ │ │ │ │ │ ├── adcraw.h │ │ │ │ │ │ ├── ft6x36.c │ │ │ │ │ │ ├── ft6x36.h │ │ │ │ │ │ ├── gt911.c │ │ │ │ │ │ ├── gt911.h │ │ │ │ │ │ ├── ra8875_touch.c │ │ │ │ │ │ ├── ra8875_touch.h │ │ │ │ │ │ ├── stmpe610.c │ │ │ │ │ │ ├── stmpe610.h │ │ │ │ │ │ ├── touch_driver.c │ │ │ │ │ │ ├── touch_driver.h │ │ │ │ │ │ ├── tp_spi.c │ │ │ │ │ │ ├── tp_spi.h │ │ │ │ │ │ ├── xpt2046.c │ │ │ │ │ │ └── xpt2046.h │ │ │ │ └── nimble_central_utils │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── esp_central.h │ │ │ │ │ ├── misc.c │ │ │ │ │ └── peer.c │ │ │ │ ├── diskio_spi.cpp │ │ │ │ ├── diskio_spi.h │ │ │ │ ├── dma2d.h │ │ │ │ ├── esp32_rmt_rx.cpp │ │ │ │ ├── esp32_rmt_rx.h │ │ │ │ ├── esp32_rmt_uart.cpp │ │ │ │ ├── esp32_uart_driver.cpp │ │ │ │ ├── esp32_uart_driver.h │ │ │ │ ├── esp_ble_powerup.c │ │ │ │ ├── esprc.h │ │ │ │ ├── esprc_packet.h │ │ │ │ ├── ftp-server │ │ │ │ ├── WiFi.c │ │ │ │ ├── WiFi.h │ │ │ │ ├── ftp.c │ │ │ │ ├── ftp.h │ │ │ │ ├── initWiFi.cpp │ │ │ │ └── network.h │ │ │ │ ├── heartbeat_driver.h │ │ │ │ ├── i2c_driver.cpp │ │ │ │ ├── i2c_driver.h │ │ │ │ ├── mixer_scheduler_driver.cpp │ │ │ │ ├── ota_server │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.example │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ │ └── ota_server.h │ │ │ │ └── ota_server.c │ │ │ │ ├── pulses_bt_powerup.cpp │ │ │ │ ├── pulses_esp32.h │ │ │ │ ├── pulses_espnow.cpp │ │ │ │ ├── rmt_uart_tx_encoder.cpp │ │ │ │ ├── sound_i2s.cpp │ │ │ │ ├── timers_driver.cpp │ │ │ │ ├── timers_driver.h │ │ │ │ ├── usb_driver.cpp │ │ │ │ └── watchdog_driver.cpp │ │ ├── horus │ │ │ ├── CMakeLists.txt │ │ │ ├── backlight_driver.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── bootloader │ │ │ │ └── boot_menu.cpp │ │ │ ├── cst8xx_driver.cpp │ │ │ ├── cst8xx_driver.h │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── imu_lsm6ds33.cpp │ │ │ ├── imu_lsm6ds33.h │ │ │ ├── lcd_driver.cpp │ │ │ ├── lcd_st7796s_driver.cpp │ │ │ ├── lcd_st7796s_driver.h │ │ │ ├── led_driver.cpp │ │ │ ├── libopenui_config.h │ │ │ ├── old_imu_driver.cpp │ │ │ ├── sdram_driver.c │ │ │ ├── tp_gt911.cpp │ │ │ ├── tp_gt911.h │ │ │ ├── usb_charger_driver.cpp │ │ │ ├── usb_descriptor.h │ │ │ ├── videoswitch_driver.cpp │ │ │ └── videoswitch_driver.h │ │ ├── muffin │ │ │ ├── CMakeLists.txt │ │ │ ├── ads1015_adc.cpp │ │ │ ├── ads1x15.h │ │ │ ├── backlight_driver.cpp │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── esp32_build │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clang-README.txt │ │ │ │ ├── dependencies.lock │ │ │ │ ├── lv_conf_edgetx.h │ │ │ │ ├── main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── espidf_edgetx_main.cpp │ │ │ │ ├── partitions.csv │ │ │ │ ├── requirement.txt │ │ │ │ ├── sdkconfig │ │ │ │ └── sdkconfig.ci │ │ │ ├── flyskyHallStick_driver.cpp │ │ │ ├── flyskyHallStick_driver.h │ │ │ ├── hal.h │ │ │ ├── lcd_lvgl_esp.cpp │ │ │ ├── libopenui_config.h │ │ │ ├── mcp23017_io_driver.cpp │ │ │ ├── mcp23xxx.h │ │ │ ├── mcp_pins.h │ │ │ ├── module_drivers.cpp │ │ │ ├── pwr_driver.cpp │ │ │ ├── rtc_driver.cpp │ │ │ ├── sh1107_top_lcd.cpp │ │ │ ├── switch_driver.cpp │ │ │ └── trainer_driver.cpp │ │ ├── nv14 │ │ │ ├── CMakeLists.txt │ │ │ ├── backlight_driver.cpp │ │ │ ├── battery_driver.cpp │ │ │ ├── battery_driver.h │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── bootloader │ │ │ │ └── boot_menu.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── lcd_driver.h │ │ │ ├── libopenui_config.h │ │ │ ├── sdram_driver.c │ │ │ ├── touch_driver.cpp │ │ │ ├── touch_driver.h │ │ │ └── usb_descriptor.h │ │ ├── pl18 │ │ │ ├── CMakeLists.txt │ │ │ ├── backlight_driver.cpp │ │ │ ├── battery_driver.cpp │ │ │ ├── battery_driver.h │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── bootloader │ │ │ │ └── boot_menu.cpp │ │ │ ├── extmodule_helper.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── key_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── lcd_driver.h │ │ │ ├── led_driver.cpp │ │ │ ├── libopenui_config.h │ │ │ ├── sdram_driver.c │ │ │ ├── touch_driver.cpp │ │ │ ├── touch_driver.h │ │ │ ├── tp_cst340.cpp │ │ │ ├── tp_cst340.h │ │ │ └── usb_descriptor.h │ │ ├── simu │ │ │ ├── CMakeLists.txt │ │ │ ├── abnormal_reboot.cpp │ │ │ ├── adc_driver.cpp │ │ │ ├── backlight_driver.cpp │ │ │ ├── bt_driver.cpp │ │ │ ├── gyro_driver.cpp │ │ │ ├── led_driver.cpp │ │ │ ├── module_drivers.cpp │ │ │ ├── opentxsimulator.cpp │ │ │ ├── opentxsimulator.h │ │ │ ├── simpgmspace.cpp │ │ │ ├── simpgmspace.h │ │ │ ├── simudisk.cpp │ │ │ ├── simueeprom.cpp │ │ │ ├── simufatfs.cpp │ │ │ ├── simulcd.cpp │ │ │ ├── simulcd.h │ │ │ ├── switch_driver.cpp │ │ │ └── timers_driver.cpp │ │ ├── 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 │ │ │ ├── dwt.h │ │ │ ├── eeprom_driver.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── lcd_driver_aspi.cpp │ │ │ ├── lcd_driver_spi.cpp │ │ │ ├── led_driver.cpp │ │ │ ├── stm32f4_1m_flash.ld │ │ │ ├── top_lcd_driver.cpp │ │ │ ├── usb_charger_driver.cpp │ │ │ ├── usb_descriptor.h │ │ │ └── volume_i2c.cpp │ ├── tasks.cpp │ ├── tasks.h │ ├── tasks │ │ ├── mixer_task.cpp │ │ └── mixer_task.h │ ├── telemetry │ │ ├── crossfire.cpp │ │ ├── crossfire.h │ │ ├── flysky_ibus.cpp │ │ ├── flysky_ibus.h │ │ ├── flysky_nv14.cpp │ │ ├── flysky_nv14.h │ │ ├── frsky.cpp │ │ ├── frsky.h │ │ ├── frsky_d.cpp │ │ ├── frsky_defs.h │ │ ├── frsky_pxx2.cpp │ │ ├── frsky_sport.cpp │ │ ├── ghost.cpp │ │ ├── ghost.h │ │ ├── ghost_menu.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 │ │ ├── CMakeLists.txt │ │ ├── colorlcd.cpp │ │ ├── conversions.cpp │ │ ├── crossfire.cpp │ │ ├── eeprom.cpp │ │ ├── eeprom_23_x7.bin │ │ ├── eeprom_23_x9d+.bin │ │ ├── eeprom_23_x9d+2.bin │ │ ├── eeprom_23_xlite.bin │ │ ├── frsky.cpp │ │ ├── functions.cpp │ │ ├── gtests.cpp │ │ ├── gtests.h │ │ ├── images │ │ │ ├── bw │ │ │ │ ├── 1b_39x32.bmp │ │ │ │ ├── 1b_6x32.bmp │ │ │ │ ├── 4b_20x20.bmp │ │ │ │ ├── 4b_31x31.bmp │ │ │ │ ├── 4b_7x32.bmp │ │ │ │ ├── MidsizeNextPosPrec1_128x64.png │ │ │ │ ├── MidsizeNextPosPrec1_212x64.png │ │ │ │ ├── SmlsizeDecimalPoint_128x64.png │ │ │ │ ├── SmlsizeDecimalPoint_212x64.png │ │ │ │ ├── big_numbers_128x64.png │ │ │ │ ├── big_numbers_212x64.png │ │ │ │ ├── bmpwrapping_212x64.png │ │ │ │ ├── dblsize_128x64.png │ │ │ │ ├── dblsize_212x64.png │ │ │ │ ├── dblsize_bottom_right_128x64.png │ │ │ │ ├── dblsize_bottom_right_212x64.png │ │ │ │ ├── drawswitch_212x64.png │ │ │ │ ├── invers_0_0_128x64.png │ │ │ │ ├── invers_0_0_212x64.png │ │ │ │ ├── invers_0_1_128x64.png │ │ │ │ ├── invers_0_1_212x64.png │ │ │ │ ├── lcdDrawBitmapLoadAndDisplay_212x64.png │ │ │ │ ├── lcdDrawHorizontalLine_212x64.png │ │ │ │ ├── lcdDrawLine_128x64.png │ │ │ │ ├── lcdDrawLine_212x64.png │ │ │ │ ├── lcdDrawVerticalLine_212x64.png │ │ │ │ ├── line_wrap_128x64.png │ │ │ │ ├── line_wrap_212x64.png │ │ │ │ ├── midsize_128x64.png │ │ │ │ ├── midsize_212x64.png │ │ │ │ ├── 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 │ │ │ │ ├── smlsize_128x64.png │ │ │ │ ├── smlsize_212x64.png │ │ │ │ ├── smlsize_drawstringwithindex_128x64.png │ │ │ │ ├── smlsize_drawstringwithindex_212x64.png │ │ │ │ ├── stdsize_128x64.png │ │ │ │ ├── stdsize_212x64.png │ │ │ │ ├── unsigned_128x64.png │ │ │ │ ├── unsigned_212x64.png │ │ │ │ ├── vline_128x64.png │ │ │ │ ├── vline_212x64.png │ │ │ │ ├── vline_lt0_128x64.png │ │ │ │ └── vline_lt0_212x64.png │ │ │ └── color │ │ │ │ ├── bitmap_320x480.png │ │ │ │ ├── bitmap_480x272.png │ │ │ │ ├── bitmap_480x320.png │ │ │ │ ├── clipping_320x480.png │ │ │ │ ├── clipping_480x272.png │ │ │ │ ├── clipping_480x320.png │ │ │ │ ├── darkmode_CN_480x272.png │ │ │ │ ├── darkmode_EN_320x480.png │ │ │ │ ├── darkmode_EN_480x272.png │ │ │ │ ├── edgetx.png │ │ │ │ ├── fonts_CN_480x272.png │ │ │ │ ├── fonts_EN_480x272.png │ │ │ │ ├── lines_320x480.png │ │ │ │ ├── lines_480x272.png │ │ │ │ ├── lines_480x320.png │ │ │ │ ├── mask_menu_radio.png │ │ │ │ ├── masks_320x480.png │ │ │ │ ├── masks_480x272.png │ │ │ │ ├── masks_480x320.png │ │ │ │ ├── primitives_CN_480x272.png │ │ │ │ ├── primitives_EN_320x480.png │ │ │ │ ├── primitives_EN_480x272.png │ │ │ │ ├── primitives_EN_480x320.png │ │ │ │ ├── transparency_CN_480x272.png │ │ │ │ ├── transparency_EN_320x480.png │ │ │ │ ├── transparency_EN_480x272.png │ │ │ │ ├── transparency_EN_480x320.png │ │ │ │ ├── vline_320x480.png │ │ │ │ ├── vline_480x272.png │ │ │ │ └── vline_480x320.png │ │ ├── lcd.cpp │ │ ├── lcd_480x272.cpp │ │ ├── location.h.in │ │ ├── lua.cpp │ │ ├── mixer.cpp │ │ ├── model.cpp │ │ ├── model_23_x10.otx │ │ ├── model_23_x12s.otx │ │ ├── model_25_tx16s.otx │ │ ├── model_audio.cpp │ │ ├── module_ports.cpp │ │ ├── sources.cpp │ │ ├── stb_image_write.h │ │ ├── switches.cpp │ │ ├── timers.cpp │ │ └── yaml.cpp │ ├── thirdparty │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ ├── STM32F2xx │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f205xx.h │ │ │ │ │ │ ├── stm32f207xx.h │ │ │ │ │ │ ├── stm32f215xx.h │ │ │ │ │ │ ├── stm32f217xx.h │ │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ │ └── system_stm32f2xx.h │ │ │ │ │ ├── License.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ ├── startup_stm32f205xx.s │ │ │ │ │ │ │ ├── startup_stm32f207xx.s │ │ │ │ │ │ │ ├── startup_stm32f215xx.s │ │ │ │ │ │ │ └── startup_stm32f217xx.s │ │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ │ ├── startup_stm32f205xx.s │ │ │ │ │ │ │ ├── startup_stm32f207xx.s │ │ │ │ │ │ │ ├── startup_stm32f215xx.s │ │ │ │ │ │ │ └── startup_stm32f217xx.s │ │ │ │ │ │ │ ├── iar │ │ │ │ │ │ │ ├── linker │ │ │ │ │ │ │ │ ├── stm32f205xx_flash.icf │ │ │ │ │ │ │ │ ├── stm32f205xx_sram.icf │ │ │ │ │ │ │ │ ├── stm32f207xx_flash.icf │ │ │ │ │ │ │ │ ├── stm32f207xx_sram.icf │ │ │ │ │ │ │ │ ├── stm32f215xx_flash.icf │ │ │ │ │ │ │ │ ├── stm32f215xx_sram.icf │ │ │ │ │ │ │ │ ├── stm32f217xx_flash.icf │ │ │ │ │ │ │ │ └── stm32f217xx_sram.icf │ │ │ │ │ │ │ ├── startup_stm32f205xx.s │ │ │ │ │ │ │ ├── startup_stm32f207xx.s │ │ │ │ │ │ │ ├── startup_stm32f215xx.s │ │ │ │ │ │ │ └── startup_stm32f217xx.s │ │ │ │ │ │ │ └── system_stm32f2xx.c │ │ │ │ │ └── _htmresc │ │ │ │ │ │ ├── mini-st.css │ │ │ │ │ │ └── st_logo.png │ │ │ │ │ └── STM32F4xx │ │ │ │ │ ├── Include │ │ │ │ │ ├── stm32f401xc.h │ │ │ │ │ ├── stm32f401xe.h │ │ │ │ │ ├── stm32f405xx.h │ │ │ │ │ ├── stm32f407xx.h │ │ │ │ │ ├── stm32f410cx.h │ │ │ │ │ ├── stm32f410rx.h │ │ │ │ │ ├── stm32f410tx.h │ │ │ │ │ ├── stm32f411xe.h │ │ │ │ │ ├── stm32f412cx.h │ │ │ │ │ ├── stm32f412rx.h │ │ │ │ │ ├── stm32f412vx.h │ │ │ │ │ ├── stm32f412zx.h │ │ │ │ │ ├── stm32f413xx.h │ │ │ │ │ ├── stm32f415xx.h │ │ │ │ │ ├── stm32f417xx.h │ │ │ │ │ ├── stm32f423xx.h │ │ │ │ │ ├── stm32f427xx.h │ │ │ │ │ ├── stm32f429xx.h │ │ │ │ │ ├── stm32f437xx.h │ │ │ │ │ ├── stm32f439xx.h │ │ │ │ │ ├── stm32f446xx.h │ │ │ │ │ ├── stm32f469xx.h │ │ │ │ │ ├── stm32f479xx.h │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ ├── License.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Release_Notes.html │ │ │ │ │ ├── Source │ │ │ │ │ └── Templates │ │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ │ │ ├── iar │ │ │ │ │ │ ├── linker │ │ │ │ │ │ │ ├── stm32f401xc_flash.icf │ │ │ │ │ │ │ ├── stm32f401xc_sram.icf │ │ │ │ │ │ │ ├── stm32f401xe_flash.icf │ │ │ │ │ │ │ ├── stm32f401xe_sram.icf │ │ │ │ │ │ │ ├── stm32f405xx_flash.icf │ │ │ │ │ │ │ ├── stm32f405xx_sram.icf │ │ │ │ │ │ │ ├── stm32f407xx_flash.icf │ │ │ │ │ │ │ ├── stm32f407xx_sram.icf │ │ │ │ │ │ │ ├── stm32f410cx_flash.icf │ │ │ │ │ │ │ ├── stm32f410cx_sram.icf │ │ │ │ │ │ │ ├── stm32f410rx_flash.icf │ │ │ │ │ │ │ ├── stm32f410rx_sram.icf │ │ │ │ │ │ │ ├── stm32f410tx_flash.icf │ │ │ │ │ │ │ ├── stm32f410tx_sram.icf │ │ │ │ │ │ │ ├── stm32f411xe_flash.icf │ │ │ │ │ │ │ ├── stm32f411xe_sram.icf │ │ │ │ │ │ │ ├── stm32f412cx_flash.icf │ │ │ │ │ │ │ ├── stm32f412cx_sram.icf │ │ │ │ │ │ │ ├── stm32f412rx_flash.icf │ │ │ │ │ │ │ ├── stm32f412rx_sram.icf │ │ │ │ │ │ │ ├── stm32f412vx_flash.icf │ │ │ │ │ │ │ ├── stm32f412vx_sram.icf │ │ │ │ │ │ │ ├── stm32f412zx_flash.icf │ │ │ │ │ │ │ ├── stm32f412zx_sram.icf │ │ │ │ │ │ │ ├── stm32f413xx_flash.icf │ │ │ │ │ │ │ ├── stm32f413xx_sram.icf │ │ │ │ │ │ │ ├── stm32f415xx_flash.icf │ │ │ │ │ │ │ ├── stm32f415xx_sram.icf │ │ │ │ │ │ │ ├── stm32f417xx_flash.icf │ │ │ │ │ │ │ ├── stm32f417xx_sram.icf │ │ │ │ │ │ │ ├── stm32f423xx_flash.icf │ │ │ │ │ │ │ ├── stm32f423xx_sram.icf │ │ │ │ │ │ │ ├── stm32f427xx_flash.icf │ │ │ │ │ │ │ ├── stm32f427xx_sram.icf │ │ │ │ │ │ │ ├── stm32f429xx_flash.icf │ │ │ │ │ │ │ ├── stm32f429xx_sram.icf │ │ │ │ │ │ │ ├── stm32f437xx_flash.icf │ │ │ │ │ │ │ ├── stm32f437xx_sram.icf │ │ │ │ │ │ │ ├── stm32f439xx_flash.icf │ │ │ │ │ │ │ ├── stm32f439xx_sram.icf │ │ │ │ │ │ │ ├── stm32f446xx_flash.icf │ │ │ │ │ │ │ ├── stm32f446xx_sram.icf │ │ │ │ │ │ │ ├── stm32f469xx_flash.icf │ │ │ │ │ │ │ ├── stm32f469xx_sram.icf │ │ │ │ │ │ │ ├── stm32f479xx_flash.icf │ │ │ │ │ │ │ └── stm32f479xx_sram.icf │ │ │ │ │ │ ├── startup_stm32f401xc.s │ │ │ │ │ │ ├── startup_stm32f401xe.s │ │ │ │ │ │ ├── startup_stm32f405xx.s │ │ │ │ │ │ ├── startup_stm32f407xx.s │ │ │ │ │ │ ├── startup_stm32f410cx.s │ │ │ │ │ │ ├── startup_stm32f410rx.s │ │ │ │ │ │ ├── startup_stm32f410tx.s │ │ │ │ │ │ ├── startup_stm32f411xe.s │ │ │ │ │ │ ├── startup_stm32f412cx.s │ │ │ │ │ │ ├── startup_stm32f412rx.s │ │ │ │ │ │ ├── startup_stm32f412vx.s │ │ │ │ │ │ ├── startup_stm32f412zx.s │ │ │ │ │ │ ├── startup_stm32f413xx.s │ │ │ │ │ │ ├── startup_stm32f415xx.s │ │ │ │ │ │ ├── startup_stm32f417xx.s │ │ │ │ │ │ ├── startup_stm32f423xx.s │ │ │ │ │ │ ├── startup_stm32f427xx.s │ │ │ │ │ │ ├── startup_stm32f429xx.s │ │ │ │ │ │ ├── startup_stm32f437xx.s │ │ │ │ │ │ ├── startup_stm32f439xx.s │ │ │ │ │ │ ├── startup_stm32f446xx.s │ │ │ │ │ │ ├── startup_stm32f469xx.s │ │ │ │ │ │ └── startup_stm32f479xx.s │ │ │ │ │ │ └── system_stm32f4xx.c │ │ │ │ │ └── _htmresc │ │ │ │ │ ├── mini-st.css │ │ │ │ │ └── st_logo.png │ │ │ └── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ ├── FatFs │ │ │ ├── 00history.txt │ │ │ ├── 00readme.txt │ │ │ ├── LICENSE.txt │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── ffunicode.c │ │ │ └── integer.h │ │ ├── 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 │ │ │ │ ├── lro_defs.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_HAL_Driver │ │ │ ├── Inc │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f2xx_hal_can_legacy.h │ │ │ │ ├── stm32_assert_template.h │ │ │ │ ├── stm32f2xx_hal.h │ │ │ │ ├── stm32f2xx_hal_adc.h │ │ │ │ ├── stm32f2xx_hal_adc_ex.h │ │ │ │ ├── stm32f2xx_hal_can.h │ │ │ │ ├── stm32f2xx_hal_conf_template.h │ │ │ │ ├── stm32f2xx_hal_cortex.h │ │ │ │ ├── stm32f2xx_hal_crc.h │ │ │ │ ├── stm32f2xx_hal_cryp.h │ │ │ │ ├── stm32f2xx_hal_dac.h │ │ │ │ ├── stm32f2xx_hal_dac_ex.h │ │ │ │ ├── stm32f2xx_hal_dcmi.h │ │ │ │ ├── stm32f2xx_hal_dcmi_ex.h │ │ │ │ ├── stm32f2xx_hal_def.h │ │ │ │ ├── stm32f2xx_hal_dma.h │ │ │ │ ├── stm32f2xx_hal_dma_ex.h │ │ │ │ ├── stm32f2xx_hal_eth.h │ │ │ │ ├── stm32f2xx_hal_exti.h │ │ │ │ ├── stm32f2xx_hal_flash.h │ │ │ │ ├── stm32f2xx_hal_flash_ex.h │ │ │ │ ├── stm32f2xx_hal_gpio.h │ │ │ │ ├── stm32f2xx_hal_gpio_ex.h │ │ │ │ ├── stm32f2xx_hal_hash.h │ │ │ │ ├── stm32f2xx_hal_hcd.h │ │ │ │ ├── stm32f2xx_hal_i2c.h │ │ │ │ ├── stm32f2xx_hal_i2s.h │ │ │ │ ├── stm32f2xx_hal_irda.h │ │ │ │ ├── stm32f2xx_hal_iwdg.h │ │ │ │ ├── stm32f2xx_hal_mmc.h │ │ │ │ ├── stm32f2xx_hal_nand.h │ │ │ │ ├── stm32f2xx_hal_nor.h │ │ │ │ ├── stm32f2xx_hal_pccard.h │ │ │ │ ├── stm32f2xx_hal_pcd.h │ │ │ │ ├── stm32f2xx_hal_pcd_ex.h │ │ │ │ ├── stm32f2xx_hal_pwr.h │ │ │ │ ├── stm32f2xx_hal_pwr_ex.h │ │ │ │ ├── stm32f2xx_hal_rcc.h │ │ │ │ ├── stm32f2xx_hal_rcc_ex.h │ │ │ │ ├── stm32f2xx_hal_rng.h │ │ │ │ ├── stm32f2xx_hal_rtc.h │ │ │ │ ├── stm32f2xx_hal_rtc_ex.h │ │ │ │ ├── stm32f2xx_hal_sd.h │ │ │ │ ├── stm32f2xx_hal_smartcard.h │ │ │ │ ├── stm32f2xx_hal_spi.h │ │ │ │ ├── stm32f2xx_hal_sram.h │ │ │ │ ├── stm32f2xx_hal_tim.h │ │ │ │ ├── stm32f2xx_hal_tim_ex.h │ │ │ │ ├── stm32f2xx_hal_uart.h │ │ │ │ ├── stm32f2xx_hal_usart.h │ │ │ │ ├── stm32f2xx_hal_wwdg.h │ │ │ │ ├── stm32f2xx_ll_adc.h │ │ │ │ ├── stm32f2xx_ll_bus.h │ │ │ │ ├── stm32f2xx_ll_cortex.h │ │ │ │ ├── stm32f2xx_ll_crc.h │ │ │ │ ├── stm32f2xx_ll_dac.h │ │ │ │ ├── stm32f2xx_ll_dma.h │ │ │ │ ├── stm32f2xx_ll_exti.h │ │ │ │ ├── stm32f2xx_ll_fsmc.h │ │ │ │ ├── stm32f2xx_ll_gpio.h │ │ │ │ ├── stm32f2xx_ll_i2c.h │ │ │ │ ├── stm32f2xx_ll_iwdg.h │ │ │ │ ├── stm32f2xx_ll_pwr.h │ │ │ │ ├── stm32f2xx_ll_rcc.h │ │ │ │ ├── stm32f2xx_ll_rng.h │ │ │ │ ├── stm32f2xx_ll_rtc.h │ │ │ │ ├── stm32f2xx_ll_sdmmc.h │ │ │ │ ├── stm32f2xx_ll_spi.h │ │ │ │ ├── stm32f2xx_ll_system.h │ │ │ │ ├── stm32f2xx_ll_tim.h │ │ │ │ ├── stm32f2xx_ll_usart.h │ │ │ │ ├── stm32f2xx_ll_usb.h │ │ │ │ ├── stm32f2xx_ll_utils.h │ │ │ │ └── stm32f2xx_ll_wwdg.h │ │ │ ├── License.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── Src │ │ │ │ ├── Legacy │ │ │ │ │ └── stm32f2xx_hal_can.c │ │ │ │ ├── stm32f2xx_hal.c │ │ │ │ ├── stm32f2xx_hal_adc.c │ │ │ │ ├── stm32f2xx_hal_adc_ex.c │ │ │ │ ├── stm32f2xx_hal_can.c │ │ │ │ ├── stm32f2xx_hal_cortex.c │ │ │ │ ├── stm32f2xx_hal_crc.c │ │ │ │ ├── stm32f2xx_hal_cryp.c │ │ │ │ ├── stm32f2xx_hal_dac.c │ │ │ │ ├── stm32f2xx_hal_dac_ex.c │ │ │ │ ├── stm32f2xx_hal_dcmi.c │ │ │ │ ├── stm32f2xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f2xx_hal_dma.c │ │ │ │ ├── stm32f2xx_hal_dma_ex.c │ │ │ │ ├── stm32f2xx_hal_eth.c │ │ │ │ ├── stm32f2xx_hal_exti.c │ │ │ │ ├── stm32f2xx_hal_flash.c │ │ │ │ ├── stm32f2xx_hal_flash_ex.c │ │ │ │ ├── stm32f2xx_hal_gpio.c │ │ │ │ ├── stm32f2xx_hal_hash.c │ │ │ │ ├── stm32f2xx_hal_hcd.c │ │ │ │ ├── stm32f2xx_hal_i2c.c │ │ │ │ ├── stm32f2xx_hal_i2s.c │ │ │ │ ├── stm32f2xx_hal_irda.c │ │ │ │ ├── stm32f2xx_hal_iwdg.c │ │ │ │ ├── stm32f2xx_hal_mmc.c │ │ │ │ ├── stm32f2xx_hal_msp_template.c │ │ │ │ ├── stm32f2xx_hal_nand.c │ │ │ │ ├── stm32f2xx_hal_nor.c │ │ │ │ ├── stm32f2xx_hal_pccard.c │ │ │ │ ├── stm32f2xx_hal_pcd.c │ │ │ │ ├── stm32f2xx_hal_pcd_ex.c │ │ │ │ ├── stm32f2xx_hal_pwr.c │ │ │ │ ├── stm32f2xx_hal_pwr_ex.c │ │ │ │ ├── stm32f2xx_hal_rcc.c │ │ │ │ ├── stm32f2xx_hal_rcc_ex.c │ │ │ │ ├── stm32f2xx_hal_rng.c │ │ │ │ ├── stm32f2xx_hal_rtc.c │ │ │ │ ├── stm32f2xx_hal_rtc_ex.c │ │ │ │ ├── stm32f2xx_hal_sd.c │ │ │ │ ├── stm32f2xx_hal_smartcard.c │ │ │ │ ├── stm32f2xx_hal_spi.c │ │ │ │ ├── stm32f2xx_hal_sram.c │ │ │ │ ├── stm32f2xx_hal_tim.c │ │ │ │ ├── stm32f2xx_hal_tim_ex.c │ │ │ │ ├── stm32f2xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f2xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f2xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f2xx_hal_uart.c │ │ │ │ ├── stm32f2xx_hal_usart.c │ │ │ │ ├── stm32f2xx_hal_wwdg.c │ │ │ │ ├── stm32f2xx_ll_adc.c │ │ │ │ ├── stm32f2xx_ll_crc.c │ │ │ │ ├── stm32f2xx_ll_dac.c │ │ │ │ ├── stm32f2xx_ll_dma.c │ │ │ │ ├── stm32f2xx_ll_exti.c │ │ │ │ ├── stm32f2xx_ll_fsmc.c │ │ │ │ ├── stm32f2xx_ll_gpio.c │ │ │ │ ├── stm32f2xx_ll_i2c.c │ │ │ │ ├── stm32f2xx_ll_pwr.c │ │ │ │ ├── stm32f2xx_ll_rcc.c │ │ │ │ ├── stm32f2xx_ll_rng.c │ │ │ │ ├── stm32f2xx_ll_rtc.c │ │ │ │ ├── stm32f2xx_ll_sdmmc.c │ │ │ │ ├── stm32f2xx_ll_spi.c │ │ │ │ ├── stm32f2xx_ll_tim.c │ │ │ │ ├── stm32f2xx_ll_usart.c │ │ │ │ ├── stm32f2xx_ll_usb.c │ │ │ │ └── stm32f2xx_ll_utils.c │ │ │ └── _htmresc │ │ │ │ ├── mini-st.css │ │ │ │ └── st_logo.png │ │ ├── STM32F2xx_StdPeriph_Lib_V1.1.0 │ │ │ └── Libraries │ │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F2xx │ │ │ │ │ │ └── Include │ │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ │ └── system_stm32f2xx.h │ │ │ │ └── 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.8.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_cm7.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_cmSimd.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 │ │ ├── STM32F4xx_HAL_Driver │ │ │ ├── Inc │ │ │ │ ├── Legacy │ │ │ │ │ ├── stm32_hal_legacy.h │ │ │ │ │ └── stm32f4xx_hal_can_legacy.h │ │ │ │ ├── stm32_assert_template.h │ │ │ │ ├── stm32f4xx_hal.h │ │ │ │ ├── stm32f4xx_hal_adc.h │ │ │ │ ├── stm32f4xx_hal_adc_ex.h │ │ │ │ ├── stm32f4xx_hal_can.h │ │ │ │ ├── stm32f4xx_hal_cec.h │ │ │ │ ├── stm32f4xx_hal_conf_template.h │ │ │ │ ├── stm32f4xx_hal_cortex.h │ │ │ │ ├── stm32f4xx_hal_crc.h │ │ │ │ ├── stm32f4xx_hal_cryp.h │ │ │ │ ├── stm32f4xx_hal_cryp_ex.h │ │ │ │ ├── stm32f4xx_hal_dac.h │ │ │ │ ├── stm32f4xx_hal_dac_ex.h │ │ │ │ ├── stm32f4xx_hal_dcmi.h │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.h │ │ │ │ ├── stm32f4xx_hal_def.h │ │ │ │ ├── stm32f4xx_hal_dfsdm.h │ │ │ │ ├── stm32f4xx_hal_dma.h │ │ │ │ ├── stm32f4xx_hal_dma2d.h │ │ │ │ ├── stm32f4xx_hal_dma_ex.h │ │ │ │ ├── stm32f4xx_hal_dsi.h │ │ │ │ ├── stm32f4xx_hal_eth.h │ │ │ │ ├── stm32f4xx_hal_exti.h │ │ │ │ ├── stm32f4xx_hal_flash.h │ │ │ │ ├── stm32f4xx_hal_flash_ex.h │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.h │ │ │ │ ├── stm32f4xx_hal_fmpi2c.h │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.h │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.h │ │ │ │ ├── stm32f4xx_hal_fmpsmbus_ex.h │ │ │ │ ├── stm32f4xx_hal_gpio.h │ │ │ │ ├── stm32f4xx_hal_gpio_ex.h │ │ │ │ ├── stm32f4xx_hal_hash.h │ │ │ │ ├── stm32f4xx_hal_hash_ex.h │ │ │ │ ├── stm32f4xx_hal_hcd.h │ │ │ │ ├── stm32f4xx_hal_i2c.h │ │ │ │ ├── stm32f4xx_hal_i2c_ex.h │ │ │ │ ├── stm32f4xx_hal_i2s.h │ │ │ │ ├── stm32f4xx_hal_i2s_ex.h │ │ │ │ ├── stm32f4xx_hal_irda.h │ │ │ │ ├── stm32f4xx_hal_iwdg.h │ │ │ │ ├── stm32f4xx_hal_lptim.h │ │ │ │ ├── stm32f4xx_hal_ltdc.h │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.h │ │ │ │ ├── stm32f4xx_hal_mmc.h │ │ │ │ ├── stm32f4xx_hal_nand.h │ │ │ │ ├── stm32f4xx_hal_nor.h │ │ │ │ ├── stm32f4xx_hal_pccard.h │ │ │ │ ├── stm32f4xx_hal_pcd.h │ │ │ │ ├── stm32f4xx_hal_pcd_ex.h │ │ │ │ ├── stm32f4xx_hal_pwr.h │ │ │ │ ├── stm32f4xx_hal_pwr_ex.h │ │ │ │ ├── stm32f4xx_hal_qspi.h │ │ │ │ ├── stm32f4xx_hal_rcc.h │ │ │ │ ├── stm32f4xx_hal_rcc_ex.h │ │ │ │ ├── stm32f4xx_hal_rng.h │ │ │ │ ├── stm32f4xx_hal_rtc.h │ │ │ │ ├── stm32f4xx_hal_rtc_ex.h │ │ │ │ ├── stm32f4xx_hal_sai.h │ │ │ │ ├── stm32f4xx_hal_sai_ex.h │ │ │ │ ├── stm32f4xx_hal_sd.h │ │ │ │ ├── stm32f4xx_hal_sdram.h │ │ │ │ ├── stm32f4xx_hal_smartcard.h │ │ │ │ ├── stm32f4xx_hal_smbus.h │ │ │ │ ├── stm32f4xx_hal_spdifrx.h │ │ │ │ ├── stm32f4xx_hal_spi.h │ │ │ │ ├── stm32f4xx_hal_sram.h │ │ │ │ ├── stm32f4xx_hal_tim.h │ │ │ │ ├── stm32f4xx_hal_tim_ex.h │ │ │ │ ├── stm32f4xx_hal_uart.h │ │ │ │ ├── stm32f4xx_hal_usart.h │ │ │ │ ├── stm32f4xx_hal_wwdg.h │ │ │ │ ├── stm32f4xx_ll_adc.h │ │ │ │ ├── stm32f4xx_ll_bus.h │ │ │ │ ├── stm32f4xx_ll_cortex.h │ │ │ │ ├── stm32f4xx_ll_crc.h │ │ │ │ ├── stm32f4xx_ll_dac.h │ │ │ │ ├── stm32f4xx_ll_dma.h │ │ │ │ ├── stm32f4xx_ll_dma2d.h │ │ │ │ ├── stm32f4xx_ll_exti.h │ │ │ │ ├── stm32f4xx_ll_fmc.h │ │ │ │ ├── stm32f4xx_ll_fmpi2c.h │ │ │ │ ├── stm32f4xx_ll_fsmc.h │ │ │ │ ├── stm32f4xx_ll_gpio.h │ │ │ │ ├── stm32f4xx_ll_i2c.h │ │ │ │ ├── stm32f4xx_ll_iwdg.h │ │ │ │ ├── stm32f4xx_ll_lptim.h │ │ │ │ ├── stm32f4xx_ll_pwr.h │ │ │ │ ├── stm32f4xx_ll_rcc.h │ │ │ │ ├── stm32f4xx_ll_rng.h │ │ │ │ ├── stm32f4xx_ll_rtc.h │ │ │ │ ├── stm32f4xx_ll_sdmmc.h │ │ │ │ ├── stm32f4xx_ll_spi.h │ │ │ │ ├── stm32f4xx_ll_system.h │ │ │ │ ├── stm32f4xx_ll_tim.h │ │ │ │ ├── stm32f4xx_ll_usart.h │ │ │ │ ├── stm32f4xx_ll_usb.h │ │ │ │ ├── stm32f4xx_ll_utils.h │ │ │ │ └── stm32f4xx_ll_wwdg.h │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── Release_Notes.html │ │ │ ├── Src │ │ │ │ ├── Legacy │ │ │ │ │ └── stm32f4xx_hal_can.c │ │ │ │ ├── stm32f4xx_hal.c │ │ │ │ ├── stm32f4xx_hal_adc.c │ │ │ │ ├── stm32f4xx_hal_adc_ex.c │ │ │ │ ├── stm32f4xx_hal_can.c │ │ │ │ ├── stm32f4xx_hal_cec.c │ │ │ │ ├── stm32f4xx_hal_cortex.c │ │ │ │ ├── stm32f4xx_hal_crc.c │ │ │ │ ├── stm32f4xx_hal_cryp.c │ │ │ │ ├── stm32f4xx_hal_cryp_ex.c │ │ │ │ ├── stm32f4xx_hal_dac.c │ │ │ │ ├── stm32f4xx_hal_dac_ex.c │ │ │ │ ├── stm32f4xx_hal_dcmi.c │ │ │ │ ├── stm32f4xx_hal_dcmi_ex.c │ │ │ │ ├── stm32f4xx_hal_dfsdm.c │ │ │ │ ├── stm32f4xx_hal_dma.c │ │ │ │ ├── stm32f4xx_hal_dma2d.c │ │ │ │ ├── stm32f4xx_hal_dma_ex.c │ │ │ │ ├── stm32f4xx_hal_dsi.c │ │ │ │ ├── stm32f4xx_hal_eth.c │ │ │ │ ├── stm32f4xx_hal_exti.c │ │ │ │ ├── stm32f4xx_hal_flash.c │ │ │ │ ├── stm32f4xx_hal_flash_ex.c │ │ │ │ ├── stm32f4xx_hal_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c.c │ │ │ │ ├── stm32f4xx_hal_fmpi2c_ex.c │ │ │ │ ├── stm32f4xx_hal_fmpsmbus.c │ │ │ │ ├── stm32f4xx_hal_fmpsmbus_ex.c │ │ │ │ ├── stm32f4xx_hal_gpio.c │ │ │ │ ├── stm32f4xx_hal_hash.c │ │ │ │ ├── stm32f4xx_hal_hash_ex.c │ │ │ │ ├── stm32f4xx_hal_hcd.c │ │ │ │ ├── stm32f4xx_hal_i2c.c │ │ │ │ ├── stm32f4xx_hal_i2c_ex.c │ │ │ │ ├── stm32f4xx_hal_i2s.c │ │ │ │ ├── stm32f4xx_hal_i2s_ex.c │ │ │ │ ├── stm32f4xx_hal_irda.c │ │ │ │ ├── stm32f4xx_hal_iwdg.c │ │ │ │ ├── stm32f4xx_hal_lptim.c │ │ │ │ ├── stm32f4xx_hal_ltdc.c │ │ │ │ ├── stm32f4xx_hal_ltdc_ex.c │ │ │ │ ├── stm32f4xx_hal_mmc.c │ │ │ │ ├── stm32f4xx_hal_msp_template.c │ │ │ │ ├── stm32f4xx_hal_nand.c │ │ │ │ ├── stm32f4xx_hal_nor.c │ │ │ │ ├── stm32f4xx_hal_pccard.c │ │ │ │ ├── stm32f4xx_hal_pcd.c │ │ │ │ ├── stm32f4xx_hal_pcd_ex.c │ │ │ │ ├── stm32f4xx_hal_pwr.c │ │ │ │ ├── stm32f4xx_hal_pwr_ex.c │ │ │ │ ├── stm32f4xx_hal_qspi.c │ │ │ │ ├── stm32f4xx_hal_rcc.c │ │ │ │ ├── stm32f4xx_hal_rcc_ex.c │ │ │ │ ├── stm32f4xx_hal_rng.c │ │ │ │ ├── stm32f4xx_hal_rtc.c │ │ │ │ ├── stm32f4xx_hal_rtc_ex.c │ │ │ │ ├── stm32f4xx_hal_sai.c │ │ │ │ ├── stm32f4xx_hal_sai_ex.c │ │ │ │ ├── stm32f4xx_hal_sd.c │ │ │ │ ├── stm32f4xx_hal_sdram.c │ │ │ │ ├── stm32f4xx_hal_smartcard.c │ │ │ │ ├── stm32f4xx_hal_smbus.c │ │ │ │ ├── stm32f4xx_hal_spdifrx.c │ │ │ │ ├── stm32f4xx_hal_spi.c │ │ │ │ ├── stm32f4xx_hal_sram.c │ │ │ │ ├── stm32f4xx_hal_tim.c │ │ │ │ ├── stm32f4xx_hal_tim_ex.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_alarm_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_rtc_wakeup_template.c │ │ │ │ ├── stm32f4xx_hal_timebase_tim_template.c │ │ │ │ ├── stm32f4xx_hal_uart.c │ │ │ │ ├── stm32f4xx_hal_usart.c │ │ │ │ ├── stm32f4xx_hal_wwdg.c │ │ │ │ ├── stm32f4xx_ll_adc.c │ │ │ │ ├── stm32f4xx_ll_crc.c │ │ │ │ ├── stm32f4xx_ll_dac.c │ │ │ │ ├── stm32f4xx_ll_dma.c │ │ │ │ ├── stm32f4xx_ll_dma2d.c │ │ │ │ ├── stm32f4xx_ll_exti.c │ │ │ │ ├── stm32f4xx_ll_fmc.c │ │ │ │ ├── stm32f4xx_ll_fmpi2c.c │ │ │ │ ├── stm32f4xx_ll_fsmc.c │ │ │ │ ├── stm32f4xx_ll_gpio.c │ │ │ │ ├── stm32f4xx_ll_i2c.c │ │ │ │ ├── stm32f4xx_ll_lptim.c │ │ │ │ ├── stm32f4xx_ll_pwr.c │ │ │ │ ├── stm32f4xx_ll_rcc.c │ │ │ │ ├── stm32f4xx_ll_rng.c │ │ │ │ ├── stm32f4xx_ll_rtc.c │ │ │ │ ├── stm32f4xx_ll_sdmmc.c │ │ │ │ ├── stm32f4xx_ll_spi.c │ │ │ │ ├── stm32f4xx_ll_tim.c │ │ │ │ ├── stm32f4xx_ll_usart.c │ │ │ │ ├── stm32f4xx_ll_usb.c │ │ │ │ └── stm32f4xx_ll_utils.c │ │ │ └── _htmresc │ │ │ │ ├── mini-st.css │ │ │ │ └── st_logo.png │ │ ├── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ │ ├── CDC │ │ │ │ │ ├── Inc │ │ │ │ │ │ ├── usbd_cdc.h │ │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ │ └── Src │ │ │ │ │ │ ├── usbd_cdc.c │ │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ │ ├── CompositeBuilder │ │ │ │ │ ├── Inc │ │ │ │ │ │ └── usbd_composite_builder.h │ │ │ │ │ └── Src │ │ │ │ │ │ └── usbd_composite_builder.c │ │ │ │ ├── CustomHID │ │ │ │ │ ├── Inc │ │ │ │ │ │ ├── usbd_customhid.h │ │ │ │ │ │ └── usbd_customhid_if_template.h │ │ │ │ │ └── Src │ │ │ │ │ │ ├── usbd_customhid.c │ │ │ │ │ │ └── usbd_customhid_if_template.c │ │ │ │ ├── HID │ │ │ │ │ ├── Inc │ │ │ │ │ │ └── usbd_hid.h │ │ │ │ │ └── Src │ │ │ │ │ │ └── usbd_hid.c │ │ │ │ └── MSC │ │ │ │ │ ├── Inc │ │ │ │ │ ├── usbd_msc.h │ │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_scsi.h │ │ │ │ │ └── usbd_msc_storage_template.h │ │ │ │ │ └── Src │ │ │ │ │ ├── usbd_msc.c │ │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ ├── usbd_msc_scsi.c │ │ │ │ │ └── usbd_msc_storage_template.c │ │ │ └── Core │ │ │ │ ├── Inc │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_ctlreq.h │ │ │ │ ├── usbd_def.h │ │ │ │ └── usbd_ioreq.h │ │ │ │ └── Src │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_ctlreq.c │ │ │ │ └── usbd_ioreq.c │ │ └── libopenui │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .idea │ │ │ └── codeStyles │ │ │ │ ├── Project.xml │ │ │ │ └── codeStyleConfig.xml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bitfield.h │ │ │ ├── bitmapbuffer.cpp │ │ │ ├── bitmapbuffer.h │ │ │ ├── button.cpp │ │ │ ├── button.h │ │ │ ├── button_matrix.cpp │ │ │ ├── button_matrix.h │ │ │ ├── choice.cpp │ │ │ ├── choice.h │ │ │ ├── dialog.cpp │ │ │ ├── dialog.h │ │ │ ├── filechoice.cpp │ │ │ ├── filechoice.h │ │ │ ├── flexlayout.h │ │ │ ├── font.h │ │ │ ├── form.cpp │ │ │ ├── form.h │ │ │ ├── keyboard_base.cpp │ │ │ ├── keyboard_base.h │ │ │ ├── keyboard_number.cpp │ │ │ ├── keyboard_number.h │ │ │ ├── keyboard_text.cpp │ │ │ ├── keyboard_text.h │ │ │ ├── layer.cpp │ │ │ ├── layer.h │ │ │ ├── libopenui_defines.h │ │ │ ├── libopenui_file.cpp │ │ │ ├── libopenui_file.h │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── menu.cpp │ │ │ ├── menu.h │ │ │ ├── menutoolbar.cpp │ │ │ ├── menutoolbar.h │ │ │ ├── modal_window.cpp │ │ │ ├── modal_window.h │ │ │ ├── numberedit.cpp │ │ │ ├── numberedit.h │ │ │ ├── progress.cpp │ │ │ ├── progress.h │ │ │ ├── slider.cpp │ │ │ ├── slider.h │ │ │ ├── static.cpp │ │ │ ├── static.h │ │ │ ├── table.cpp │ │ │ ├── table.h │ │ │ ├── textedit.cpp │ │ │ ├── textedit.h │ │ │ ├── toggleswitch.cpp │ │ │ ├── toggleswitch.h │ │ │ ├── widgets │ │ │ │ └── etx_obj_create.h │ │ │ ├── window.cpp │ │ │ └── window.h │ │ │ ├── thirdparty │ │ │ ├── CMakeLists.txt │ │ │ └── lz4 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lz4.c │ │ │ │ ├── lz4.h │ │ │ │ ├── lz4hc.c │ │ │ │ └── lz4hc.h │ │ │ └── tools │ │ │ └── encode-bitmap.py │ ├── timers.cpp │ ├── timers.h │ ├── touch.h │ ├── trainer.cpp │ ├── trainer.h │ ├── translations.cpp │ ├── translations.h │ ├── translations │ │ ├── cn.h │ │ ├── cz.h │ │ ├── da.h │ │ ├── de.h │ │ ├── en.h │ │ ├── es.h │ │ ├── fi.h │ │ ├── fr.h │ │ ├── he.h │ │ ├── it.h │ │ ├── jp.h │ │ ├── nl.h │ │ ├── pl.h │ │ ├── pt.h │ │ ├── ru.h │ │ ├── se.h │ │ ├── translation.py │ │ ├── tts_cn.cpp │ │ ├── tts_cz.cpp │ │ ├── tts_da.cpp │ │ ├── tts_de.cpp │ │ ├── tts_en.cpp │ │ ├── tts_es.cpp │ │ ├── tts_fr.cpp │ │ ├── tts_he.cpp │ │ ├── tts_hu.cpp │ │ ├── tts_it.cpp │ │ ├── tts_jp.cpp │ │ ├── tts_nl.cpp │ │ ├── tts_pl.cpp │ │ ├── tts_pt.cpp │ │ ├── tts_ru.cpp │ │ ├── tts_se.cpp │ │ ├── tts_sk.cpp │ │ ├── tts_ua.cpp │ │ ├── tw.h │ │ ├── ua.h │ │ └── untranslated.h │ ├── usb_joystick.cpp │ ├── usb_joystick.h │ └── vario.cpp └── util │ ├── .gitignore │ ├── addtr.py │ ├── bin2lbm.py │ ├── build-firmware.py │ ├── capitalize.py │ ├── codecs.py │ ├── crossfire-parse.py │ ├── dsm2.py │ ├── dump_ast.py │ ├── dump_ast_yaml.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 │ ├── generate_yaml.py │ ├── hw_defs │ ├── README.md │ ├── ads1015_adc_inputs.jinja │ ├── generate_hw_def.py │ ├── generator.py │ ├── hal_adc.py │ ├── hal_adc_inputs.jinja │ ├── hal_json.py │ ├── hal_keys.jinja │ ├── hal_keys.py │ ├── hal_switches.py │ ├── json_index.py │ ├── legacy_names.py │ ├── lua_inputs.jinja │ ├── lua_keys.jinja │ ├── lua_mixsrc.jinja │ ├── mcp23017_keys.jinja │ ├── mcp23017_switches.jinja │ ├── pot_config.py │ ├── simu_keys.jinja │ ├── simu_switches.jinja │ ├── stm32_adc_inputs.jinja │ ├── stm32_keys.jinja │ ├── stm32_pwm_inputs.jinja │ ├── stm32_switches.jinja │ ├── switch_config.py │ └── yaml_inputs.jinja │ ├── lua │ └── lua_event_test.lua │ ├── lua_trace2plot.py │ ├── maxvolume.cmd │ ├── parse.py │ ├── sinus.py │ ├── sport-parse.py │ ├── taranisicons.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 │ └── yaml_parser.tmpl └── tools ├── .gitignore ├── add-issue-links.py ├── boards.py ├── build-betafpv.py ├── build-companion.sh ├── build-flysky.py ├── build-font-bitmap.py ├── build-frsk.py ├── build-frsky.py ├── build-gh.sh ├── build-iflight.py ├── build-imrc.py ├── build-jumper.py ├── build-opentx.py ├── build-radiomaster.py ├── build-tbs.py ├── charset.py ├── clang-format.sh ├── codeformat.sh ├── commit-tests.sh ├── companion-gen-icons.py ├── copyright-header.txt ├── copyright.py ├── eeprom_upgd_check ├── check.lua ├── create.lua └── readme.txt ├── encode-font.py ├── encode-translation.py ├── extract-map.py ├── generate-hw-defs.sh ├── generate-yaml.sh ├── include-guard.py ├── latency.py ├── list-utf-8-code-points.py ├── msys2_fetch_and_build_all.sh ├── setup_buildenv_msys2_stage1.sh ├── setup_buildenv_msys2_stage2.sh ├── setup_buildenv_ubuntu20.04.sh ├── setup_buildenv_ubuntu22.04.sh └── uncrustify.cfg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.clang-format -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: edgetx 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.github/workflows/auto_close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/auto_close.yml -------------------------------------------------------------------------------- /.github/workflows/linux_cpn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/linux_cpn.yml -------------------------------------------------------------------------------- /.github/workflows/macosx_cpn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/macosx_cpn.yml -------------------------------------------------------------------------------- /.github/workflows/win_cpn-32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/win_cpn-32.yml -------------------------------------------------------------------------------- /.github/workflows/win_cpn-64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.github/workflows/win_cpn-64.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/README.md -------------------------------------------------------------------------------- /README_muffin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/README_muffin.md -------------------------------------------------------------------------------- /cmake.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cmake --target simu "$@" 3 | -------------------------------------------------------------------------------- /cmake/Bitmaps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/Bitmaps.cmake -------------------------------------------------------------------------------- /cmake/FetchGtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FetchGtest.cmake -------------------------------------------------------------------------------- /cmake/FetchMaxLibQt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FetchMaxLibQt.cmake -------------------------------------------------------------------------------- /cmake/FetchMiniz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FetchMiniz.cmake -------------------------------------------------------------------------------- /cmake/FetchYamlCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FetchYamlCpp.cmake -------------------------------------------------------------------------------- /cmake/FindDfuutil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindDfuutil.cmake -------------------------------------------------------------------------------- /cmake/FindFox.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindFox.cmake -------------------------------------------------------------------------------- /cmake/FindLibssl1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindLibssl1.cmake -------------------------------------------------------------------------------- /cmake/FindLibusb1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindLibusb1.cmake -------------------------------------------------------------------------------- /cmake/FindPhonon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindPhonon.cmake -------------------------------------------------------------------------------- /cmake/FindSDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindSDL.cmake -------------------------------------------------------------------------------- /cmake/FindXercesC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindXercesC.cmake -------------------------------------------------------------------------------- /cmake/FindXsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/FindXsd.cmake -------------------------------------------------------------------------------- /cmake/GenericDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/GenericDefinitions.cmake -------------------------------------------------------------------------------- /cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/Macros.cmake -------------------------------------------------------------------------------- /cmake/NativeTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/NativeTargets.cmake -------------------------------------------------------------------------------- /cmake/QtDefs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/QtDefs.cmake -------------------------------------------------------------------------------- /cmake/toolchain/arm-none-eabi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/toolchain/arm-none-eabi.cmake -------------------------------------------------------------------------------- /cmake/toolchain/native.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/cmake/toolchain/native.cmake -------------------------------------------------------------------------------- /companion/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/releasenotes.txt -------------------------------------------------------------------------------- /companion/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/apppreferencesdialog.h -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/apppreferencesdialog.ui -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/burnconfigdialog.cpp -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/burnconfigdialog.h -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/burnconfigdialog.ui -------------------------------------------------------------------------------- /companion/src/companion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/companion.cpp -------------------------------------------------------------------------------- /companion/src/companion.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/companion.desktop.in -------------------------------------------------------------------------------- /companion/src/companion.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/companion.qrc -------------------------------------------------------------------------------- /companion/src/comparedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/comparedialog.cpp -------------------------------------------------------------------------------- /companion/src/comparedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/comparedialog.h -------------------------------------------------------------------------------- /companion/src/comparedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/comparedialog.ui -------------------------------------------------------------------------------- /companion/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/constants.h -------------------------------------------------------------------------------- /companion/src/customdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/customdebug.cpp -------------------------------------------------------------------------------- /companion/src/customdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/customdebug.h -------------------------------------------------------------------------------- /companion/src/customizesplashdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/customizesplashdialog.h -------------------------------------------------------------------------------- /companion/src/firmwares/boardjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/boardjson.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/boardjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/boardjson.h -------------------------------------------------------------------------------- /companion/src/firmwares/boards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/boards.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/boards.h -------------------------------------------------------------------------------- /companion/src/firmwares/curvedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/curvedata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/curvedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/curvedata.h -------------------------------------------------------------------------------- /companion/src/firmwares/datahelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/datahelpers.h -------------------------------------------------------------------------------- /companion/src/firmwares/gvardata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/gvardata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/gvardata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/gvardata.h -------------------------------------------------------------------------------- /companion/src/firmwares/heli_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/heli_data.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/heli_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/heli_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/input_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/input_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/mixdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/mixdata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/mixdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/mixdata.h -------------------------------------------------------------------------------- /companion/src/firmwares/modeldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/modeldata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/modeldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/modeldata.h -------------------------------------------------------------------------------- /companion/src/firmwares/moduledata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/moduledata.h -------------------------------------------------------------------------------- /companion/src/firmwares/output_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/output_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/radiodata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/radiodata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/radiodata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/radiodata.h -------------------------------------------------------------------------------- /companion/src/firmwares/rawsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/rawsource.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/rawsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/rawsource.h -------------------------------------------------------------------------------- /companion/src/firmwares/rawswitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/rawswitch.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/rawswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/rawswitch.h -------------------------------------------------------------------------------- /companion/src/firmwares/sensordata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/sensordata.h -------------------------------------------------------------------------------- /companion/src/firmwares/telem_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/telem_data.h -------------------------------------------------------------------------------- /companion/src/firmwares/timerdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/timerdata.cpp -------------------------------------------------------------------------------- /companion/src/firmwares/timerdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/firmwares/timerdata.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flasheepromdialog.cpp -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flasheepromdialog.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flasheepromdialog.ui -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flashfirmwaredialog.cpp -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flashfirmwaredialog.h -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/flashfirmwaredialog.ui -------------------------------------------------------------------------------- /companion/src/fusesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/fusesdialog.cpp -------------------------------------------------------------------------------- /companion/src/fusesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/fusesdialog.h -------------------------------------------------------------------------------- /companion/src/fusesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/fusesdialog.ui -------------------------------------------------------------------------------- /companion/src/generaledit/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/generaledit/hardware.h -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/generaledit/trainer.cpp -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/generaledit/trainer.h -------------------------------------------------------------------------------- /companion/src/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/helpers.cpp -------------------------------------------------------------------------------- /companion/src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/helpers.h -------------------------------------------------------------------------------- /companion/src/helpers_html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/helpers_html.cpp -------------------------------------------------------------------------------- /companion/src/helpers_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/helpers_html.h -------------------------------------------------------------------------------- /companion/src/htmldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/htmldialog.ui -------------------------------------------------------------------------------- /companion/src/hwdefs.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/hwdefs.qrc.in -------------------------------------------------------------------------------- /companion/src/images/.gitignore: -------------------------------------------------------------------------------- 1 | */*.directory 2 | -------------------------------------------------------------------------------- /companion/src/images/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/customize.png -------------------------------------------------------------------------------- /companion/src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/icon.png -------------------------------------------------------------------------------- /companion/src/images/iconmac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/iconmac.icns -------------------------------------------------------------------------------- /companion/src/images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/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/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/screenshot.png -------------------------------------------------------------------------------- /companion/src/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/splash.png -------------------------------------------------------------------------------- /companion/src/images/splash_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/splash_dmg.png -------------------------------------------------------------------------------- /companion/src/images/taranison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/taranison.png -------------------------------------------------------------------------------- /companion/src/images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/track.png -------------------------------------------------------------------------------- /companion/src/images/track0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/track0.png -------------------------------------------------------------------------------- /companion/src/images/winicons/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/winicons/icon.rc -------------------------------------------------------------------------------- /companion/src/images/wizard/flaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/wizard/flaps.png -------------------------------------------------------------------------------- /companion/src/images/wizard/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/wizard/gyro.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/wizard/tail.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/wizard/tails.png -------------------------------------------------------------------------------- /companion/src/images/wizard/vtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/images/wizard/vtail.png -------------------------------------------------------------------------------- /companion/src/labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/labels.cpp -------------------------------------------------------------------------------- /companion/src/labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/labels.h -------------------------------------------------------------------------------- /companion/src/logsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/logsdialog.cpp -------------------------------------------------------------------------------- /companion/src/logsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/logsdialog.h -------------------------------------------------------------------------------- /companion/src/logsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/logsdialog.ui -------------------------------------------------------------------------------- /companion/src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/macros.h -------------------------------------------------------------------------------- /companion/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/mainwindow.cpp -------------------------------------------------------------------------------- /companion/src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/mainwindow.h -------------------------------------------------------------------------------- /companion/src/mdichild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/mdichild.cpp -------------------------------------------------------------------------------- /companion/src/mdichild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/mdichild.h -------------------------------------------------------------------------------- /companion/src/mdichild.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/mdichild.ui -------------------------------------------------------------------------------- /companion/src/modeledit/channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/channels.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/channels.h -------------------------------------------------------------------------------- /companion/src/modeledit/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/curves.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/curves.h -------------------------------------------------------------------------------- /companion/src/modeledit/edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/edge.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/edge.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/expodialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/expodialog.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/flightmode.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/flightmodes.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/heli.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/heli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/heli.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/heli.ui -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/inputs.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/inputs.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/mixerdialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/mixes.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/mixes.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/modeledit.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/modeledit.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/modeledit.ui -------------------------------------------------------------------------------- /companion/src/modeledit/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/node.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/node.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/setup.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/setup.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/setup.ui -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/telemetry.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/telemetry.h -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modeledit/telemetry.ui -------------------------------------------------------------------------------- /companion/src/modelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modelprinter.cpp -------------------------------------------------------------------------------- /companion/src/modelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modelprinter.h -------------------------------------------------------------------------------- /companion/src/modelslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modelslist.cpp -------------------------------------------------------------------------------- /companion/src/modelslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/modelslist.h -------------------------------------------------------------------------------- /companion/src/multimodelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/multimodelprinter.cpp -------------------------------------------------------------------------------- /companion/src/multimodelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/multimodelprinter.h -------------------------------------------------------------------------------- /companion/src/printdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/printdialog.cpp -------------------------------------------------------------------------------- /companion/src/printdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/printdialog.h -------------------------------------------------------------------------------- /companion/src/printdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/printdialog.ui -------------------------------------------------------------------------------- /companion/src/process_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_copy.cpp -------------------------------------------------------------------------------- /companion/src/process_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_copy.h -------------------------------------------------------------------------------- /companion/src/process_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_flash.cpp -------------------------------------------------------------------------------- /companion/src/process_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_flash.h -------------------------------------------------------------------------------- /companion/src/process_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_sync.cpp -------------------------------------------------------------------------------- /companion/src/process_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/process_sync.h -------------------------------------------------------------------------------- /companion/src/profilechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/profilechooser.cpp -------------------------------------------------------------------------------- /companion/src/profilechooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/profilechooser.h -------------------------------------------------------------------------------- /companion/src/profilechooser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/profilechooser.ui -------------------------------------------------------------------------------- /companion/src/progressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progressdialog.cpp -------------------------------------------------------------------------------- /companion/src/progressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progressdialog.h -------------------------------------------------------------------------------- /companion/src/progressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progressdialog.ui -------------------------------------------------------------------------------- /companion/src/progresswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progresswidget.cpp -------------------------------------------------------------------------------- /companion/src/progresswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progresswidget.h -------------------------------------------------------------------------------- /companion/src/progresswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/progresswidget.ui -------------------------------------------------------------------------------- /companion/src/radiointerface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/radiointerface.cpp -------------------------------------------------------------------------------- /companion/src/radiointerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/radiointerface.h -------------------------------------------------------------------------------- /companion/src/radionotfound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/radionotfound.cpp -------------------------------------------------------------------------------- /companion/src/radionotfound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/radionotfound.h -------------------------------------------------------------------------------- /companion/src/radionotfound.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/radionotfound.ui -------------------------------------------------------------------------------- /companion/src/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/shared/autocheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autocheckbox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autocheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autocheckbox.h -------------------------------------------------------------------------------- /companion/src/shared/autocombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autocombobox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autocombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autocombobox.h -------------------------------------------------------------------------------- /companion/src/shared/autohexspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autohexspinbox.h -------------------------------------------------------------------------------- /companion/src/shared/autolabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autolabel.cpp -------------------------------------------------------------------------------- /companion/src/shared/autolabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autolabel.h -------------------------------------------------------------------------------- /companion/src/shared/autolineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autolineedit.cpp -------------------------------------------------------------------------------- /companion/src/shared/autolineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autolineedit.h -------------------------------------------------------------------------------- /companion/src/shared/autoslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autoslider.cpp -------------------------------------------------------------------------------- /companion/src/shared/autoslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autoslider.h -------------------------------------------------------------------------------- /companion/src/shared/autospinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autospinbox.cpp -------------------------------------------------------------------------------- /companion/src/shared/autospinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autospinbox.h -------------------------------------------------------------------------------- /companion/src/shared/autotimeedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autotimeedit.cpp -------------------------------------------------------------------------------- /companion/src/shared/autotimeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autotimeedit.h -------------------------------------------------------------------------------- /companion/src/shared/autowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autowidget.cpp -------------------------------------------------------------------------------- /companion/src/shared/autowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autowidget.h -------------------------------------------------------------------------------- /companion/src/shared/autowidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/autowidgets.h -------------------------------------------------------------------------------- /companion/src/shared/curvedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/curvedialog.cpp -------------------------------------------------------------------------------- /companion/src/shared/curvedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/curvedialog.h -------------------------------------------------------------------------------- /companion/src/shared/curvedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/curvedialog.ui -------------------------------------------------------------------------------- /companion/src/shared/curveimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/curveimage.cpp -------------------------------------------------------------------------------- /companion/src/shared/curveimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/curveimage.h -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/genericpanel.cpp -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/genericpanel.h -------------------------------------------------------------------------------- /companion/src/shared/labelvalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/labelvalidator.h -------------------------------------------------------------------------------- /companion/src/shared/namevalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/namevalidator.h -------------------------------------------------------------------------------- /companion/src/shared/textvalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/shared/textvalidator.h -------------------------------------------------------------------------------- /companion/src/simulation/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/simulation/joystick.cpp -------------------------------------------------------------------------------- /companion/src/simulation/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/simulation/joystick.h -------------------------------------------------------------------------------- /companion/src/simulation/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/simulation/simulator.h -------------------------------------------------------------------------------- /companion/src/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/simulator.cpp -------------------------------------------------------------------------------- /companion/src/simulator.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/simulator.desktop.in -------------------------------------------------------------------------------- /companion/src/sounds/0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/0.wav -------------------------------------------------------------------------------- /companion/src/sounds/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/1.wav -------------------------------------------------------------------------------- /companion/src/sounds/10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/10.wav -------------------------------------------------------------------------------- /companion/src/sounds/11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/11.wav -------------------------------------------------------------------------------- /companion/src/sounds/12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/12.wav -------------------------------------------------------------------------------- /companion/src/sounds/13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/13.wav -------------------------------------------------------------------------------- /companion/src/sounds/14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/14.wav -------------------------------------------------------------------------------- /companion/src/sounds/15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/15.wav -------------------------------------------------------------------------------- /companion/src/sounds/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/2.wav -------------------------------------------------------------------------------- /companion/src/sounds/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/3.wav -------------------------------------------------------------------------------- /companion/src/sounds/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/4.wav -------------------------------------------------------------------------------- /companion/src/sounds/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/5.wav -------------------------------------------------------------------------------- /companion/src/sounds/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/6.wav -------------------------------------------------------------------------------- /companion/src/sounds/7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/7.wav -------------------------------------------------------------------------------- /companion/src/sounds/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/8.wav -------------------------------------------------------------------------------- /companion/src/sounds/9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/sounds/9.wav -------------------------------------------------------------------------------- /companion/src/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/splash.h -------------------------------------------------------------------------------- /companion/src/splashlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/splashlabel.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/splashlibrarydialog.cpp -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/splashlibrarydialog.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/splashlibrarydialog.ui -------------------------------------------------------------------------------- /companion/src/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/storage/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/appdata.cpp -------------------------------------------------------------------------------- /companion/src/storage/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/appdata.h -------------------------------------------------------------------------------- /companion/src/storage/bineeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/bineeprom.cpp -------------------------------------------------------------------------------- /companion/src/storage/bineeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/bineeprom.h -------------------------------------------------------------------------------- /companion/src/storage/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/crc.cpp -------------------------------------------------------------------------------- /companion/src/storage/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/crc.h -------------------------------------------------------------------------------- /companion/src/storage/eepe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/eepe.cpp -------------------------------------------------------------------------------- /companion/src/storage/eepe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/eepe.h -------------------------------------------------------------------------------- /companion/src/storage/eepexml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/eepexml.cpp -------------------------------------------------------------------------------- /companion/src/storage/etx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/etx.cpp -------------------------------------------------------------------------------- /companion/src/storage/etx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/etx.h -------------------------------------------------------------------------------- /companion/src/storage/hexeeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/hexeeprom.cpp -------------------------------------------------------------------------------- /companion/src/storage/hexeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/hexeeprom.h -------------------------------------------------------------------------------- /companion/src/storage/hexinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/hexinterface.h -------------------------------------------------------------------------------- /companion/src/storage/labeled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/labeled.cpp -------------------------------------------------------------------------------- /companion/src/storage/labeled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/labeled.h -------------------------------------------------------------------------------- /companion/src/storage/mountlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/mountlist.cpp -------------------------------------------------------------------------------- /companion/src/storage/mountlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/mountlist.h -------------------------------------------------------------------------------- /companion/src/storage/otx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/otx.cpp -------------------------------------------------------------------------------- /companion/src/storage/otx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/otx.h -------------------------------------------------------------------------------- /companion/src/storage/rlefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/rlefile.cpp -------------------------------------------------------------------------------- /companion/src/storage/rlefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/rlefile.h -------------------------------------------------------------------------------- /companion/src/storage/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/sdcard.cpp -------------------------------------------------------------------------------- /companion/src/storage/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/sdcard.h -------------------------------------------------------------------------------- /companion/src/storage/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/storage.cpp -------------------------------------------------------------------------------- /companion/src/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/storage.h -------------------------------------------------------------------------------- /companion/src/storage/yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/yaml.cpp -------------------------------------------------------------------------------- /companion/src/storage/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/storage/yaml.h -------------------------------------------------------------------------------- /companion/src/styleeditdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/styleeditdialog.cpp -------------------------------------------------------------------------------- /companion/src/styleeditdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/styleeditdialog.h -------------------------------------------------------------------------------- /companion/src/styleeditdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/styleeditdialog.ui -------------------------------------------------------------------------------- /companion/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/tests/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/tests/conversions.cpp -------------------------------------------------------------------------------- /companion/src/tests/gtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/tests/gtests.cpp -------------------------------------------------------------------------------- /companion/src/tests/gtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/tests/gtests.h -------------------------------------------------------------------------------- /companion/src/tests/location.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/tests/location.h.in -------------------------------------------------------------------------------- /companion/src/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/translations.cpp -------------------------------------------------------------------------------- /companion/src/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/translations.h -------------------------------------------------------------------------------- /companion/src/translations.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/translations.qrc.in -------------------------------------------------------------------------------- /companion/src/updates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/updates/chooserdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/chooserdialog.h -------------------------------------------------------------------------------- /companion/src/updates/repo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/repo.cpp -------------------------------------------------------------------------------- /companion/src/updates/repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/repo.h -------------------------------------------------------------------------------- /companion/src/updates/repoassets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/repoassets.cpp -------------------------------------------------------------------------------- /companion/src/updates/repoassets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/repoassets.h -------------------------------------------------------------------------------- /companion/src/updates/repometadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/repometadata.h -------------------------------------------------------------------------------- /companion/src/updates/reporeleases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/reporeleases.h -------------------------------------------------------------------------------- /companion/src/updates/updatenetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatenetwork.h -------------------------------------------------------------------------------- /companion/src/updates/updates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updates.cpp -------------------------------------------------------------------------------- /companion/src/updates/updates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updates.h -------------------------------------------------------------------------------- /companion/src/updates/updatesdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatesdcard.h -------------------------------------------------------------------------------- /companion/src/updates/updatesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatesdialog.h -------------------------------------------------------------------------------- /companion/src/updates/updatesounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatesounds.h -------------------------------------------------------------------------------- /companion/src/updates/updatestatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatestatus.h -------------------------------------------------------------------------------- /companion/src/updates/updatethemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/updates/updatethemes.h -------------------------------------------------------------------------------- /companion/src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/version.h.in -------------------------------------------------------------------------------- /companion/src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/warnings.h -------------------------------------------------------------------------------- /companion/src/wizarddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/wizarddata.cpp -------------------------------------------------------------------------------- /companion/src/wizarddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/wizarddata.h -------------------------------------------------------------------------------- /companion/src/wizarddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/wizarddialog.cpp -------------------------------------------------------------------------------- /companion/src/wizarddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/src/wizarddialog.h -------------------------------------------------------------------------------- /companion/targets/mac/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/targets/mac/DS_Store -------------------------------------------------------------------------------- /companion/targets/windows/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/targets/windows/avrdude.exe -------------------------------------------------------------------------------- /companion/util/generate_hwdefs_qrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/companion/util/generate_hwdefs_qrc.py -------------------------------------------------------------------------------- /fw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/fw.json -------------------------------------------------------------------------------- /radio/.gitignore: -------------------------------------------------------------------------------- 1 | /gtest-1.6.0 2 | -------------------------------------------------------------------------------- /radio/data/MODELE24-2014-07-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/data/MODELE24-2014-07-11.csv -------------------------------------------------------------------------------- /radio/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/data/readme.txt -------------------------------------------------------------------------------- /radio/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/releasenotes.txt -------------------------------------------------------------------------------- /radio/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/.gitignore -------------------------------------------------------------------------------- /radio/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/FreeRTOSConfig.h -------------------------------------------------------------------------------- /radio/src/MultiProtoDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/MultiProtoDefs.h -------------------------------------------------------------------------------- /radio/src/MultiSubtypeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/MultiSubtypeDefs.h -------------------------------------------------------------------------------- /radio/src/analogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/analogs.cpp -------------------------------------------------------------------------------- /radio/src/analogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/analogs.h -------------------------------------------------------------------------------- /radio/src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/audio.cpp -------------------------------------------------------------------------------- /radio/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/audio.h -------------------------------------------------------------------------------- /radio/src/bin_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bin_allocator.cpp -------------------------------------------------------------------------------- /radio/src/bin_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bin_allocator.h -------------------------------------------------------------------------------- /radio/src/bitmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /*.lbm 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/128x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/128x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/128x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/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/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/icons.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/lock.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/logo.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/power.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/shutdown.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/212x64/startup.png -------------------------------------------------------------------------------- /radio/src/bitmaps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(${BITMAPS_DIR}) 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/sticks.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bitmaps/sticks.xbm -------------------------------------------------------------------------------- /radio/src/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bluetooth.cpp -------------------------------------------------------------------------------- /radio/src/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/bluetooth.h -------------------------------------------------------------------------------- /radio/src/buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/buzzer.cpp -------------------------------------------------------------------------------- /radio/src/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/buzzer.h -------------------------------------------------------------------------------- /radio/src/chksize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/chksize.h -------------------------------------------------------------------------------- /radio/src/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/cli.cpp -------------------------------------------------------------------------------- /radio/src/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/cli.h -------------------------------------------------------------------------------- /radio/src/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/crc.cpp -------------------------------------------------------------------------------- /radio/src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/crc.h -------------------------------------------------------------------------------- /radio/src/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/curves.cpp -------------------------------------------------------------------------------- /radio/src/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/curves.h -------------------------------------------------------------------------------- /radio/src/dataconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/dataconstants.h -------------------------------------------------------------------------------- /radio/src/datastructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/datastructs.h -------------------------------------------------------------------------------- /radio/src/datastructs_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/datastructs_private.h -------------------------------------------------------------------------------- /radio/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/debug.cpp -------------------------------------------------------------------------------- /radio/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/debug.h -------------------------------------------------------------------------------- /radio/src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/definitions.h -------------------------------------------------------------------------------- /radio/src/disk_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/disk_cache.cpp -------------------------------------------------------------------------------- /radio/src/disk_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/disk_cache.h -------------------------------------------------------------------------------- /radio/src/drivers/frftl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/drivers/frftl.cpp -------------------------------------------------------------------------------- /radio/src/drivers/frftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/drivers/frftl.h -------------------------------------------------------------------------------- /radio/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/dump.cpp -------------------------------------------------------------------------------- /radio/src/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/dump.h -------------------------------------------------------------------------------- /radio/src/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fifo.h -------------------------------------------------------------------------------- /radio/src/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/.gitignore -------------------------------------------------------------------------------- /radio/src/fonts/Arimo/Arimo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Arimo/Arimo-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Kanit/Kanit-Black.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Kanit/Kanit-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Kanit/Kanit-Light.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Kanit/Kanit-Thin.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Kanit/OFL.txt -------------------------------------------------------------------------------- /radio/src/fonts/Noto/LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Noto/LICENSE_OFL.txt -------------------------------------------------------------------------------- /radio/src/fonts/Noto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Noto/README -------------------------------------------------------------------------------- /radio/src/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/Ubuntu/UFL.txt -------------------------------------------------------------------------------- /radio/src/fonts/extra_11px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/extra_11px.png -------------------------------------------------------------------------------- /radio/src/fonts/extra_16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/extra_16px.png -------------------------------------------------------------------------------- /radio/src/fonts/extra_17px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/extra_17px.png -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/EdgeTX/extra.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/EdgeTX/extra.sfd -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/EdgeTX/extra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/EdgeTX/extra.svg -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/EdgeTX/extra.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/EdgeTX/extra.ttf -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/get_char_ck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/get_char_ck.py -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/get_char_he.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/get_char_he.py -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/get_char_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/get_char_jp.py -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/lz4_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/lz4_font.cpp -------------------------------------------------------------------------------- /radio/src/fonts/lvgl/make_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/lvgl/make_fonts.sh -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/sqt5/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/sqt5/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/sqt5/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/sqt5/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/sqt5/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_da_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_da_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_da_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_da_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_da_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_da_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_da_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_da_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fonts/std/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/functions.cpp -------------------------------------------------------------------------------- /radio/src/fw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/fw_version.h -------------------------------------------------------------------------------- /radio/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/globals.h -------------------------------------------------------------------------------- /radio/src/gps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gps.cpp -------------------------------------------------------------------------------- /radio/src/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gps.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/bmp.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/gui.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/menus.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/popups.h -------------------------------------------------------------------------------- /radio/src/gui/128x64/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/128x64/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/128x64/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/bmp.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/gui.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/menus.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/popups.h -------------------------------------------------------------------------------- /radio/src/gui/212x64/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/212x64/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/212x64/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/bitmaps.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/bitmaps.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/colors.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/colors.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/curve.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/curve.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/curveedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/curveedit.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/curves.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/fm_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/fm_matrix.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/gui.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/hw_inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/hw_inputs.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/hw_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/hw_serial.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/layout.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/layout.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/libopenui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/libopenui.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/listbox.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/listbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/listbox.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/lz4_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/lz4_fonts.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/menus.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/page.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/page.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/popups.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/tabsgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/tabsgroup.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/textedits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/textedits.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/theme.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/theme.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/timeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/timeedit.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/topbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/topbar.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/topbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/topbar.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/view_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/view_main.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/view_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/view_text.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/widget.cpp -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/widget.h -------------------------------------------------------------------------------- /radio/src/gui/colorlcd/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/colorlcd/zone.h -------------------------------------------------------------------------------- /radio/src/gui/common/stdlcd/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/common/stdlcd/utf8.h -------------------------------------------------------------------------------- /radio/src/gui/gui_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/gui_common.cpp -------------------------------------------------------------------------------- /radio/src/gui/gui_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/gui_common.h -------------------------------------------------------------------------------- /radio/src/gui/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gui/screenshot.cpp -------------------------------------------------------------------------------- /radio/src/gvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gvars.cpp -------------------------------------------------------------------------------- /radio/src/gvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gvars.h -------------------------------------------------------------------------------- /radio/src/gyro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gyro.cpp -------------------------------------------------------------------------------- /radio/src/gyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/gyro.h -------------------------------------------------------------------------------- /radio/src/hal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/hal/abnormal_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/abnormal_reboot.h -------------------------------------------------------------------------------- /radio/src/hal/adc_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/adc_driver.cpp -------------------------------------------------------------------------------- /radio/src/hal/adc_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/adc_driver.h -------------------------------------------------------------------------------- /radio/src/hal/eeprom_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/eeprom_driver.h -------------------------------------------------------------------------------- /radio/src/hal/fatfs_diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/fatfs_diskio.cpp -------------------------------------------------------------------------------- /radio/src/hal/fatfs_diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/fatfs_diskio.h -------------------------------------------------------------------------------- /radio/src/hal/key_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/key_driver.cpp -------------------------------------------------------------------------------- /radio/src/hal/key_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/key_driver.h -------------------------------------------------------------------------------- /radio/src/hal/module_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/module_driver.h -------------------------------------------------------------------------------- /radio/src/hal/module_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/module_port.cpp -------------------------------------------------------------------------------- /radio/src/hal/module_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/module_port.h -------------------------------------------------------------------------------- /radio/src/hal/rotary_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/rotary_encoder.h -------------------------------------------------------------------------------- /radio/src/hal/serial_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/serial_driver.h -------------------------------------------------------------------------------- /radio/src/hal/serial_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/serial_port.h -------------------------------------------------------------------------------- /radio/src/hal/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/storage.cpp -------------------------------------------------------------------------------- /radio/src/hal/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/storage.h -------------------------------------------------------------------------------- /radio/src/hal/switch_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/switch_driver.cpp -------------------------------------------------------------------------------- /radio/src/hal/switch_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/switch_driver.h -------------------------------------------------------------------------------- /radio/src/hal/timer_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/timer_driver.h -------------------------------------------------------------------------------- /radio/src/hal/trainer_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/trainer_driver.h -------------------------------------------------------------------------------- /radio/src/hal/usb_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/usb_driver.h -------------------------------------------------------------------------------- /radio/src/hal/watchdog_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/hal/watchdog_driver.h -------------------------------------------------------------------------------- /radio/src/haptic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/haptic.cpp -------------------------------------------------------------------------------- /radio/src/haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/haptic.h -------------------------------------------------------------------------------- /radio/src/inactivity_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/inactivity_timer.cpp -------------------------------------------------------------------------------- /radio/src/inactivity_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/inactivity_timer.h -------------------------------------------------------------------------------- /radio/src/input_mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/input_mapping.cpp -------------------------------------------------------------------------------- /radio/src/input_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/input_mapping.h -------------------------------------------------------------------------------- /radio/src/io/bootloader_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/bootloader_flash.cpp -------------------------------------------------------------------------------- /radio/src/io/bootloader_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/bootloader_flash.h -------------------------------------------------------------------------------- /radio/src/io/frsky_sport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/frsky_sport.h -------------------------------------------------------------------------------- /radio/src/io/multi_protolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/multi_protolist.cpp -------------------------------------------------------------------------------- /radio/src/io/multi_protolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/multi_protolist.h -------------------------------------------------------------------------------- /radio/src/io/stk500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/io/stk500.h -------------------------------------------------------------------------------- /radio/src/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/keys.cpp -------------------------------------------------------------------------------- /radio/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/keys.h -------------------------------------------------------------------------------- /radio/src/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/logs.cpp -------------------------------------------------------------------------------- /radio/src/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/lua/api_colorlcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_colorlcd.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_colorlcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_colorlcd.h -------------------------------------------------------------------------------- /radio/src/lua/api_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_filesystem.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_filesystem.h -------------------------------------------------------------------------------- /radio/src/lua/api_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_general.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_model.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_stdlcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/api_stdlcd.cpp -------------------------------------------------------------------------------- /radio/src/lua/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/interface.cpp -------------------------------------------------------------------------------- /radio/src/lua/lua_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_api.h -------------------------------------------------------------------------------- /radio/src/lua/lua_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_event.cpp -------------------------------------------------------------------------------- /radio/src/lua/lua_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_event.h -------------------------------------------------------------------------------- /radio/src/lua/lua_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_touch.h -------------------------------------------------------------------------------- /radio/src/lua/lua_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_widget.cpp -------------------------------------------------------------------------------- /radio/src/lua/lua_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_widget.h -------------------------------------------------------------------------------- /radio/src/lua/lua_widget_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/lua_widget_factory.h -------------------------------------------------------------------------------- /radio/src/lua/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lua/widgets.cpp -------------------------------------------------------------------------------- /radio/src/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/lv_conf.h -------------------------------------------------------------------------------- /radio/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/main.cpp -------------------------------------------------------------------------------- /radio/src/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/maths.cpp -------------------------------------------------------------------------------- /radio/src/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/mixer.cpp -------------------------------------------------------------------------------- /radio/src/mixer_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/mixer_scheduler.cpp -------------------------------------------------------------------------------- /radio/src/mixer_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/mixer_scheduler.h -------------------------------------------------------------------------------- /radio/src/mixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/mixes.cpp -------------------------------------------------------------------------------- /radio/src/mixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/mixes.h -------------------------------------------------------------------------------- /radio/src/model_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/model_audio.cpp -------------------------------------------------------------------------------- /radio/src/model_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/model_audio.h -------------------------------------------------------------------------------- /radio/src/model_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/model_init.cpp -------------------------------------------------------------------------------- /radio/src/model_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/model_init.h -------------------------------------------------------------------------------- /radio/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/module.h -------------------------------------------------------------------------------- /radio/src/myeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/myeeprom.h -------------------------------------------------------------------------------- /radio/src/opentx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/opentx.cpp -------------------------------------------------------------------------------- /radio/src/opentx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/opentx.h -------------------------------------------------------------------------------- /radio/src/opentx_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/opentx_constants.h -------------------------------------------------------------------------------- /radio/src/opentx_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/opentx_helpers.h -------------------------------------------------------------------------------- /radio/src/opentx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/opentx_types.h -------------------------------------------------------------------------------- /radio/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/options.h -------------------------------------------------------------------------------- /radio/src/pulses/afhds2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds2.cpp -------------------------------------------------------------------------------- /radio/src/pulses/afhds2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds2.h -------------------------------------------------------------------------------- /radio/src/pulses/afhds3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds3.cpp -------------------------------------------------------------------------------- /radio/src/pulses/afhds3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds3.h -------------------------------------------------------------------------------- /radio/src/pulses/afhds3_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds3_config.h -------------------------------------------------------------------------------- /radio/src/pulses/afhds3_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/afhds3_module.h -------------------------------------------------------------------------------- /radio/src/pulses/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/pulses/crossfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/crossfire.h -------------------------------------------------------------------------------- /radio/src/pulses/dsm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/dsm2.cpp -------------------------------------------------------------------------------- /radio/src/pulses/dsm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/dsm2.h -------------------------------------------------------------------------------- /radio/src/pulses/flysky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/flysky.cpp -------------------------------------------------------------------------------- /radio/src/pulses/flysky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/flysky.h -------------------------------------------------------------------------------- /radio/src/pulses/ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/ghost.cpp -------------------------------------------------------------------------------- /radio/src/pulses/ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/ghost.h -------------------------------------------------------------------------------- /radio/src/pulses/modules_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/modules_helpers.h -------------------------------------------------------------------------------- /radio/src/pulses/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/multi.cpp -------------------------------------------------------------------------------- /radio/src/pulses/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/multi.h -------------------------------------------------------------------------------- /radio/src/pulses/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/ppm.cpp -------------------------------------------------------------------------------- /radio/src/pulses/ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/ppm.h -------------------------------------------------------------------------------- /radio/src/pulses/pulses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pulses.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pulses.h -------------------------------------------------------------------------------- /radio/src/pulses/pulses_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pulses_common.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx1.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx1.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx1_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx1_transport.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx2.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx2.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx2_ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx2_ota.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pxx2_ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx2_ota.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx2_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/pxx2_transport.h -------------------------------------------------------------------------------- /radio/src/pulses/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/sbus.cpp -------------------------------------------------------------------------------- /radio/src/pulses/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pulses/sbus.h -------------------------------------------------------------------------------- /radio/src/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/pwr.h -------------------------------------------------------------------------------- /radio/src/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/rtc.cpp -------------------------------------------------------------------------------- /radio/src/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/rtc.h -------------------------------------------------------------------------------- /radio/src/rtos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/rtos.c -------------------------------------------------------------------------------- /radio/src/rtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/rtos.h -------------------------------------------------------------------------------- /radio/src/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/sbus.cpp -------------------------------------------------------------------------------- /radio/src/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/sbus.h -------------------------------------------------------------------------------- /radio/src/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/sdcard.cpp -------------------------------------------------------------------------------- /radio/src/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/sdcard.h -------------------------------------------------------------------------------- /radio/src/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/serial.cpp -------------------------------------------------------------------------------- /radio/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/serial.h -------------------------------------------------------------------------------- /radio/src/simu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/simu.cpp -------------------------------------------------------------------------------- /radio/src/spacemouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/spacemouse.cpp -------------------------------------------------------------------------------- /radio/src/spacemouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/spacemouse.h -------------------------------------------------------------------------------- /radio/src/stamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/stamp.cpp -------------------------------------------------------------------------------- /radio/src/stamp.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/stamp.h.in -------------------------------------------------------------------------------- /radio/src/storage/modelslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/modelslist.cpp -------------------------------------------------------------------------------- /radio/src/storage/modelslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/modelslist.h -------------------------------------------------------------------------------- /radio/src/storage/rlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/rlc.cpp -------------------------------------------------------------------------------- /radio/src/storage/rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/rlc.h -------------------------------------------------------------------------------- /radio/src/storage/rtc_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/rtc_backup.cpp -------------------------------------------------------------------------------- /radio/src/storage/rtc_backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/rtc_backup.h -------------------------------------------------------------------------------- /radio/src/storage/sdcard_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/sdcard_common.h -------------------------------------------------------------------------------- /radio/src/storage/sdcard_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/sdcard_raw.h -------------------------------------------------------------------------------- /radio/src/storage/sdcard_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/sdcard_yaml.cpp -------------------------------------------------------------------------------- /radio/src/storage/sdcard_yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/sdcard_yaml.h -------------------------------------------------------------------------------- /radio/src/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/storage.h -------------------------------------------------------------------------------- /radio/src/storage/yaml/yaml_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/yaml/yaml_bits.h -------------------------------------------------------------------------------- /radio/src/storage/yaml/yaml_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/yaml/yaml_defs.h -------------------------------------------------------------------------------- /radio/src/storage/yaml/yaml_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/storage/yaml/yaml_node.h -------------------------------------------------------------------------------- /radio/src/strhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/strhelpers.cpp -------------------------------------------------------------------------------- /radio/src/strhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/strhelpers.h -------------------------------------------------------------------------------- /radio/src/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/switches.cpp -------------------------------------------------------------------------------- /radio/src/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/switches.h -------------------------------------------------------------------------------- /radio/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/syscalls.c -------------------------------------------------------------------------------- /radio/src/targets/common/esp32/heartbeat_driver.h: -------------------------------------------------------------------------------- 1 | 2 | // dummy file. just to satisfy the compiler 3 | -------------------------------------------------------------------------------- /radio/src/targets/horus/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/horus/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/horus/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/horus/board.h -------------------------------------------------------------------------------- /radio/src/targets/horus/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/horus/hal.h -------------------------------------------------------------------------------- /radio/src/targets/horus/tp_gt911.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/horus/tp_gt911.h -------------------------------------------------------------------------------- /radio/src/targets/muffin/ads1x15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/muffin/ads1x15.h -------------------------------------------------------------------------------- /radio/src/targets/muffin/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/muffin/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/muffin/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/muffin/board.h -------------------------------------------------------------------------------- /radio/src/targets/muffin/esp32_build/requirement.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | lz4 3 | jinja2 4 | asciitree 5 | clang 6 | -------------------------------------------------------------------------------- /radio/src/targets/muffin/esp32_build/sdkconfig.ci: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /radio/src/targets/muffin/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/muffin/hal.h -------------------------------------------------------------------------------- /radio/src/targets/nv14/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/nv14/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/nv14/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/nv14/board.h -------------------------------------------------------------------------------- /radio/src/targets/nv14/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/nv14/hal.h -------------------------------------------------------------------------------- /radio/src/targets/pl18/board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/pl18/board.cpp -------------------------------------------------------------------------------- /radio/src/targets/pl18/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/pl18/board.h -------------------------------------------------------------------------------- /radio/src/targets/pl18/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/pl18/hal.h -------------------------------------------------------------------------------- /radio/src/targets/pl18/tp_cst340.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/pl18/tp_cst340.h -------------------------------------------------------------------------------- /radio/src/targets/simu/simulcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/simu/simulcd.cpp -------------------------------------------------------------------------------- /radio/src/targets/simu/simulcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/simu/simulcd.h -------------------------------------------------------------------------------- /radio/src/targets/stlink-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/stlink-v2.cfg -------------------------------------------------------------------------------- /radio/src/targets/taranis/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/taranis/board.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/taranis/dwt.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/targets/taranis/hal.h -------------------------------------------------------------------------------- /radio/src/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tasks.cpp -------------------------------------------------------------------------------- /radio/src/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tasks.h -------------------------------------------------------------------------------- /radio/src/tasks/mixer_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tasks/mixer_task.cpp -------------------------------------------------------------------------------- /radio/src/tasks/mixer_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tasks/mixer_task.h -------------------------------------------------------------------------------- /radio/src/telemetry/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/crossfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/crossfire.h -------------------------------------------------------------------------------- /radio/src/telemetry/flysky_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/flysky_ibus.h -------------------------------------------------------------------------------- /radio/src/telemetry/flysky_nv14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/flysky_nv14.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/frsky.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/frsky.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/frsky_d.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/frsky_defs.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_pxx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/frsky_pxx2.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/ghost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/ghost.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/ghost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/ghost.h -------------------------------------------------------------------------------- /radio/src/telemetry/ghost_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/ghost_menu.h -------------------------------------------------------------------------------- /radio/src/telemetry/hitec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/hitec.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/hitec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/hitec.h -------------------------------------------------------------------------------- /radio/src/telemetry/hott.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/hott.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/hott.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/hott.h -------------------------------------------------------------------------------- /radio/src/telemetry/mlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/mlink.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/mlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/mlink.h -------------------------------------------------------------------------------- /radio/src/telemetry/multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/multi.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/multi.h -------------------------------------------------------------------------------- /radio/src/telemetry/spektrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/spektrum.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/spektrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/spektrum.h -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/telemetry.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/telemetry/telemetry.h -------------------------------------------------------------------------------- /radio/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /radio/src/tests/colorlcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/colorlcd.cpp -------------------------------------------------------------------------------- /radio/src/tests/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/conversions.cpp -------------------------------------------------------------------------------- /radio/src/tests/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/tests/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/eeprom.cpp -------------------------------------------------------------------------------- /radio/src/tests/eeprom_23_x7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/eeprom_23_x7.bin -------------------------------------------------------------------------------- /radio/src/tests/eeprom_23_x9d+.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/eeprom_23_x9d+.bin -------------------------------------------------------------------------------- /radio/src/tests/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/frsky.cpp -------------------------------------------------------------------------------- /radio/src/tests/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/functions.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/gtests.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/gtests.h -------------------------------------------------------------------------------- /radio/src/tests/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/lcd.cpp -------------------------------------------------------------------------------- /radio/src/tests/lcd_480x272.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/lcd_480x272.cpp -------------------------------------------------------------------------------- /radio/src/tests/location.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/location.h.in -------------------------------------------------------------------------------- /radio/src/tests/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/lua.cpp -------------------------------------------------------------------------------- /radio/src/tests/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/mixer.cpp -------------------------------------------------------------------------------- /radio/src/tests/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/model.cpp -------------------------------------------------------------------------------- /radio/src/tests/model_23_x10.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/model_23_x10.otx -------------------------------------------------------------------------------- /radio/src/tests/model_23_x12s.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/model_23_x12s.otx -------------------------------------------------------------------------------- /radio/src/tests/model_25_tx16s.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/model_25_tx16s.otx -------------------------------------------------------------------------------- /radio/src/tests/model_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/model_audio.cpp -------------------------------------------------------------------------------- /radio/src/tests/module_ports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/module_ports.cpp -------------------------------------------------------------------------------- /radio/src/tests/sources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/sources.cpp -------------------------------------------------------------------------------- /radio/src/tests/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/stb_image_write.h -------------------------------------------------------------------------------- /radio/src/tests/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/switches.cpp -------------------------------------------------------------------------------- /radio/src/tests/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/timers.cpp -------------------------------------------------------------------------------- /radio/src/tests/yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/tests/yaml.cpp -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/FatFs/ff.c -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/FatFs/ff.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/Makefile -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/README -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/doc/lua.1 -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/ldo.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/ldo.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lgc.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lgc.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/ltm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/ltm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lua.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lua.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lvm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/thirdparty/Lua/src/lvm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/libopenui/.gitignore: -------------------------------------------------------------------------------- 1 | src/thirdparty/stb/ 2 | -------------------------------------------------------------------------------- /radio/src/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/timers.cpp -------------------------------------------------------------------------------- /radio/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/timers.h -------------------------------------------------------------------------------- /radio/src/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/touch.h -------------------------------------------------------------------------------- /radio/src/trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/trainer.cpp -------------------------------------------------------------------------------- /radio/src/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/trainer.h -------------------------------------------------------------------------------- /radio/src/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations.cpp -------------------------------------------------------------------------------- /radio/src/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations.h -------------------------------------------------------------------------------- /radio/src/translations/cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/cn.h -------------------------------------------------------------------------------- /radio/src/translations/cz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/cz.h -------------------------------------------------------------------------------- /radio/src/translations/da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/da.h -------------------------------------------------------------------------------- /radio/src/translations/de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/de.h -------------------------------------------------------------------------------- /radio/src/translations/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/en.h -------------------------------------------------------------------------------- /radio/src/translations/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/es.h -------------------------------------------------------------------------------- /radio/src/translations/fi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/fi.h -------------------------------------------------------------------------------- /radio/src/translations/fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/fr.h -------------------------------------------------------------------------------- /radio/src/translations/he.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/he.h -------------------------------------------------------------------------------- /radio/src/translations/it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/it.h -------------------------------------------------------------------------------- /radio/src/translations/jp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/jp.h -------------------------------------------------------------------------------- /radio/src/translations/nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/nl.h -------------------------------------------------------------------------------- /radio/src/translations/pl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/pl.h -------------------------------------------------------------------------------- /radio/src/translations/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/pt.h -------------------------------------------------------------------------------- /radio/src/translations/ru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/ru.h -------------------------------------------------------------------------------- /radio/src/translations/se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/se.h -------------------------------------------------------------------------------- /radio/src/translations/tts_cn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_cn.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_cz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_cz.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_da.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_da.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_de.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_de.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_en.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_en.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_es.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_es.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_fr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_fr.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_he.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_he.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_hu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_hu.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_it.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_jp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_jp.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_nl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_pl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_pt.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_ru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_ru.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_se.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_se.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_sk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_sk.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_ua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tts_ua.cpp -------------------------------------------------------------------------------- /radio/src/translations/tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/tw.h -------------------------------------------------------------------------------- /radio/src/translations/ua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/translations/ua.h -------------------------------------------------------------------------------- /radio/src/usb_joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/usb_joystick.cpp -------------------------------------------------------------------------------- /radio/src/usb_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/usb_joystick.h -------------------------------------------------------------------------------- /radio/src/vario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/src/vario.cpp -------------------------------------------------------------------------------- /radio/util/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | -------------------------------------------------------------------------------- /radio/util/addtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/addtr.py -------------------------------------------------------------------------------- /radio/util/bin2lbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/bin2lbm.py -------------------------------------------------------------------------------- /radio/util/build-firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/build-firmware.py -------------------------------------------------------------------------------- /radio/util/capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/capitalize.py -------------------------------------------------------------------------------- /radio/util/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/codecs.py -------------------------------------------------------------------------------- /radio/util/crossfire-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/crossfire-parse.py -------------------------------------------------------------------------------- /radio/util/dsm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/dsm2.py -------------------------------------------------------------------------------- /radio/util/dump_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/dump_ast.py -------------------------------------------------------------------------------- /radio/util/dump_ast_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/dump_ast_yaml.py -------------------------------------------------------------------------------- /radio/util/elf-size-compare.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/elf-size-compare.awk -------------------------------------------------------------------------------- /radio/util/elf-size-report.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/elf-size-report.awk -------------------------------------------------------------------------------- /radio/util/elf-size-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/elf-size-report.sh -------------------------------------------------------------------------------- /radio/util/fat12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/fat12.py -------------------------------------------------------------------------------- /radio/util/find_clang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/find_clang.py -------------------------------------------------------------------------------- /radio/util/font2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/font2png.py -------------------------------------------------------------------------------- /radio/util/fwoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/fwoptions.py -------------------------------------------------------------------------------- /radio/util/generate_datacopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/generate_datacopy.py -------------------------------------------------------------------------------- /radio/util/generate_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/generate_yaml.py -------------------------------------------------------------------------------- /radio/util/hw_defs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/README.md -------------------------------------------------------------------------------- /radio/util/hw_defs/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/generator.py -------------------------------------------------------------------------------- /radio/util/hw_defs/hal_adc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/hal_adc.py -------------------------------------------------------------------------------- /radio/util/hw_defs/hal_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/hal_json.py -------------------------------------------------------------------------------- /radio/util/hw_defs/hal_keys.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/hal_keys.jinja -------------------------------------------------------------------------------- /radio/util/hw_defs/hal_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/hal_keys.py -------------------------------------------------------------------------------- /radio/util/hw_defs/hal_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/hal_switches.py -------------------------------------------------------------------------------- /radio/util/hw_defs/json_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/json_index.py -------------------------------------------------------------------------------- /radio/util/hw_defs/legacy_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/legacy_names.py -------------------------------------------------------------------------------- /radio/util/hw_defs/lua_keys.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/lua_keys.jinja -------------------------------------------------------------------------------- /radio/util/hw_defs/pot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/pot_config.py -------------------------------------------------------------------------------- /radio/util/hw_defs/simu_keys.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/hw_defs/simu_keys.jinja -------------------------------------------------------------------------------- /radio/util/lua/lua_event_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/lua/lua_event_test.lua -------------------------------------------------------------------------------- /radio/util/lua_trace2plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/lua_trace2plot.py -------------------------------------------------------------------------------- /radio/util/maxvolume.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/maxvolume.cmd -------------------------------------------------------------------------------- /radio/util/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/parse.py -------------------------------------------------------------------------------- /radio/util/sinus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/sinus.py -------------------------------------------------------------------------------- /radio/util/sport-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/sport-parse.py -------------------------------------------------------------------------------- /radio/util/taranisicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/taranisicons.py -------------------------------------------------------------------------------- /radio/util/tts_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_common.py -------------------------------------------------------------------------------- /radio/util/tts_cz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_cz.py -------------------------------------------------------------------------------- /radio/util/tts_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_de.py -------------------------------------------------------------------------------- /radio/util/tts_doc_cz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_doc_cz.md -------------------------------------------------------------------------------- /radio/util/tts_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_en.py -------------------------------------------------------------------------------- /radio/util/tts_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_es.py -------------------------------------------------------------------------------- /radio/util/tts_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_fr.py -------------------------------------------------------------------------------- /radio/util/tts_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_it.py -------------------------------------------------------------------------------- /radio/util/tts_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_pt.py -------------------------------------------------------------------------------- /radio/util/tts_ru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/tts_ru.py -------------------------------------------------------------------------------- /radio/util/voices_ru.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/voices_ru.psv -------------------------------------------------------------------------------- /radio/util/yaml_parser.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/radio/util/yaml_parser.tmpl -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /tools/add-issue-links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/add-issue-links.py -------------------------------------------------------------------------------- /tools/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/boards.py -------------------------------------------------------------------------------- /tools/build-betafpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-betafpv.py -------------------------------------------------------------------------------- /tools/build-companion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-companion.sh -------------------------------------------------------------------------------- /tools/build-flysky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-flysky.py -------------------------------------------------------------------------------- /tools/build-font-bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-font-bitmap.py -------------------------------------------------------------------------------- /tools/build-frsk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-frsk.py -------------------------------------------------------------------------------- /tools/build-frsky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-frsky.py -------------------------------------------------------------------------------- /tools/build-gh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-gh.sh -------------------------------------------------------------------------------- /tools/build-iflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-iflight.py -------------------------------------------------------------------------------- /tools/build-imrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-imrc.py -------------------------------------------------------------------------------- /tools/build-jumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-jumper.py -------------------------------------------------------------------------------- /tools/build-opentx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-opentx.py -------------------------------------------------------------------------------- /tools/build-radiomaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-radiomaster.py -------------------------------------------------------------------------------- /tools/build-tbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/build-tbs.py -------------------------------------------------------------------------------- /tools/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/charset.py -------------------------------------------------------------------------------- /tools/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/clang-format.sh -------------------------------------------------------------------------------- /tools/codeformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/codeformat.sh -------------------------------------------------------------------------------- /tools/commit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/commit-tests.sh -------------------------------------------------------------------------------- /tools/companion-gen-icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/companion-gen-icons.py -------------------------------------------------------------------------------- /tools/copyright-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/copyright-header.txt -------------------------------------------------------------------------------- /tools/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/copyright.py -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/eeprom_upgd_check/check.lua -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/create.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/eeprom_upgd_check/create.lua -------------------------------------------------------------------------------- /tools/eeprom_upgd_check/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/eeprom_upgd_check/readme.txt -------------------------------------------------------------------------------- /tools/encode-font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/encode-font.py -------------------------------------------------------------------------------- /tools/encode-translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/encode-translation.py -------------------------------------------------------------------------------- /tools/extract-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/extract-map.py -------------------------------------------------------------------------------- /tools/generate-hw-defs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/generate-hw-defs.sh -------------------------------------------------------------------------------- /tools/generate-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/generate-yaml.sh -------------------------------------------------------------------------------- /tools/include-guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/include-guard.py -------------------------------------------------------------------------------- /tools/latency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/latency.py -------------------------------------------------------------------------------- /tools/list-utf-8-code-points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/list-utf-8-code-points.py -------------------------------------------------------------------------------- /tools/msys2_fetch_and_build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/msys2_fetch_and_build_all.sh -------------------------------------------------------------------------------- /tools/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/edgetx_muffin/HEAD/tools/uncrustify.cfg --------------------------------------------------------------------------------