├── .gitignore ├── .travis.yml ├── CREDITS.txt ├── DONATIONS.txt ├── GPLv2.txt ├── README.md ├── companion ├── releasenotes.txt ├── src │ ├── CMakeLists.txt │ ├── appdata.cpp │ ├── appdata.h │ ├── apppreferencesdialog.cpp │ ├── apppreferencesdialog.h │ ├── apppreferencesdialog.ui │ ├── burnconfigdialog.cpp │ ├── burnconfigdialog.h │ ├── burnconfigdialog.ui │ ├── cmake │ │ ├── FindLupdate.cmake │ │ ├── FindPhonon.cmake │ │ ├── FindSdl.cmake │ │ ├── FindXercesC.cmake │ │ └── FindXsd.cmake │ ├── companion.cpp │ ├── companion.desktop.in │ ├── companion.qrc │ ├── comparedialog.cpp │ ├── comparedialog.h │ ├── comparedialog.ui │ ├── constants.h │ ├── contributorsdialog.cpp │ ├── contributorsdialog.h │ ├── converteeprom.cpp │ ├── converteeprom.h │ ├── customdebug.h │ ├── customizesplashdialog.cpp │ ├── customizesplashdialog.h │ ├── customizesplashdialog.ui │ ├── downloaddialog.cpp │ ├── downloaddialog.h │ ├── downloaddialog.ui │ ├── eepromimportexport.h │ ├── eeprominterface.cpp │ ├── eeprominterface.h │ ├── file.cpp │ ├── file.h │ ├── firmwareinterface.cpp │ ├── firmwareinterface.h │ ├── firmwares │ │ ├── er9x │ │ │ ├── er9xeeprom.cpp │ │ │ ├── er9xeeprom.h │ │ │ ├── er9xinterface.cpp │ │ │ └── er9xinterface.h │ │ ├── ersky9x │ │ │ ├── ersky9xeeprom.cpp │ │ │ ├── ersky9xeeprom.h │ │ │ ├── ersky9xinterface.cpp │ │ │ └── ersky9xinterface.h │ │ ├── gruvin9x │ │ │ ├── gruvin9xeeprom.cpp │ │ │ ├── gruvin9xeeprom.h │ │ │ ├── gruvin9xinterface.cpp │ │ │ └── gruvin9xinterface.h │ │ ├── opentx │ │ │ ├── open9xGruvin9xeeprom.cpp │ │ │ ├── open9xGruvin9xeeprom.h │ │ │ ├── open9xSky9xeeprom.cpp │ │ │ ├── open9xSky9xeeprom.h │ │ │ ├── open9xStockeeprom.cpp │ │ │ ├── open9xStockeeprom.h │ │ │ ├── opentxeeprom.cpp │ │ │ ├── opentxeeprom.h │ │ │ ├── opentxinterface.cpp │ │ │ ├── opentxinterface.h │ │ │ └── simulator │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── opentxsimulator.cpp │ │ │ │ └── opentxsimulator.h │ │ └── th9x │ │ │ ├── th9xeeprom.cpp │ │ │ ├── th9xeeprom.h │ │ │ ├── th9xinterface.cpp │ │ │ └── th9xinterface.h │ ├── flasheepromdialog.cpp │ ├── flasheepromdialog.h │ ├── flasheepromdialog.ui │ ├── flashfirmwaredialog.cpp │ ├── flashfirmwaredialog.h │ ├── flashfirmwaredialog.ui │ ├── fusesdialog.cpp │ ├── fusesdialog.h │ ├── fusesdialog.ui │ ├── fwpreferencesdialog.cpp │ ├── fwpreferencesdialog.h │ ├── fwpreferencesdialog.ui │ ├── generaledit │ │ ├── CMakeLists.txt │ │ ├── calibration.cpp │ │ ├── calibration.h │ │ ├── generaledit.cpp │ │ ├── generaledit.h │ │ ├── generaledit.ui │ │ ├── generalsetup.cpp │ │ ├── generalsetup.h │ │ ├── generalsetup.ui │ │ ├── hardware.cpp │ │ ├── hardware.h │ │ ├── hardware.ui │ │ ├── trainer.cpp │ │ ├── trainer.h │ │ └── trainer.ui │ ├── helpers.cpp │ ├── helpers.h │ ├── helpers_html.cpp │ ├── helpers_html.h │ ├── hexinterface.cpp │ ├── hexinterface.h │ ├── htmldialog.ui │ ├── icon.ico │ ├── icon.png │ ├── icon.rc │ ├── images │ │ ├── .gitignore │ │ ├── 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 │ │ ├── companion-title.png │ │ ├── customize.png │ │ ├── iconmac.icns │ │ ├── library │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ ├── 00014.png │ │ │ ├── 00015.png │ │ │ ├── 00016.png │ │ │ ├── 00017.png │ │ │ ├── 00018.png │ │ │ ├── 00019.png │ │ │ ├── 00020.png │ │ │ ├── 00021.png │ │ │ ├── 00022.png │ │ │ ├── 00050.png │ │ │ ├── 00051.png │ │ │ ├── 00052.png │ │ │ ├── 00053.png │ │ │ ├── 00054.png │ │ │ ├── 00055.png │ │ │ ├── 00056.png │ │ │ ├── 00057.png │ │ │ ├── 00058.png │ │ │ ├── 00059.png │ │ │ ├── 00060.png │ │ │ ├── 00061.png │ │ │ ├── 00062.png │ │ │ ├── 00063.png │ │ │ ├── 00064.png │ │ │ ├── 00065.png │ │ │ ├── 00066.png │ │ │ ├── 00100.png │ │ │ ├── 00101.png │ │ │ ├── 00102.png │ │ │ ├── 00103.png │ │ │ ├── 00104.png │ │ │ ├── 00105.png │ │ │ ├── 00106.png │ │ │ ├── 00201.png │ │ │ ├── 00202.png │ │ │ ├── 00203.png │ │ │ ├── 00204.png │ │ │ ├── 00301.png │ │ │ ├── 00302.png │ │ │ ├── 00303.png │ │ │ ├── 00304.png │ │ │ ├── 00401.png │ │ │ ├── 00402.png │ │ │ ├── 00403.png │ │ │ ├── 00404.png │ │ │ ├── 00501.png │ │ │ ├── 10001.png │ │ │ ├── 10002.png │ │ │ ├── 10003.png │ │ │ ├── 10101.png │ │ │ ├── 10102.png │ │ │ ├── 10103.png │ │ │ ├── 10501.png │ │ │ ├── 10502.png │ │ │ ├── 10503.png │ │ │ ├── 10504.png │ │ │ ├── 10505.png │ │ │ ├── 10506.png │ │ │ ├── 10508.png │ │ │ ├── 10601.png │ │ │ ├── 10701.png │ │ │ ├── 10702.png │ │ │ ├── 10801.png │ │ │ └── 10802.png │ │ ├── linuxicons │ │ │ ├── 128x128 │ │ │ │ └── companion.png │ │ │ ├── 16x16 │ │ │ │ └── companion.png │ │ │ ├── 22x22 │ │ │ │ └── companion.png │ │ │ ├── 24x24 │ │ │ │ └── companion.png │ │ │ ├── 256x256 │ │ │ │ └── companion.png │ │ │ ├── 32x32 │ │ │ │ └── companion.png │ │ │ ├── 48x48 │ │ │ │ └── companion.png │ │ │ ├── 512x512 │ │ │ │ └── companion.png │ │ │ └── scalable │ │ │ │ └── companion.svg │ │ ├── maps.png │ │ ├── originals │ │ │ ├── 9CX.xcf │ │ │ ├── 9xdb-bl.xcf │ │ │ ├── 9xdb-gr.xcf │ │ │ ├── 9xdb-or.xcf │ │ │ ├── 9xdb-rd.xcf │ │ │ ├── 9xdb-yl.xcf │ │ │ ├── 9xdb.xcf │ │ │ ├── companion-title.xcf │ │ │ ├── customize.xcf │ │ │ ├── icons Classical │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.svg │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── switch_dir.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── icons Monochrome │ │ │ │ ├── add64.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left64.png │ │ │ │ ├── arrow-right64.png │ │ │ │ ├── changelog64.png │ │ │ │ ├── clear64.png │ │ │ │ ├── compare64.png │ │ │ │ ├── configure64.png │ │ │ │ ├── contributors64.png │ │ │ │ ├── copy64.png │ │ │ │ ├── currentmodel64.png │ │ │ │ ├── cut64.png │ │ │ │ ├── duplicate64.png │ │ │ │ ├── edit64.png │ │ │ │ ├── exit64.png │ │ │ │ ├── fuses64.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information64.png │ │ │ │ ├── library64.png │ │ │ │ ├── list64.png │ │ │ │ ├── logs64.png │ │ │ │ ├── movedown64.png │ │ │ │ ├── moveup64.png │ │ │ │ ├── new64.png │ │ │ │ ├── open64.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste64.png │ │ │ │ ├── print64.png │ │ │ │ ├── profiles64.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_2.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_eeprom_file_2.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── read_flash_2.png │ │ │ │ ├── recentdocument64.png │ │ │ │ ├── save64.png │ │ │ │ ├── saveas64.png │ │ │ │ ├── sdsync.svg │ │ │ │ ├── simulate64.png │ │ │ │ ├── txactionico.svg │ │ │ │ ├── update64.png │ │ │ │ ├── wizard64.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_2.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ ├── write_eeprom_file_2.png │ │ │ │ ├── write_flash.png │ │ │ │ └── write_flash_2.png │ │ │ ├── icons Yerico │ │ │ │ ├── add.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── contributors.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── play.png │ │ │ │ ├── stop.png │ │ │ │ ├── switch_dir.png │ │ │ │ ├── wizard.png │ │ │ │ ├── yerico_icons_16.svg │ │ │ │ ├── yerico_icons_24.svg │ │ │ │ ├── yerico_icons_32.svg │ │ │ │ ├── yerico_icons_48.svg │ │ │ │ └── yerico_icons_all.svg │ │ │ ├── logotypes │ │ │ │ ├── firmware_logo.xcf │ │ │ │ ├── old_opentx_companion_logo.odg │ │ │ │ ├── opentx_2_logo.png │ │ │ │ ├── opentx_2_logo.svg │ │ │ │ ├── opentx_companion_logo.png │ │ │ │ ├── opentx_companion_logo.svg │ │ │ │ ├── opentx_logo.png │ │ │ │ ├── opentx_logo.svg │ │ │ │ ├── opentx_logo_128x128.png │ │ │ │ ├── opentx_logo_16x16.png │ │ │ │ ├── opentx_logo_22x22.png │ │ │ │ ├── opentx_logo_24x24.png │ │ │ │ ├── opentx_logo_256x256.png │ │ │ │ ├── opentx_logo_32x32.png │ │ │ │ ├── opentx_logo_48x48.png │ │ │ │ ├── opentx_logo_512x512.png │ │ │ │ ├── opentx_logo_64x64.png │ │ │ │ └── opentx_logo_96x96.png │ │ │ ├── scripts │ │ │ │ ├── addblackoutline.sh │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── makeblue.sh │ │ │ │ └── makewhite.sh │ │ │ ├── splash.xcf │ │ │ ├── splash20 │ │ │ │ ├── splash-orig.png │ │ │ │ ├── splash.png │ │ │ │ ├── splashp.png │ │ │ │ ├── splashr.png │ │ │ │ └── splasht.png │ │ │ ├── splash21 │ │ │ │ └── splash21.svg │ │ │ ├── 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 │ │ ├── splash-9x.png │ │ ├── splash-9xr.png │ │ ├── splash-9xrpro.png │ │ ├── splash-taranis.png │ │ ├── taranison.png │ │ ├── track.png │ │ ├── track0.png │ │ ├── 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 │ │ ├── x9b0.png │ │ ├── x9l0.png │ │ ├── x9l1.png │ │ ├── x9l2.png │ │ ├── x9l3.png │ │ ├── x9l4.png │ │ ├── x9r0.png │ │ ├── x9r1.png │ │ ├── x9r2.png │ │ ├── x9r3.png │ │ ├── x9s0.png │ │ └── x9t0.png │ ├── imgpreferences.ui │ ├── logsdialog.cpp │ ├── logsdialog.h │ ├── logsdialog.ui │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mdichild.cpp │ ├── mdichild.h │ ├── mdichild.ui │ ├── modeledit │ │ ├── CMakeLists.txt │ │ ├── channels.cpp │ │ ├── channels.h │ │ ├── curves.cpp │ │ ├── curves.h │ │ ├── curves.ui │ │ ├── customfunctions.cpp │ │ ├── customfunctions.h │ │ ├── edge.cpp │ │ ├── edge.h │ │ ├── expodialog.cpp │ │ ├── expodialog.h │ │ ├── expodialog.ui │ │ ├── flightmode.ui │ │ ├── flightmodes.cpp │ │ ├── flightmodes.h │ │ ├── heli.cpp │ │ ├── heli.h │ │ ├── heli.ui │ │ ├── inputs.cpp │ │ ├── inputs.h │ │ ├── logicalswitches.cpp │ │ ├── logicalswitches.h │ │ ├── mixerdialog.cpp │ │ ├── mixerdialog.h │ │ ├── mixerdialog.ui │ │ ├── mixerslist.cpp │ │ ├── mixerslist.h │ │ ├── mixes.cpp │ │ ├── mixes.h │ │ ├── modeledit.cpp │ │ ├── modeledit.h │ │ ├── modeledit.ui │ │ ├── node.cpp │ │ ├── node.h │ │ ├── setup.cpp │ │ ├── setup.h │ │ ├── setup.ui │ │ ├── setup_module.ui │ │ ├── setup_timer.ui │ │ ├── telemetry.cpp │ │ ├── telemetry.h │ │ ├── telemetry.ui │ │ ├── telemetry_analog.ui │ │ ├── telemetry_customscreen.ui │ │ ├── telemetry_sensor.ui │ │ ├── templates.cpp │ │ └── templates.h │ ├── modelprinter.cpp │ ├── modelprinter.h │ ├── modelslist.cpp │ ├── modelslist.h │ ├── mountlist.cpp │ ├── mountlist.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 │ ├── progressdialog.cpp │ ├── progressdialog.h │ ├── progressdialog.ui │ ├── progresswidget.cpp │ ├── progresswidget.h │ ├── progresswidget.ui │ ├── qcustomplot │ │ ├── CMakeLists.txt │ │ ├── GPL.txt │ │ ├── changelog.txt │ │ ├── qcustomplot.cpp │ │ └── qcustomplot.h │ ├── qxtcommandoptions │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── cpl1.0.txt │ │ ├── lgpl-2.1.txt │ │ ├── qxtcommandoptions.cpp │ │ ├── qxtcommandoptions.h │ │ └── qxtglobal.h │ ├── radio.xsd │ ├── radiointerface.cpp │ ├── radiointerface.h │ ├── radionotfound.cpp │ ├── radionotfound.h │ ├── radionotfound.ui │ ├── releasenotesdialog.cpp │ ├── releasenotesdialog.h │ ├── releasenotesfirmwaredialog.cpp │ ├── releasenotesfirmwaredialog.h │ ├── shared │ │ ├── CMakeLists.txt │ │ ├── autocheckbox.h │ │ ├── autocombobox.h │ │ ├── autodoublespinbox.h │ │ ├── autohexspinbox.h │ │ ├── autolineedit.h │ │ ├── genericpanel.cpp │ │ ├── genericpanel.h │ │ ├── hexspinbox.cpp │ │ ├── hexspinbox.h │ │ ├── verticalscrollarea.cpp │ │ └── verticalscrollarea.h │ ├── simulation │ │ ├── CMakeLists.txt │ │ ├── cursorwidget.h │ │ ├── debugoutput.cpp │ │ ├── debugoutput.h │ │ ├── debugoutput.ui │ │ ├── joystick.cpp │ │ ├── joystick.h │ │ ├── joystickdialog.cpp │ │ ├── joystickdialog.h │ │ ├── joystickdialog.ui │ │ ├── lcdwidget.h │ │ ├── menuwidget.h │ │ ├── myqdial.h │ │ ├── myslider.h │ │ ├── simulatordialog-9x.ui │ │ ├── simulatordialog-taranis.ui │ │ ├── simulatordialog.cpp │ │ ├── simulatordialog.h │ │ ├── simulatorimport.h │ │ ├── simulatorinterface.cpp │ │ ├── simulatorinterface.h │ │ ├── telemetrysimu.cpp │ │ ├── telemetrysimu.h │ │ ├── telemetrysimu.ui │ │ ├── trainersimu.cpp │ │ ├── trainersimu.h │ │ ├── trainersimu.ui │ │ ├── xcursorwidget.h │ │ └── xmenuwidget.h │ ├── simulator.cpp │ ├── simulator.desktop.in │ ├── splash.h │ ├── splashlabel.h │ ├── splashlibrarydialog.cpp │ ├── splashlibrarydialog.h │ ├── splashlibrarydialog.ui │ ├── themes │ │ ├── classic │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── monoblue │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── monochrome │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── sdsync.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ ├── monowhite │ │ │ ├── 16 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 24 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ │ ├── add.png │ │ │ │ ├── apppreferences.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── changelog.png │ │ │ │ ├── clear.png │ │ │ │ ├── compare.png │ │ │ │ ├── configure.png │ │ │ │ ├── contributors.png │ │ │ │ ├── copy.png │ │ │ │ ├── currentmodel.png │ │ │ │ ├── cut.png │ │ │ │ ├── duplicate.png │ │ │ │ ├── edit.png │ │ │ │ ├── exit.png │ │ │ │ ├── fuses.png │ │ │ │ ├── fwpreferences.png │ │ │ │ ├── information.png │ │ │ │ ├── library.png │ │ │ │ ├── list.png │ │ │ │ ├── logs.png │ │ │ │ ├── movedown.png │ │ │ │ ├── moveup.png │ │ │ │ ├── new.png │ │ │ │ ├── open.png │ │ │ │ ├── paintbrush.png │ │ │ │ ├── paste.png │ │ │ │ ├── play.png │ │ │ │ ├── print.png │ │ │ │ ├── profiles.png │ │ │ │ ├── read_eeprom.png │ │ │ │ ├── read_eeprom_file.png │ │ │ │ ├── read_flash.png │ │ │ │ ├── recentdocument.png │ │ │ │ ├── save.png │ │ │ │ ├── saveas.png │ │ │ │ ├── simulate.png │ │ │ │ ├── stop.png │ │ │ │ ├── update.png │ │ │ │ ├── wizard.png │ │ │ │ ├── write_eeprom.png │ │ │ │ ├── write_eeprom_file.png │ │ │ │ └── write_flash.png │ │ └── yerico │ │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── 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 │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── apppreferences.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── changelog.png │ │ │ ├── clear.png │ │ │ ├── compare.png │ │ │ ├── configure.png │ │ │ ├── contributors.png │ │ │ ├── copy.png │ │ │ ├── currentmodel.png │ │ │ ├── cut.png │ │ │ ├── duplicate.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── fwpreferences.png │ │ │ ├── information.png │ │ │ ├── library.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── movedown.png │ │ │ ├── moveup.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paintbrush.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── profiles.png │ │ │ ├── read_eeprom.png │ │ │ ├── read_eeprom_file.png │ │ │ ├── read_flash.png │ │ │ ├── recentdocument.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── simulate.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── write_eeprom.png │ │ │ ├── write_eeprom_file.png │ │ │ └── write_flash.png │ ├── translations.qrc.in │ ├── translations │ │ ├── companion_cs.ts │ │ ├── companion_de.ts │ │ ├── companion_es.ts │ │ ├── companion_fi.ts │ │ ├── companion_fr.ts │ │ ├── companion_he.ts │ │ ├── companion_it.ts │ │ ├── companion_nl.ts │ │ ├── companion_pl.ts │ │ ├── companion_pt.ts │ │ ├── companion_ru.ts │ │ └── companion_sv.ts │ ├── version.h.in │ ├── warnings.h │ ├── wizarddata.cpp │ ├── wizarddata.h │ ├── wizarddialog.cpp │ ├── wizarddialog.h │ ├── xmlinterface.cpp │ └── xmlinterface.h └── targets │ ├── linux │ ├── 45-companion-taranis.rules │ └── 45-usbasp.rules │ ├── mac │ ├── libcrypto.1.0.0.dylib │ ├── libssl.1.0.0.dylib │ └── qt_menu.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ └── windows │ ├── FileAssociation.nsh │ ├── avrdude.conf │ ├── avrdude.exe │ ├── companion-msys.nsi.in │ ├── companion-vs.nsi.in │ ├── dfu-util.exe │ ├── libusb-1.0.dll │ ├── libusb0.dll │ ├── license.txt │ ├── simulator-vs.nsi.in │ └── winbuild.h ├── doc ├── Mega2560 │ ├── MEGA2560.sch │ ├── MEGA2560_Arduino_sch.pdf │ ├── MEGA2560_Listing.xls │ ├── MEGA2560_SCH.pdf │ └── MEGA2560_pcb.pdf └── lua-reference-guide.tex ├── jenkins ├── .gitignore ├── get-from-server.sh ├── nightly-21 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── update-repo.sh │ └── version.sh ├── release-20 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── release-lua.sh │ ├── release-voices.sh │ └── update-repo.sh ├── release-21 │ ├── release-all.sh │ ├── release-companion.sh │ ├── release-firmware.sh │ ├── release-lua.sh │ ├── release-voices.sh │ ├── update-repo.sh │ └── version.sh └── upload-to-server.sh ├── radio ├── .gitignore ├── data │ ├── MODELE24-2014-07-11-sport.log │ ├── MODELE24-2014-07-11.csv │ └── readme.txt ├── releasenotes.txt ├── src │ ├── .gitignore │ ├── Makefile │ ├── audio_arm.cpp │ ├── audio_arm.h │ ├── audio_avr.cpp │ ├── audio_avr.h │ ├── bin_allocator.cpp │ ├── bin_allocator.h │ ├── bitmaps │ │ ├── .gitignore │ │ ├── 9X │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── asterisk.xbm │ │ │ ├── splash.png │ │ │ └── splash.xbm │ │ ├── Taranis │ │ │ ├── .gitignore │ │ │ ├── about.png │ │ │ ├── asterisk.png │ │ │ ├── icons.png │ │ │ ├── lock.png │ │ │ ├── logo.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 │ │ └── sticks.xbm │ ├── bmp.cpp │ ├── buzzer.cpp │ ├── buzzer.h │ ├── cli.cpp │ ├── cli.h │ ├── crc16.cpp │ ├── curves.cpp │ ├── debug.cpp │ ├── debug.h │ ├── dump.cpp │ ├── dump.h │ ├── eeprom_common.cpp │ ├── eeprom_common.h │ ├── eeprom_conversions.cpp │ ├── eeprom_raw.cpp │ ├── eeprom_raw.h │ ├── eeprom_rlc.cpp │ ├── eeprom_rlc.h │ ├── fifo.h │ ├── fonts.h │ ├── fonts │ │ ├── .gitignore │ │ ├── sqt5 │ │ │ ├── font_04x06.png │ │ │ ├── font_05x07.png │ │ │ ├── font_05x07_B_compressed.png │ │ │ ├── font_05x07_avr.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.png │ │ │ ├── font_10x14_compressed.png │ │ │ ├── font_cz_04x06.png │ │ │ ├── font_cz_05x07.png │ │ │ ├── font_cz_08x10.png │ │ │ ├── font_cz_10x14.png │ │ │ ├── font_de_04x06.png │ │ │ ├── font_de_05x07.png │ │ │ ├── font_de_08x10.png │ │ │ ├── font_de_10x14.png │ │ │ ├── font_es_04x06.png │ │ │ ├── font_es_05x07.png │ │ │ ├── font_es_08x10.png │ │ │ ├── font_es_10x14.png │ │ │ ├── font_fi_04x06.png │ │ │ ├── font_fi_05x07.png │ │ │ ├── font_fi_08x10.png │ │ │ ├── font_fi_10x14.png │ │ │ ├── font_fr_04x06.png │ │ │ ├── font_fr_05x07.png │ │ │ ├── font_fr_08x10.png │ │ │ ├── font_fr_10x14.png │ │ │ ├── font_it_04x06.png │ │ │ ├── font_it_05x07.png │ │ │ ├── font_it_08x10.png │ │ │ ├── font_it_10x14.png │ │ │ ├── font_pl_04x06.png │ │ │ ├── font_pl_05x07.png │ │ │ ├── font_pl_08x10.png │ │ │ ├── font_pl_10x14.png │ │ │ ├── font_pt_04x06.png │ │ │ ├── font_pt_05x07.png │ │ │ ├── font_pt_08x10.png │ │ │ ├── font_pt_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ └── font_se_10x14.png │ │ └── std │ │ │ ├── font_03x05.png │ │ │ ├── font_04x06.png │ │ │ ├── font_04x06_extra.png │ │ │ ├── font_05x07.png │ │ │ ├── font_05x07_B_compressed.png │ │ │ ├── font_05x07_avr.png │ │ │ ├── font_05x07_extra.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.png │ │ │ ├── font_10x14_compressed.png │ │ │ ├── font_10x14_extra.png │ │ │ ├── font_22x38_num.png │ │ │ ├── font_cz_04x06.png │ │ │ ├── font_cz_05x07.png │ │ │ ├── font_cz_08x10.png │ │ │ ├── font_cz_10x14.png │ │ │ ├── font_de_04x06.png │ │ │ ├── font_de_05x07.png │ │ │ ├── font_de_08x10.png │ │ │ ├── font_de_10x14.png │ │ │ ├── font_es_04x06.png │ │ │ ├── font_es_05x07.png │ │ │ ├── font_es_08x10.png │ │ │ ├── font_es_10x14.png │ │ │ ├── font_fi_04x06.png │ │ │ ├── font_fi_05x07.png │ │ │ ├── font_fi_08x10.png │ │ │ ├── font_fi_10x14.png │ │ │ ├── font_fr_04x06.png │ │ │ ├── font_fr_05x07.png │ │ │ ├── font_fr_08x10.png │ │ │ ├── font_fr_10x14.png │ │ │ ├── font_it_04x06.png │ │ │ ├── font_it_05x07.png │ │ │ ├── font_it_08x10.png │ │ │ ├── font_it_10x14.png │ │ │ ├── font_pl_04x06.png │ │ │ ├── font_pl_05x07.png │ │ │ ├── font_pl_08x10.png │ │ │ ├── font_pl_10x14.png │ │ │ ├── font_pt_04x06.png │ │ │ ├── font_pt_05x07.png │ │ │ ├── font_pt_08x10.png │ │ │ ├── font_pt_10x14.png │ │ │ ├── font_se_04x06.png │ │ │ ├── font_se_05x07.png │ │ │ ├── font_se_08x10.png │ │ │ └── font_se_10x14.png │ ├── functions.cpp │ ├── gui │ │ ├── 9X │ │ │ ├── fonts.cpp │ │ │ ├── gui.h │ │ │ ├── helpers.cpp │ │ │ ├── lcd.cpp │ │ │ ├── lcd.h │ │ │ ├── menu_general.cpp │ │ │ ├── menu_general_calib.cpp │ │ │ ├── menu_general_diaganas.cpp │ │ │ ├── menu_general_diagkeys.cpp │ │ │ ├── menu_general_hardware.cpp │ │ │ ├── menu_general_sdmanager.cpp │ │ │ ├── menu_general_setup.cpp │ │ │ ├── menu_general_trainer.cpp │ │ │ ├── menu_general_version.cpp │ │ │ ├── menu_model.cpp │ │ │ ├── menu_model_curves.cpp │ │ │ ├── menu_model_custom_functions.cpp │ │ │ ├── menu_model_flightmodes.cpp │ │ │ ├── menu_model_heli.cpp │ │ │ ├── menu_model_inputs_mixes.cpp │ │ │ ├── menu_model_limits.cpp │ │ │ ├── menu_model_logical_switches.cpp │ │ │ ├── menu_model_select.cpp │ │ │ ├── menu_model_setup.cpp │ │ │ ├── menu_model_telemetry.cpp │ │ │ ├── menu_model_templates.cpp │ │ │ ├── menus.cpp │ │ │ ├── menus.h │ │ │ ├── navigation.cpp │ │ │ ├── popups.cpp │ │ │ ├── splash.cpp │ │ │ ├── view_about.cpp │ │ │ ├── view_main.cpp │ │ │ ├── view_mavlink.cpp │ │ │ ├── view_mavlink.h │ │ │ ├── view_statistics.cpp │ │ │ ├── view_telemetry.cpp │ │ │ ├── view_text.cpp │ │ │ └── widgets.cpp │ │ ├── Taranis │ │ │ ├── fonts.cpp │ │ │ ├── gui.h │ │ │ ├── helpers.cpp │ │ │ ├── lcd.cpp │ │ │ ├── lcd.h │ │ │ ├── menu_general.cpp │ │ │ ├── menu_general_calib.cpp │ │ │ ├── menu_general_diaganas.cpp │ │ │ ├── menu_general_diagkeys.cpp │ │ │ ├── menu_general_hardware.cpp │ │ │ ├── menu_general_sdmanager.cpp │ │ │ ├── menu_general_setup.cpp │ │ │ ├── menu_general_trainer.cpp │ │ │ ├── menu_general_version.cpp │ │ │ ├── menu_model.cpp │ │ │ ├── menu_model_curves.cpp │ │ │ ├── menu_model_custom_functions.cpp │ │ │ ├── menu_model_custom_scripts.cpp │ │ │ ├── menu_model_flightmodes.cpp │ │ │ ├── menu_model_gvars.cpp │ │ │ ├── menu_model_heli.cpp │ │ │ ├── menu_model_inputs_mixes.cpp │ │ │ ├── menu_model_limits.cpp │ │ │ ├── menu_model_logical_switches.cpp │ │ │ ├── menu_model_select.cpp │ │ │ ├── menu_model_setup.cpp │ │ │ ├── menu_model_telemetry.cpp │ │ │ ├── menus.cpp │ │ │ ├── menus.h │ │ │ ├── navigation.cpp │ │ │ ├── popups.cpp │ │ │ ├── splash.cpp │ │ │ ├── view_about.cpp │ │ │ ├── view_channels.cpp │ │ │ ├── view_main.cpp │ │ │ ├── view_statistics.cpp │ │ │ ├── view_telemetry.cpp │ │ │ ├── view_text.cpp │ │ │ └── widgets.cpp │ │ └── gui.h │ ├── haptic.cpp │ ├── haptic.h │ ├── keys.cpp │ ├── keys.h │ ├── loadboot.cpp │ ├── logs.cpp │ ├── lua │ │ ├── api_general.cpp │ │ ├── api_lcd.cpp │ │ ├── api_model.cpp │ │ ├── interface.cpp │ │ └── lua_api.h │ ├── main_arm.cpp │ ├── main_avr.cpp │ ├── maths.cpp │ ├── mixer.cpp │ ├── myeeprom.h │ ├── opentx.cpp │ ├── opentx.h │ ├── pgmtypes.h │ ├── pulses │ │ ├── crossfire.cpp │ │ ├── dsm2_arm.cpp │ │ ├── ppm_arm.cpp │ │ ├── pulses.h │ │ ├── pulses_arm.cpp │ │ ├── pulses_arm.h │ │ ├── pulses_avr.cpp │ │ ├── pulses_avr.h │ │ └── pxx_arm.cpp │ ├── pwr.h │ ├── rtc.cpp │ ├── rtc.h │ ├── sbus.cpp │ ├── sbus.h │ ├── sdcard.cpp │ ├── sdcard.h │ ├── serial.cpp │ ├── serial.h │ ├── simu.cpp │ ├── stamp.cpp │ ├── strhelpers.cpp │ ├── switches.cpp │ ├── syscalls.c │ ├── targets │ │ ├── common_avr │ │ │ ├── adc_driver.cpp │ │ │ ├── board_avr.h │ │ │ ├── serial_driver.cpp │ │ │ ├── serial_driver.h │ │ │ └── telemetry_driver.cpp │ │ ├── gruvin9x │ │ │ ├── board_gruvin9x.cpp │ │ │ ├── board_gruvin9x.h │ │ │ ├── diskio.cpp │ │ │ ├── fuses_2561.txt │ │ │ ├── rtc_driver.cpp │ │ │ ├── somo14d.cpp │ │ │ └── somo14d.h │ │ ├── mega2560 │ │ │ ├── 00readme.txt │ │ │ ├── board_mega2560.cpp │ │ │ ├── board_mega2560.h │ │ │ └── board_mega2560_stk500v2bootloader.c │ │ ├── simu │ │ │ ├── simpgmspace.cpp │ │ │ └── simpgmspace.h │ │ ├── sky9x │ │ │ ├── AT91SAM3S2.h │ │ │ ├── AT91SAM3S4.h │ │ │ ├── MEDSdcard.c │ │ │ ├── Media.h │ │ │ ├── adc_driver.cpp │ │ │ ├── audio_driver.cpp │ │ │ ├── audio_driver.h │ │ │ ├── bluetooth.cpp │ │ │ ├── board.h │ │ │ ├── board_lowlevel.c │ │ │ ├── board_sky9x.cpp │ │ │ ├── board_sky9x.h │ │ │ ├── buzzer_driver.cpp │ │ │ ├── chip.h │ │ │ ├── coproc_driver.cpp │ │ │ ├── core_cm3.c │ │ │ ├── core_cm3.h │ │ │ ├── crt.c │ │ │ ├── diskio.cpp │ │ │ ├── eeprom_driver.cpp │ │ │ ├── flash_driver.cpp │ │ │ ├── haptic_driver.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── massstorage.cpp │ │ │ ├── pulses_driver.cpp │ │ │ ├── pwr_driver.cpp │ │ │ ├── rotenc_driver.cpp │ │ │ ├── rtc_driver.cpp │ │ │ ├── sam3s2c_flash.ld │ │ │ ├── sam3s4c_flash.ld │ │ │ ├── sam3s8c_flash.ld │ │ │ ├── sdcard_driver.cpp │ │ │ ├── serial2_driver.cpp │ │ │ ├── telemetry_driver.cpp │ │ │ ├── usb │ │ │ │ ├── common │ │ │ │ │ ├── core │ │ │ │ │ │ ├── USBConfigurationDescriptor.c │ │ │ │ │ │ ├── USBConfigurationDescriptor.h │ │ │ │ │ │ ├── USBDeviceDescriptor.h │ │ │ │ │ │ ├── USBDeviceQualifierDescriptor.h │ │ │ │ │ │ ├── USBEndpointDescriptor.c │ │ │ │ │ │ ├── USBEndpointDescriptor.h │ │ │ │ │ │ ├── USBFeatureRequest.c │ │ │ │ │ │ ├── USBFeatureRequest.h │ │ │ │ │ │ ├── USBGenericDescriptor.c │ │ │ │ │ │ ├── USBGenericDescriptor.h │ │ │ │ │ │ ├── USBGenericRequest.c │ │ │ │ │ │ ├── USBGenericRequest.h │ │ │ │ │ │ ├── USBGetDescriptorRequest.c │ │ │ │ │ │ ├── USBGetDescriptorRequest.h │ │ │ │ │ │ ├── USBInterfaceAssociationDescriptor.h │ │ │ │ │ │ ├── USBInterfaceDescriptor.h │ │ │ │ │ │ ├── USBInterfaceRequest.c │ │ │ │ │ │ ├── USBInterfaceRequest.h │ │ │ │ │ │ ├── USBIrqHandler.c │ │ │ │ │ │ ├── USBIrqHandler.h │ │ │ │ │ │ ├── USBSetAddressRequest.c │ │ │ │ │ │ ├── USBSetAddressRequest.h │ │ │ │ │ │ ├── USBSetConfigurationRequest.c │ │ │ │ │ │ ├── USBSetConfigurationRequest.h │ │ │ │ │ │ └── USBStringDescriptor.h │ │ │ │ │ └── massstorage │ │ │ │ │ │ ├── MSDeviceDescriptor.h │ │ │ │ │ │ └── MSInterfaceDescriptor.h │ │ │ │ └── device │ │ │ │ │ ├── core │ │ │ │ │ ├── USBD.h │ │ │ │ │ ├── USBDDriver.c │ │ │ │ │ ├── USBDDriver.h │ │ │ │ │ ├── USBDDriverDescriptors.h │ │ │ │ │ └── USBD_UDP.c │ │ │ │ │ └── massstorage │ │ │ │ │ ├── MSD.h │ │ │ │ │ ├── MSDDStateMachine.c │ │ │ │ │ ├── MSDDStateMachine.h │ │ │ │ │ ├── MSDDriver.c │ │ │ │ │ ├── MSDDriver.h │ │ │ │ │ ├── MSDDriverDescriptors.c │ │ │ │ │ ├── MSDDriverDescriptors.h │ │ │ │ │ ├── MSDIOFifo.h │ │ │ │ │ ├── MSDLun.c │ │ │ │ │ ├── MSDLun.h │ │ │ │ │ ├── SBC.h │ │ │ │ │ ├── SBCMethods.c │ │ │ │ │ └── SBCMethods.h │ │ │ └── vectors_sam3s.c │ │ ├── stlink-v2.cfg │ │ ├── stm32f2x_stlink.cfg │ │ ├── stm32f4x_stlink.cfg │ │ ├── stock │ │ │ ├── board_stock.cpp │ │ │ ├── board_stock.h │ │ │ ├── lcd_driver.cpp │ │ │ ├── voice.cpp │ │ │ └── voice.h │ │ └── taranis │ │ │ ├── adc_driver.cpp │ │ │ ├── aspi.c │ │ │ ├── aspi.h │ │ │ ├── audio_driver.cpp │ │ │ ├── bluetooth_driver.cpp │ │ │ ├── board_taranis.cpp │ │ │ ├── board_taranis.h │ │ │ ├── bootloader │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── boot.cpp │ │ │ └── init.c │ │ │ ├── configure_pins.cpp │ │ │ ├── delays.c │ │ │ ├── diskio.cpp │ │ │ ├── flash_driver.cpp │ │ │ ├── hal.h │ │ │ ├── haptic_driver.cpp │ │ │ ├── i2c_driver.cpp │ │ │ ├── keys_driver.cpp │ │ │ ├── lcd_driver.cpp │ │ │ ├── pulses_driver.cpp │ │ │ ├── pwr_driver.c │ │ │ ├── rtc_driver.cpp │ │ │ ├── serial2_driver.cpp │ │ │ ├── stm32_ramboot.ld │ │ │ ├── stm32f2_flash.ld │ │ │ ├── stm32f4_flash.ld │ │ │ ├── system_stm32f2xx.c │ │ │ ├── system_stm32f4xx.c │ │ │ ├── telemetry_driver.cpp │ │ │ ├── top_lcd_driver.cpp │ │ │ ├── trainer_driver.cpp │ │ │ ├── usb_bsp.c │ │ │ ├── usb_conf.h │ │ │ ├── usb_driver.c │ │ │ ├── usbd_cdc.cpp │ │ │ ├── usbd_conf.h │ │ │ ├── usbd_desc.c │ │ │ ├── usbd_desc.h │ │ │ ├── usbd_hid_joystick.c │ │ │ ├── usbd_storage_msd.cpp │ │ │ └── usbd_usr.cpp │ ├── tasks_arm.cpp │ ├── tasks_arm.h │ ├── telemetry │ │ ├── ardupilot.cpp │ │ ├── ardupilot.h │ │ ├── frsky.cpp │ │ ├── frsky.h │ │ ├── frsky_d.cpp │ │ ├── frsky_d_arm.cpp │ │ ├── frsky_sport.cpp │ │ ├── jeti.cpp │ │ ├── jeti.h │ │ ├── mavlink.cpp │ │ ├── mavlink.h │ │ ├── nmea.cpp │ │ ├── nmea.h │ │ ├── telemetry.cpp │ │ └── telemetry.h │ ├── templates.cpp │ ├── templates.h │ ├── tests │ │ ├── 1b_39x32.bmp │ │ ├── 1b_6x32.bmp │ │ ├── 4b_20x20.bmp │ │ ├── 4b_31x31.bmp │ │ ├── 4b_7x32.bmp │ │ ├── SmlsizeDecimalPoint_128x64.png │ │ ├── SmlsizeDecimalPoint_212x64.png │ │ ├── big_numbers_128x64.png │ │ ├── big_numbers_212x64.png │ │ ├── bmpwrapping_212x64.png │ │ ├── crossfire.cpp │ │ ├── dblsize_128x64.png │ │ ├── dblsize_212x64.png │ │ ├── dblsize_bottom_right_128x64.png │ │ ├── dblsize_bottom_right_212x64.png │ │ ├── drawswitch_212x64.png │ │ ├── eeprom.cpp │ │ ├── frsky.cpp │ │ ├── gtests.cpp │ │ ├── gtests.h │ │ ├── invers_0_0_128x64.png │ │ ├── invers_0_0_212x64.png │ │ ├── invers_0_1_128x64.png │ │ ├── invers_0_1_212x64.png │ │ ├── lcd.cpp │ │ ├── lcd_bmpLoadAndDisplay_212x64.png │ │ ├── lcd_hlineStip_212x64.png │ │ ├── lcd_line_212x64.png │ │ ├── lcd_vlineStip_212x64.png │ │ ├── line_wrap_128x64.png │ │ ├── line_wrap_212x64.png │ │ ├── lua.cpp │ │ ├── midsize_128x64.png │ │ ├── midsize_212x64.png │ │ ├── mixer.cpp │ │ ├── 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_putsstridx_128x64.png │ │ ├── smlsize_putsstridx_212x64.png │ │ ├── stdsize_128x64.png │ │ ├── stdsize_212x64.png │ │ ├── switches.cpp │ │ ├── timers.cpp │ │ ├── unsigned_128x64.png │ │ ├── unsigned_212x64.png │ │ ├── vline_128x64.png │ │ ├── vline_212x64.png │ │ ├── vline_lt0_128x64.png │ │ └── vline_lt0_212x64.png │ ├── thirdparty │ │ ├── CoOS │ │ │ ├── OsConfig.h │ │ │ ├── kernel │ │ │ │ ├── CoOS.h │ │ │ │ ├── OsCore.h │ │ │ │ ├── OsError.h │ │ │ │ ├── OsEvent.h │ │ │ │ ├── OsFlag.h │ │ │ │ ├── OsKernelHeap.h │ │ │ │ ├── OsMM.h │ │ │ │ ├── OsMutex.h │ │ │ │ ├── OsQueue.h │ │ │ │ ├── OsServiceReq.h │ │ │ │ ├── OsTask.h │ │ │ │ ├── OsTime.h │ │ │ │ ├── OsTimer.h │ │ │ │ ├── coocox.h │ │ │ │ ├── core.c │ │ │ │ ├── event.c │ │ │ │ ├── flag.c │ │ │ │ ├── hook.c │ │ │ │ ├── kernelHeap.c │ │ │ │ ├── mbox.c │ │ │ │ ├── mm.c │ │ │ │ ├── mutex.c │ │ │ │ ├── queue.c │ │ │ │ ├── sem.c │ │ │ │ ├── serviceReq.c │ │ │ │ ├── task.c │ │ │ │ ├── time.c │ │ │ │ ├── timer.c │ │ │ │ ├── utility.c │ │ │ │ └── utility.h │ │ │ └── portable │ │ │ │ ├── GCC │ │ │ │ └── port.c │ │ │ │ ├── OsArch.h │ │ │ │ └── arch.c │ │ ├── FatFs │ │ │ ├── 00readme.txt │ │ │ ├── diskio.h │ │ │ ├── fattime.c │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── integer.h │ │ │ └── option │ │ │ │ ├── cc932.c │ │ │ │ ├── cc936.c │ │ │ │ ├── cc949.c │ │ │ │ ├── cc950.c │ │ │ │ ├── ccsbcs.c │ │ │ │ ├── syscall.c │ │ │ │ └── unicode.c │ │ ├── GCS_MAVLink │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include_v1.0 │ │ │ │ ├── ardupilotmega │ │ │ │ │ ├── ardupilotmega.h │ │ │ │ │ ├── mavlink.h │ │ │ │ │ ├── mavlink_msg_ahrs.h │ │ │ │ │ ├── mavlink_msg_ap_adc.h │ │ │ │ │ ├── mavlink_msg_data16.h │ │ │ │ │ ├── mavlink_msg_data32.h │ │ │ │ │ ├── mavlink_msg_data64.h │ │ │ │ │ ├── mavlink_msg_data96.h │ │ │ │ │ ├── mavlink_msg_digicam_configure.h │ │ │ │ │ ├── mavlink_msg_digicam_control.h │ │ │ │ │ ├── mavlink_msg_fence_fetch_point.h │ │ │ │ │ ├── mavlink_msg_fence_point.h │ │ │ │ │ ├── mavlink_msg_fence_status.h │ │ │ │ │ ├── mavlink_msg_hwstatus.h │ │ │ │ │ ├── mavlink_msg_limits_status.h │ │ │ │ │ ├── mavlink_msg_meminfo.h │ │ │ │ │ ├── mavlink_msg_mount_configure.h │ │ │ │ │ ├── mavlink_msg_mount_control.h │ │ │ │ │ ├── mavlink_msg_mount_status.h │ │ │ │ │ ├── mavlink_msg_radio.h │ │ │ │ │ ├── mavlink_msg_rangefinder.h │ │ │ │ │ ├── mavlink_msg_sensor_offsets.h │ │ │ │ │ ├── mavlink_msg_set_mag_offsets.h │ │ │ │ │ ├── mavlink_msg_simstate.h │ │ │ │ │ ├── mavlink_msg_wind.h │ │ │ │ │ ├── testsuite.h │ │ │ │ │ └── version.h │ │ │ │ ├── checksum.h │ │ │ │ ├── common │ │ │ │ │ ├── common.h │ │ │ │ │ ├── mavlink.h │ │ │ │ │ ├── mavlink_msg_attitude.h │ │ │ │ │ ├── mavlink_msg_attitude_quaternion.h │ │ │ │ │ ├── mavlink_msg_auth_key.h │ │ │ │ │ ├── mavlink_msg_battery_status.h │ │ │ │ │ ├── mavlink_msg_change_operator_control.h │ │ │ │ │ ├── mavlink_msg_change_operator_control_ack.h │ │ │ │ │ ├── mavlink_msg_command_ack.h │ │ │ │ │ ├── mavlink_msg_command_long.h │ │ │ │ │ ├── mavlink_msg_data_stream.h │ │ │ │ │ ├── mavlink_msg_debug.h │ │ │ │ │ ├── mavlink_msg_debug_vect.h │ │ │ │ │ ├── mavlink_msg_file_transfer_dir_list.h │ │ │ │ │ ├── mavlink_msg_file_transfer_res.h │ │ │ │ │ ├── mavlink_msg_file_transfer_start.h │ │ │ │ │ ├── mavlink_msg_global_position_int.h │ │ │ │ │ ├── mavlink_msg_global_position_setpoint_int.h │ │ │ │ │ ├── mavlink_msg_global_vision_position_estimate.h │ │ │ │ │ ├── mavlink_msg_gps_global_origin.h │ │ │ │ │ ├── mavlink_msg_gps_raw_int.h │ │ │ │ │ ├── mavlink_msg_gps_status.h │ │ │ │ │ ├── mavlink_msg_heartbeat.h │ │ │ │ │ ├── mavlink_msg_highres_imu.h │ │ │ │ │ ├── mavlink_msg_hil_controls.h │ │ │ │ │ ├── mavlink_msg_hil_gps.h │ │ │ │ │ ├── mavlink_msg_hil_optical_flow.h │ │ │ │ │ ├── mavlink_msg_hil_rc_inputs_raw.h │ │ │ │ │ ├── mavlink_msg_hil_sensor.h │ │ │ │ │ ├── mavlink_msg_hil_state.h │ │ │ │ │ ├── mavlink_msg_hil_state_quaternion.h │ │ │ │ │ ├── mavlink_msg_local_position_ned.h │ │ │ │ │ ├── mavlink_msg_local_position_ned_system_global_offset.h │ │ │ │ │ ├── mavlink_msg_local_position_setpoint.h │ │ │ │ │ ├── mavlink_msg_manual_control.h │ │ │ │ │ ├── mavlink_msg_manual_setpoint.h │ │ │ │ │ ├── mavlink_msg_memory_vect.h │ │ │ │ │ ├── mavlink_msg_mission_ack.h │ │ │ │ │ ├── mavlink_msg_mission_clear_all.h │ │ │ │ │ ├── mavlink_msg_mission_count.h │ │ │ │ │ ├── mavlink_msg_mission_current.h │ │ │ │ │ ├── mavlink_msg_mission_item.h │ │ │ │ │ ├── mavlink_msg_mission_item_reached.h │ │ │ │ │ ├── mavlink_msg_mission_request.h │ │ │ │ │ ├── mavlink_msg_mission_request_list.h │ │ │ │ │ ├── mavlink_msg_mission_request_partial_list.h │ │ │ │ │ ├── mavlink_msg_mission_set_current.h │ │ │ │ │ ├── mavlink_msg_mission_write_partial_list.h │ │ │ │ │ ├── mavlink_msg_named_value_float.h │ │ │ │ │ ├── mavlink_msg_named_value_int.h │ │ │ │ │ ├── mavlink_msg_nav_controller_output.h │ │ │ │ │ ├── mavlink_msg_omnidirectional_flow.h │ │ │ │ │ ├── mavlink_msg_optical_flow.h │ │ │ │ │ ├── mavlink_msg_param_request_list.h │ │ │ │ │ ├── mavlink_msg_param_request_read.h │ │ │ │ │ ├── mavlink_msg_param_set.h │ │ │ │ │ ├── mavlink_msg_param_value.h │ │ │ │ │ ├── mavlink_msg_ping.h │ │ │ │ │ ├── mavlink_msg_radio_status.h │ │ │ │ │ ├── mavlink_msg_raw_imu.h │ │ │ │ │ ├── mavlink_msg_raw_pressure.h │ │ │ │ │ ├── mavlink_msg_rc_channels_override.h │ │ │ │ │ ├── mavlink_msg_rc_channels_raw.h │ │ │ │ │ ├── mavlink_msg_rc_channels_scaled.h │ │ │ │ │ ├── mavlink_msg_request_data_stream.h │ │ │ │ │ ├── mavlink_msg_roll_pitch_yaw_rates_thrust_setpoint.h │ │ │ │ │ ├── mavlink_msg_roll_pitch_yaw_speed_thrust_setpoint.h │ │ │ │ │ ├── mavlink_msg_roll_pitch_yaw_thrust_setpoint.h │ │ │ │ │ ├── mavlink_msg_safety_allowed_area.h │ │ │ │ │ ├── mavlink_msg_safety_set_allowed_area.h │ │ │ │ │ ├── mavlink_msg_scaled_imu.h │ │ │ │ │ ├── mavlink_msg_scaled_pressure.h │ │ │ │ │ ├── mavlink_msg_servo_output_raw.h │ │ │ │ │ ├── mavlink_msg_set_global_position_setpoint_int.h │ │ │ │ │ ├── mavlink_msg_set_gps_global_origin.h │ │ │ │ │ ├── mavlink_msg_set_local_position_setpoint.h │ │ │ │ │ ├── mavlink_msg_set_mode.h │ │ │ │ │ ├── mavlink_msg_set_quad_motors_setpoint.h │ │ │ │ │ ├── mavlink_msg_set_quad_swarm_led_roll_pitch_yaw_thrust.h │ │ │ │ │ ├── mavlink_msg_set_quad_swarm_roll_pitch_yaw_thrust.h │ │ │ │ │ ├── mavlink_msg_set_roll_pitch_yaw_speed_thrust.h │ │ │ │ │ ├── mavlink_msg_set_roll_pitch_yaw_thrust.h │ │ │ │ │ ├── mavlink_msg_setpoint_6dof.h │ │ │ │ │ ├── mavlink_msg_setpoint_8dof.h │ │ │ │ │ ├── mavlink_msg_sim_state.h │ │ │ │ │ ├── mavlink_msg_state_correction.h │ │ │ │ │ ├── mavlink_msg_statustext.h │ │ │ │ │ ├── mavlink_msg_sys_status.h │ │ │ │ │ ├── mavlink_msg_system_time.h │ │ │ │ │ ├── mavlink_msg_vfr_hud.h │ │ │ │ │ ├── mavlink_msg_vicon_position_estimate.h │ │ │ │ │ ├── mavlink_msg_vision_position_estimate.h │ │ │ │ │ ├── mavlink_msg_vision_speed_estimate.h │ │ │ │ │ ├── testsuite.h │ │ │ │ │ └── version.h │ │ │ │ ├── mavlink_conversions.h │ │ │ │ ├── mavlink_helpers.h │ │ │ │ ├── mavlink_protobuf_manager.hpp │ │ │ │ ├── mavlink_types.h │ │ │ │ └── protocol.h │ │ │ ├── message_definitions_v1.0 │ │ │ │ ├── ardupilotmega.xml │ │ │ │ ├── autoquad.xml │ │ │ │ ├── common.xml │ │ │ │ ├── matrixpilot.xml │ │ │ │ ├── minimal.xml │ │ │ │ ├── pixhawk.proto │ │ │ │ ├── pixhawk.xml │ │ │ │ ├── sensesoar.xml │ │ │ │ ├── slugs.xml │ │ │ │ ├── test.xml │ │ │ │ └── ualberta.xml │ │ │ └── sync │ │ ├── Lua │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── contents.html │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── luac.1 │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ ├── osi-certified-72x60.png │ │ │ │ └── readme.html │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lbitlib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lrotable.c │ │ │ │ ├── lrotable.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ ├── STM32F2xx_StdPeriph_Lib_V1.1.0 │ │ │ └── Libraries │ │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F2xx │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f2xx.h │ │ │ │ │ │ └── system_stm32f2xx.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ └── gcc_ride7 │ │ │ │ │ │ └── startup_stm32f2xx.s │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ └── core_cmInstr.h │ │ │ │ └── STM32F2xx_StdPeriph_Driver │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f2xx_adc.h │ │ │ │ ├── stm32f2xx_can.h │ │ │ │ ├── stm32f2xx_crc.h │ │ │ │ ├── stm32f2xx_cryp.h │ │ │ │ ├── stm32f2xx_dac.h │ │ │ │ ├── stm32f2xx_dbgmcu.h │ │ │ │ ├── stm32f2xx_dcmi.h │ │ │ │ ├── stm32f2xx_dma.h │ │ │ │ ├── stm32f2xx_exti.h │ │ │ │ ├── stm32f2xx_flash.h │ │ │ │ ├── stm32f2xx_fsmc.h │ │ │ │ ├── stm32f2xx_gpio.h │ │ │ │ ├── stm32f2xx_hash.h │ │ │ │ ├── stm32f2xx_i2c.h │ │ │ │ ├── stm32f2xx_iwdg.h │ │ │ │ ├── stm32f2xx_pwr.h │ │ │ │ ├── stm32f2xx_rcc.h │ │ │ │ ├── stm32f2xx_rng.h │ │ │ │ ├── stm32f2xx_rtc.h │ │ │ │ ├── stm32f2xx_sdio.h │ │ │ │ ├── stm32f2xx_spi.h │ │ │ │ ├── stm32f2xx_syscfg.h │ │ │ │ ├── stm32f2xx_tim.h │ │ │ │ ├── stm32f2xx_usart.h │ │ │ │ └── stm32f2xx_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f2xx_adc.c │ │ │ │ ├── stm32f2xx_can.c │ │ │ │ ├── stm32f2xx_crc.c │ │ │ │ ├── stm32f2xx_cryp.c │ │ │ │ ├── stm32f2xx_cryp_aes.c │ │ │ │ ├── stm32f2xx_cryp_des.c │ │ │ │ ├── stm32f2xx_cryp_tdes.c │ │ │ │ ├── stm32f2xx_dac.c │ │ │ │ ├── stm32f2xx_dbgmcu.c │ │ │ │ ├── stm32f2xx_dcmi.c │ │ │ │ ├── stm32f2xx_dma.c │ │ │ │ ├── stm32f2xx_exti.c │ │ │ │ ├── stm32f2xx_flash.c │ │ │ │ ├── stm32f2xx_fsmc.c │ │ │ │ ├── stm32f2xx_gpio.c │ │ │ │ ├── stm32f2xx_hash.c │ │ │ │ ├── stm32f2xx_hash_md5.c │ │ │ │ ├── stm32f2xx_hash_sha1.c │ │ │ │ ├── stm32f2xx_i2c.c │ │ │ │ ├── stm32f2xx_iwdg.c │ │ │ │ ├── stm32f2xx_pwr.c │ │ │ │ ├── stm32f2xx_rcc.c │ │ │ │ ├── stm32f2xx_rng.c │ │ │ │ ├── stm32f2xx_rtc.c │ │ │ │ ├── stm32f2xx_sdio.c │ │ │ │ ├── stm32f2xx_spi.c │ │ │ │ ├── stm32f2xx_syscfg.c │ │ │ │ ├── stm32f2xx_tim.c │ │ │ │ ├── stm32f2xx_usart.c │ │ │ │ └── stm32f2xx_wwdg.c │ │ ├── STM32F4xx_DSP_StdPeriph_Lib_V1.4.0 │ │ │ └── Libraries │ │ │ │ ├── CMSIS │ │ │ │ ├── Device │ │ │ │ │ └── ST │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ ├── Include │ │ │ │ │ │ ├── stm32f4xx.h │ │ │ │ │ │ └── system_stm32f4xx.h │ │ │ │ │ │ └── Source │ │ │ │ │ │ └── Templates │ │ │ │ │ │ └── gcc_ride7 │ │ │ │ │ │ └── startup_stm32f40_41xxx.s │ │ │ │ └── Include │ │ │ │ │ ├── arm_common_tables.h │ │ │ │ │ ├── arm_const_structs.h │ │ │ │ │ ├── arm_math.h │ │ │ │ │ ├── core_cm0.h │ │ │ │ │ ├── core_cm0plus.h │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ ├── core_cm4.h │ │ │ │ │ ├── core_cm4_simd.h │ │ │ │ │ ├── core_cmFunc.h │ │ │ │ │ ├── core_cmInstr.h │ │ │ │ │ ├── core_sc000.h │ │ │ │ │ └── core_sc300.h │ │ │ │ └── STM32F4xx_StdPeriph_Driver │ │ │ │ ├── inc │ │ │ │ ├── misc.h │ │ │ │ ├── stm32f4xx_adc.h │ │ │ │ ├── stm32f4xx_can.h │ │ │ │ ├── stm32f4xx_crc.h │ │ │ │ ├── stm32f4xx_cryp.h │ │ │ │ ├── stm32f4xx_dac.h │ │ │ │ ├── stm32f4xx_dbgmcu.h │ │ │ │ ├── stm32f4xx_dcmi.h │ │ │ │ ├── stm32f4xx_dma.h │ │ │ │ ├── stm32f4xx_dma2d.h │ │ │ │ ├── stm32f4xx_exti.h │ │ │ │ ├── stm32f4xx_flash.h │ │ │ │ ├── stm32f4xx_flash_ramfunc.h │ │ │ │ ├── stm32f4xx_fmc.h │ │ │ │ ├── stm32f4xx_fsmc.h │ │ │ │ ├── stm32f4xx_gpio.h │ │ │ │ ├── stm32f4xx_hash.h │ │ │ │ ├── stm32f4xx_i2c.h │ │ │ │ ├── stm32f4xx_iwdg.h │ │ │ │ ├── stm32f4xx_ltdc.h │ │ │ │ ├── stm32f4xx_pwr.h │ │ │ │ ├── stm32f4xx_rcc.h │ │ │ │ ├── stm32f4xx_rng.h │ │ │ │ ├── stm32f4xx_rtc.h │ │ │ │ ├── stm32f4xx_sai.h │ │ │ │ ├── stm32f4xx_sdio.h │ │ │ │ ├── stm32f4xx_spi.h │ │ │ │ ├── stm32f4xx_syscfg.h │ │ │ │ ├── stm32f4xx_tim.h │ │ │ │ ├── stm32f4xx_usart.h │ │ │ │ └── stm32f4xx_wwdg.h │ │ │ │ └── src │ │ │ │ ├── misc.c │ │ │ │ ├── stm32f4xx_adc.c │ │ │ │ ├── stm32f4xx_can.c │ │ │ │ ├── stm32f4xx_crc.c │ │ │ │ ├── stm32f4xx_cryp.c │ │ │ │ ├── stm32f4xx_cryp_aes.c │ │ │ │ ├── stm32f4xx_cryp_des.c │ │ │ │ ├── stm32f4xx_cryp_tdes.c │ │ │ │ ├── stm32f4xx_dac.c │ │ │ │ ├── stm32f4xx_dbgmcu.c │ │ │ │ ├── stm32f4xx_dcmi.c │ │ │ │ ├── stm32f4xx_dma.c │ │ │ │ ├── stm32f4xx_dma2d.c │ │ │ │ ├── stm32f4xx_exti.c │ │ │ │ ├── stm32f4xx_flash.c │ │ │ │ ├── stm32f4xx_flash_ramfunc.c │ │ │ │ ├── stm32f4xx_fmc.c │ │ │ │ ├── stm32f4xx_fsmc.c │ │ │ │ ├── stm32f4xx_gpio.c │ │ │ │ ├── stm32f4xx_hash.c │ │ │ │ ├── stm32f4xx_hash_md5.c │ │ │ │ ├── stm32f4xx_hash_sha1.c │ │ │ │ ├── stm32f4xx_i2c.c │ │ │ │ ├── stm32f4xx_iwdg.c │ │ │ │ ├── stm32f4xx_ltdc.c │ │ │ │ ├── stm32f4xx_pwr.c │ │ │ │ ├── stm32f4xx_rcc.c │ │ │ │ ├── stm32f4xx_rng.c │ │ │ │ ├── stm32f4xx_rtc.c │ │ │ │ ├── stm32f4xx_sai.c │ │ │ │ ├── stm32f4xx_sdio.c │ │ │ │ ├── stm32f4xx_spi.c │ │ │ │ ├── stm32f4xx_syscfg.c │ │ │ │ ├── stm32f4xx_tim.c │ │ │ │ ├── stm32f4xx_usart.c │ │ │ │ └── stm32f4xx_wwdg.c │ │ └── STM32_USB-Host-Device_Lib_V2.1.0 │ │ │ └── Libraries │ │ │ ├── STM32_USB_Device_Library │ │ │ ├── Class │ │ │ │ ├── audio │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_audio_core.h │ │ │ │ │ │ └── usbd_audio_out_if.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_audio_core.c │ │ │ │ │ │ └── usbd_audio_out_if.c │ │ │ │ ├── cdc │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_cdc_core.h │ │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_cdc_core.c │ │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ │ ├── dfu │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── usbd_dfu_core.h │ │ │ │ │ │ ├── usbd_dfu_mal.h │ │ │ │ │ │ ├── usbd_flash_if.h │ │ │ │ │ │ ├── usbd_mem_if_template.h │ │ │ │ │ │ └── usbd_otp_if.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── usbd_dfu_core.c │ │ │ │ │ │ ├── usbd_dfu_mal.c │ │ │ │ │ │ ├── usbd_flash_if.c │ │ │ │ │ │ ├── usbd_mem_if_template.c │ │ │ │ │ │ └── usbd_otp_if.c │ │ │ │ ├── hid │ │ │ │ │ ├── inc │ │ │ │ │ │ └── usbd_hid_core.h │ │ │ │ │ └── src │ │ │ │ │ │ └── usbd_hid_core.c │ │ │ │ └── msc │ │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ │ └── src │ │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ ├── Core │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_conf_template.h │ │ │ │ │ ├── usbd_core.h │ │ │ │ │ ├── usbd_def.h │ │ │ │ │ ├── usbd_ioreq.h │ │ │ │ │ ├── usbd_req.h │ │ │ │ │ └── usbd_usr.h │ │ │ │ └── src │ │ │ │ │ ├── usbd_core.c │ │ │ │ │ ├── usbd_ioreq.c │ │ │ │ │ └── usbd_req.c │ │ │ └── Release_Notes.html │ │ │ └── STM32_USB_OTG_Driver │ │ │ ├── Release_Notes.html │ │ │ ├── inc │ │ │ ├── usb_bsp.h │ │ │ ├── usb_conf_template.h │ │ │ ├── usb_core.h │ │ │ ├── usb_dcd.h │ │ │ ├── usb_dcd_int.h │ │ │ ├── usb_defines.h │ │ │ ├── usb_hcd.h │ │ │ ├── usb_hcd_int.h │ │ │ ├── usb_otg.h │ │ │ └── usb_regs.h │ │ │ └── src │ │ │ ├── usb_core.c │ │ │ ├── usb_dcd.c │ │ │ ├── usb_dcd_int.c │ │ │ ├── usb_hcd.c │ │ │ ├── usb_hcd_int.c │ │ │ └── usb_otg.c │ ├── timers.cpp │ ├── timers.h │ ├── trainer_input.cpp │ ├── trainer_input.h │ ├── translations.cpp │ ├── translations.h │ ├── translations │ │ ├── .gitignore │ │ ├── cz.h.txt │ │ ├── de.h.txt │ │ ├── en.h.txt │ │ ├── es.h.txt │ │ ├── fi.h.txt │ │ ├── fr.h.txt │ │ ├── it.h.txt │ │ ├── nl.h.txt │ │ ├── pl.h.txt │ │ ├── pt.h.txt │ │ ├── se.h.txt │ │ ├── tts_cz.cpp │ │ ├── tts_de.cpp │ │ ├── tts_en.cpp │ │ ├── tts_es.cpp │ │ ├── tts_fr.cpp │ │ ├── tts_hu.cpp │ │ ├── tts_it.cpp │ │ ├── tts_nl.cpp │ │ ├── tts_pl.cpp │ │ ├── tts_pt.cpp │ │ ├── tts_se.cpp │ │ └── tts_sk.cpp │ └── vario.cpp ├── util │ ├── .gitignore │ ├── Dockerfile │ ├── add-issue-links.py │ ├── addtr.py │ ├── bin2lbm.py │ ├── build.py │ ├── capitalize.py │ ├── codecs.py │ ├── codeformat.sh │ ├── commit-tests.sh │ ├── copyright-header.txt │ ├── copyright.py │ ├── dsm2.py │ ├── fat12.py │ ├── fat12decode.py │ ├── font2png.py │ ├── fwoptions.py │ ├── img2lbm.py │ ├── include-guard.py │ ├── luaexport.py │ ├── maxvolume.cmd │ ├── parse.py │ ├── sinus.py │ ├── sport-parse.py │ ├── taranisicons.py │ ├── translate.py │ ├── tts.py │ ├── tts_cz.py │ ├── tts_de.py │ ├── tts_en.py │ ├── tts_es.py │ ├── tts_fr.py │ ├── tts_it.py │ ├── tts_pt.py │ ├── uncrustify.cfg │ └── video.sh └── wizard │ ├── ailerons-0.bmp │ ├── ailerons-1.bmp │ ├── ailerons-2.bmp │ ├── brakes-1.bmp │ ├── brakes-2.bmp │ ├── confirm-plane.bmp │ ├── confirm-tick.bmp │ ├── delta.bmp │ ├── delta.lua │ ├── drudder-0.bmp │ ├── drudder-1.bmp │ ├── elevons.bmp │ ├── engine-0.bmp │ ├── engine-1.bmp │ ├── flaps-1.bmp │ ├── flaps-2.bmp │ ├── heli.bmp │ ├── images │ ├── intro.png │ └── select_controls.png │ ├── mark.bmp │ ├── multi-pitch.bmp │ ├── multi-roll.bmp │ ├── multi-thr.bmp │ ├── multi-yaw.bmp │ ├── multi.lua │ ├── plane.bmp │ ├── plane.lua │ ├── quadri.bmp │ ├── servo.bmp │ ├── tail-e.bmp │ ├── tail-eer.bmp │ ├── tail-er.bmp │ ├── tail-v.bmp │ └── wizard.lua └── sound ├── .gitignore ├── OpenTXSound.sln ├── recorder ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── GPLv3_Logo.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── OpenTXRecorder.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WaveIn.cs ├── WaveNative.cs ├── aboutWindow.xaml ├── aboutWindow.xaml.cs ├── clsWaveProcessor.cs ├── icon.ico ├── play.png ├── record.png ├── recorder_logo.png ├── recorder_logo.xcf ├── recorder_logo_small.png ├── sentencetables.cs └── stop.png └── speaker ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── GPLv3_Logo.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── OpenTXspeaker.csproj ├── OpenTXspeaker.sln ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── aboutWindow.xaml ├── aboutWindow.xaml.cs ├── eSpeak.png ├── icon.ico ├── installvoices.xaml ├── installvoices.xaml.cs ├── sentencetables.cs ├── speaker_logo.png ├── speaker_logo.xcf └── speaker_logo_small.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/.travis.yml -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /DONATIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/DONATIONS.txt -------------------------------------------------------------------------------- /GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/GPLv2.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/README.md -------------------------------------------------------------------------------- /companion/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/releasenotes.txt -------------------------------------------------------------------------------- /companion/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/appdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/appdata.cpp -------------------------------------------------------------------------------- /companion/src/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/appdata.h -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/apppreferencesdialog.cpp -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/apppreferencesdialog.h -------------------------------------------------------------------------------- /companion/src/apppreferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/apppreferencesdialog.ui -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/burnconfigdialog.cpp -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/burnconfigdialog.h -------------------------------------------------------------------------------- /companion/src/burnconfigdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/burnconfigdialog.ui -------------------------------------------------------------------------------- /companion/src/cmake/FindLupdate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/cmake/FindLupdate.cmake -------------------------------------------------------------------------------- /companion/src/cmake/FindPhonon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/cmake/FindPhonon.cmake -------------------------------------------------------------------------------- /companion/src/cmake/FindSdl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/cmake/FindSdl.cmake -------------------------------------------------------------------------------- /companion/src/cmake/FindXercesC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/cmake/FindXercesC.cmake -------------------------------------------------------------------------------- /companion/src/cmake/FindXsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/cmake/FindXsd.cmake -------------------------------------------------------------------------------- /companion/src/companion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/companion.cpp -------------------------------------------------------------------------------- /companion/src/companion.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/companion.desktop.in -------------------------------------------------------------------------------- /companion/src/companion.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/companion.qrc -------------------------------------------------------------------------------- /companion/src/comparedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/comparedialog.cpp -------------------------------------------------------------------------------- /companion/src/comparedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/comparedialog.h -------------------------------------------------------------------------------- /companion/src/comparedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/comparedialog.ui -------------------------------------------------------------------------------- /companion/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/constants.h -------------------------------------------------------------------------------- /companion/src/contributorsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/contributorsdialog.cpp -------------------------------------------------------------------------------- /companion/src/contributorsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/contributorsdialog.h -------------------------------------------------------------------------------- /companion/src/converteeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/converteeprom.cpp -------------------------------------------------------------------------------- /companion/src/converteeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/converteeprom.h -------------------------------------------------------------------------------- /companion/src/customdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/customdebug.h -------------------------------------------------------------------------------- /companion/src/customizesplashdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/customizesplashdialog.h -------------------------------------------------------------------------------- /companion/src/customizesplashdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/customizesplashdialog.ui -------------------------------------------------------------------------------- /companion/src/downloaddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/downloaddialog.cpp -------------------------------------------------------------------------------- /companion/src/downloaddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/downloaddialog.h -------------------------------------------------------------------------------- /companion/src/downloaddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/downloaddialog.ui -------------------------------------------------------------------------------- /companion/src/eepromimportexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/eepromimportexport.h -------------------------------------------------------------------------------- /companion/src/eeprominterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/eeprominterface.cpp -------------------------------------------------------------------------------- /companion/src/eeprominterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/eeprominterface.h -------------------------------------------------------------------------------- /companion/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/file.cpp -------------------------------------------------------------------------------- /companion/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/file.h -------------------------------------------------------------------------------- /companion/src/firmwareinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/firmwareinterface.cpp -------------------------------------------------------------------------------- /companion/src/firmwareinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/firmwareinterface.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flasheepromdialog.cpp -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flasheepromdialog.h -------------------------------------------------------------------------------- /companion/src/flasheepromdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flasheepromdialog.ui -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flashfirmwaredialog.cpp -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flashfirmwaredialog.h -------------------------------------------------------------------------------- /companion/src/flashfirmwaredialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/flashfirmwaredialog.ui -------------------------------------------------------------------------------- /companion/src/fusesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fusesdialog.cpp -------------------------------------------------------------------------------- /companion/src/fusesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fusesdialog.h -------------------------------------------------------------------------------- /companion/src/fusesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fusesdialog.ui -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fwpreferencesdialog.cpp -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fwpreferencesdialog.h -------------------------------------------------------------------------------- /companion/src/fwpreferencesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/fwpreferencesdialog.ui -------------------------------------------------------------------------------- /companion/src/generaledit/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/hardware.cpp -------------------------------------------------------------------------------- /companion/src/generaledit/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/hardware.h -------------------------------------------------------------------------------- /companion/src/generaledit/hardware.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/hardware.ui -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/trainer.cpp -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/trainer.h -------------------------------------------------------------------------------- /companion/src/generaledit/trainer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/generaledit/trainer.ui -------------------------------------------------------------------------------- /companion/src/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/helpers.cpp -------------------------------------------------------------------------------- /companion/src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/helpers.h -------------------------------------------------------------------------------- /companion/src/helpers_html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/helpers_html.cpp -------------------------------------------------------------------------------- /companion/src/helpers_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/helpers_html.h -------------------------------------------------------------------------------- /companion/src/hexinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/hexinterface.cpp -------------------------------------------------------------------------------- /companion/src/hexinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/hexinterface.h -------------------------------------------------------------------------------- /companion/src/htmldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/htmldialog.ui -------------------------------------------------------------------------------- /companion/src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/icon.ico -------------------------------------------------------------------------------- /companion/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/icon.png -------------------------------------------------------------------------------- /companion/src/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/icon.rc -------------------------------------------------------------------------------- /companion/src/images/.gitignore: -------------------------------------------------------------------------------- 1 | */*.directory 2 | -------------------------------------------------------------------------------- /companion/src/images/9xcurs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcurs.png -------------------------------------------------------------------------------- /companion/src/images/9xcursdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcursdown.png -------------------------------------------------------------------------------- /companion/src/images/9xcursmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcursmin.png -------------------------------------------------------------------------------- /companion/src/images/9xcursphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcursphoto.png -------------------------------------------------------------------------------- /companion/src/images/9xcursplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcursplus.png -------------------------------------------------------------------------------- /companion/src/images/9xcursup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xcursup.png -------------------------------------------------------------------------------- /companion/src/images/9xdb-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb-bl.png -------------------------------------------------------------------------------- /companion/src/images/9xdb-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb-gr.png -------------------------------------------------------------------------------- /companion/src/images/9xdb-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb-or.png -------------------------------------------------------------------------------- /companion/src/images/9xdb-rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb-rd.png -------------------------------------------------------------------------------- /companion/src/images/9xdb-yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb-yl.png -------------------------------------------------------------------------------- /companion/src/images/9xdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdb.png -------------------------------------------------------------------------------- /companion/src/images/9xdl-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl-bl.png -------------------------------------------------------------------------------- /companion/src/images/9xdl-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl-gr.png -------------------------------------------------------------------------------- /companion/src/images/9xdl-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl-or.png -------------------------------------------------------------------------------- /companion/src/images/9xdl-rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl-rd.png -------------------------------------------------------------------------------- /companion/src/images/9xdl-yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl-yl.png -------------------------------------------------------------------------------- /companion/src/images/9xdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdl.png -------------------------------------------------------------------------------- /companion/src/images/9xdr-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr-bl.png -------------------------------------------------------------------------------- /companion/src/images/9xdr-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr-gr.png -------------------------------------------------------------------------------- /companion/src/images/9xdr-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr-or.png -------------------------------------------------------------------------------- /companion/src/images/9xdr-rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr-rd.png -------------------------------------------------------------------------------- /companion/src/images/9xdr-yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr-yl.png -------------------------------------------------------------------------------- /companion/src/images/9xdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdr.png -------------------------------------------------------------------------------- /companion/src/images/9xdt-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt-bl.png -------------------------------------------------------------------------------- /companion/src/images/9xdt-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt-gr.png -------------------------------------------------------------------------------- /companion/src/images/9xdt-or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt-or.png -------------------------------------------------------------------------------- /companion/src/images/9xdt-rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt-rd.png -------------------------------------------------------------------------------- /companion/src/images/9xdt-yl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt-yl.png -------------------------------------------------------------------------------- /companion/src/images/9xdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xdt.png -------------------------------------------------------------------------------- /companion/src/images/9xmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xmenu.png -------------------------------------------------------------------------------- /companion/src/images/9xmenuexit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xmenuexit.png -------------------------------------------------------------------------------- /companion/src/images/9xmenumenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/9xmenumenu.png -------------------------------------------------------------------------------- /companion/src/images/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/customize.png -------------------------------------------------------------------------------- /companion/src/images/iconmac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/iconmac.icns -------------------------------------------------------------------------------- /companion/src/images/library/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00001.png -------------------------------------------------------------------------------- /companion/src/images/library/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00002.png -------------------------------------------------------------------------------- /companion/src/images/library/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00003.png -------------------------------------------------------------------------------- /companion/src/images/library/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00004.png -------------------------------------------------------------------------------- /companion/src/images/library/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00005.png -------------------------------------------------------------------------------- /companion/src/images/library/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00006.png -------------------------------------------------------------------------------- /companion/src/images/library/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00007.png -------------------------------------------------------------------------------- /companion/src/images/library/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00008.png -------------------------------------------------------------------------------- /companion/src/images/library/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00009.png -------------------------------------------------------------------------------- /companion/src/images/library/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00010.png -------------------------------------------------------------------------------- /companion/src/images/library/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00011.png -------------------------------------------------------------------------------- /companion/src/images/library/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00012.png -------------------------------------------------------------------------------- /companion/src/images/library/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00013.png -------------------------------------------------------------------------------- /companion/src/images/library/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00014.png -------------------------------------------------------------------------------- /companion/src/images/library/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00015.png -------------------------------------------------------------------------------- /companion/src/images/library/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00016.png -------------------------------------------------------------------------------- /companion/src/images/library/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00017.png -------------------------------------------------------------------------------- /companion/src/images/library/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00018.png -------------------------------------------------------------------------------- /companion/src/images/library/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00019.png -------------------------------------------------------------------------------- /companion/src/images/library/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00020.png -------------------------------------------------------------------------------- /companion/src/images/library/00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00021.png -------------------------------------------------------------------------------- /companion/src/images/library/00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00022.png -------------------------------------------------------------------------------- /companion/src/images/library/00050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00050.png -------------------------------------------------------------------------------- /companion/src/images/library/00051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00051.png -------------------------------------------------------------------------------- /companion/src/images/library/00052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00052.png -------------------------------------------------------------------------------- /companion/src/images/library/00053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00053.png -------------------------------------------------------------------------------- /companion/src/images/library/00054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00054.png -------------------------------------------------------------------------------- /companion/src/images/library/00055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00055.png -------------------------------------------------------------------------------- /companion/src/images/library/00056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00056.png -------------------------------------------------------------------------------- /companion/src/images/library/00057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00057.png -------------------------------------------------------------------------------- /companion/src/images/library/00058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00058.png -------------------------------------------------------------------------------- /companion/src/images/library/00059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00059.png -------------------------------------------------------------------------------- /companion/src/images/library/00060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00060.png -------------------------------------------------------------------------------- /companion/src/images/library/00061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00061.png -------------------------------------------------------------------------------- /companion/src/images/library/00062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00062.png -------------------------------------------------------------------------------- /companion/src/images/library/00063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00063.png -------------------------------------------------------------------------------- /companion/src/images/library/00064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00064.png -------------------------------------------------------------------------------- /companion/src/images/library/00065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00065.png -------------------------------------------------------------------------------- /companion/src/images/library/00066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00066.png -------------------------------------------------------------------------------- /companion/src/images/library/00100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00100.png -------------------------------------------------------------------------------- /companion/src/images/library/00101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00101.png -------------------------------------------------------------------------------- /companion/src/images/library/00102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00102.png -------------------------------------------------------------------------------- /companion/src/images/library/00103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00103.png -------------------------------------------------------------------------------- /companion/src/images/library/00104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00104.png -------------------------------------------------------------------------------- /companion/src/images/library/00105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00105.png -------------------------------------------------------------------------------- /companion/src/images/library/00106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00106.png -------------------------------------------------------------------------------- /companion/src/images/library/00201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00201.png -------------------------------------------------------------------------------- /companion/src/images/library/00202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00202.png -------------------------------------------------------------------------------- /companion/src/images/library/00203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00203.png -------------------------------------------------------------------------------- /companion/src/images/library/00204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00204.png -------------------------------------------------------------------------------- /companion/src/images/library/00301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00301.png -------------------------------------------------------------------------------- /companion/src/images/library/00302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00302.png -------------------------------------------------------------------------------- /companion/src/images/library/00303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00303.png -------------------------------------------------------------------------------- /companion/src/images/library/00304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00304.png -------------------------------------------------------------------------------- /companion/src/images/library/00401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00401.png -------------------------------------------------------------------------------- /companion/src/images/library/00402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00402.png -------------------------------------------------------------------------------- /companion/src/images/library/00403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00403.png -------------------------------------------------------------------------------- /companion/src/images/library/00404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00404.png -------------------------------------------------------------------------------- /companion/src/images/library/00501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/00501.png -------------------------------------------------------------------------------- /companion/src/images/library/10001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10001.png -------------------------------------------------------------------------------- /companion/src/images/library/10002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10002.png -------------------------------------------------------------------------------- /companion/src/images/library/10003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10003.png -------------------------------------------------------------------------------- /companion/src/images/library/10101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10101.png -------------------------------------------------------------------------------- /companion/src/images/library/10102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10102.png -------------------------------------------------------------------------------- /companion/src/images/library/10103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10103.png -------------------------------------------------------------------------------- /companion/src/images/library/10501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10501.png -------------------------------------------------------------------------------- /companion/src/images/library/10502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10502.png -------------------------------------------------------------------------------- /companion/src/images/library/10503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10503.png -------------------------------------------------------------------------------- /companion/src/images/library/10504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10504.png -------------------------------------------------------------------------------- /companion/src/images/library/10505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10505.png -------------------------------------------------------------------------------- /companion/src/images/library/10506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10506.png -------------------------------------------------------------------------------- /companion/src/images/library/10508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10508.png -------------------------------------------------------------------------------- /companion/src/images/library/10601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10601.png -------------------------------------------------------------------------------- /companion/src/images/library/10701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10701.png -------------------------------------------------------------------------------- /companion/src/images/library/10702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10702.png -------------------------------------------------------------------------------- /companion/src/images/library/10801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10801.png -------------------------------------------------------------------------------- /companion/src/images/library/10802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/library/10802.png -------------------------------------------------------------------------------- /companion/src/images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/maps.png -------------------------------------------------------------------------------- /companion/src/images/originals/9CX.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/originals/9CX.xcf -------------------------------------------------------------------------------- /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/tmrttmrt/opentx/HEAD/companion/src/images/screenshot.png -------------------------------------------------------------------------------- /companion/src/images/splash-9x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/splash-9x.png -------------------------------------------------------------------------------- /companion/src/images/splash-9xr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/splash-9xr.png -------------------------------------------------------------------------------- /companion/src/images/splash-9xrpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/splash-9xrpro.png -------------------------------------------------------------------------------- /companion/src/images/taranison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/taranison.png -------------------------------------------------------------------------------- /companion/src/images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/track.png -------------------------------------------------------------------------------- /companion/src/images/track0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/track0.png -------------------------------------------------------------------------------- /companion/src/images/wizard/cyclic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/cyclic.png -------------------------------------------------------------------------------- /companion/src/images/wizard/flaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/flaps.png -------------------------------------------------------------------------------- /companion/src/images/wizard/flybar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/flybar.png -------------------------------------------------------------------------------- /companion/src/images/wizard/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/gyro.png -------------------------------------------------------------------------------- /companion/src/images/wizard/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/models.png -------------------------------------------------------------------------------- /companion/src/images/wizard/rudder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/rudder.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/tail.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/tails.png -------------------------------------------------------------------------------- /companion/src/images/wizard/vtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/wizard/vtail.png -------------------------------------------------------------------------------- /companion/src/images/x9b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9b0.png -------------------------------------------------------------------------------- /companion/src/images/x9l0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9l0.png -------------------------------------------------------------------------------- /companion/src/images/x9l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9l1.png -------------------------------------------------------------------------------- /companion/src/images/x9l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9l2.png -------------------------------------------------------------------------------- /companion/src/images/x9l3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9l3.png -------------------------------------------------------------------------------- /companion/src/images/x9l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9l4.png -------------------------------------------------------------------------------- /companion/src/images/x9r0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9r0.png -------------------------------------------------------------------------------- /companion/src/images/x9r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9r1.png -------------------------------------------------------------------------------- /companion/src/images/x9r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9r2.png -------------------------------------------------------------------------------- /companion/src/images/x9r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9r3.png -------------------------------------------------------------------------------- /companion/src/images/x9s0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9s0.png -------------------------------------------------------------------------------- /companion/src/images/x9t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/images/x9t0.png -------------------------------------------------------------------------------- /companion/src/imgpreferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/imgpreferences.ui -------------------------------------------------------------------------------- /companion/src/logsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/logsdialog.cpp -------------------------------------------------------------------------------- /companion/src/logsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/logsdialog.h -------------------------------------------------------------------------------- /companion/src/logsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/logsdialog.ui -------------------------------------------------------------------------------- /companion/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mainwindow.cpp -------------------------------------------------------------------------------- /companion/src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mainwindow.h -------------------------------------------------------------------------------- /companion/src/mdichild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mdichild.cpp -------------------------------------------------------------------------------- /companion/src/mdichild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mdichild.h -------------------------------------------------------------------------------- /companion/src/mdichild.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mdichild.ui -------------------------------------------------------------------------------- /companion/src/modeledit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/modeledit/channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/channels.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/channels.h -------------------------------------------------------------------------------- /companion/src/modeledit/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/curves.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/curves.h -------------------------------------------------------------------------------- /companion/src/modeledit/curves.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/curves.ui -------------------------------------------------------------------------------- /companion/src/modeledit/edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/edge.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/edge.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/expodialog.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/expodialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/expodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/expodialog.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/flightmode.ui -------------------------------------------------------------------------------- /companion/src/modeledit/flightmodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/flightmodes.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/heli.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/heli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/heli.h -------------------------------------------------------------------------------- /companion/src/modeledit/heli.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/heli.ui -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/inputs.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/inputs.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixerdialog.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixerdialog.ui -------------------------------------------------------------------------------- /companion/src/modeledit/mixerslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixerslist.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/mixerslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixerslist.h -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixes.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/mixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/mixes.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/modeledit.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/modeledit.h -------------------------------------------------------------------------------- /companion/src/modeledit/modeledit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/modeledit.ui -------------------------------------------------------------------------------- /companion/src/modeledit/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/node.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/node.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/setup.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/setup.h -------------------------------------------------------------------------------- /companion/src/modeledit/setup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/setup.ui -------------------------------------------------------------------------------- /companion/src/modeledit/setup_timer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/setup_timer.ui -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/telemetry.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/telemetry.h -------------------------------------------------------------------------------- /companion/src/modeledit/telemetry.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/telemetry.ui -------------------------------------------------------------------------------- /companion/src/modeledit/templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/templates.cpp -------------------------------------------------------------------------------- /companion/src/modeledit/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modeledit/templates.h -------------------------------------------------------------------------------- /companion/src/modelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modelprinter.cpp -------------------------------------------------------------------------------- /companion/src/modelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modelprinter.h -------------------------------------------------------------------------------- /companion/src/modelslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modelslist.cpp -------------------------------------------------------------------------------- /companion/src/modelslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/modelslist.h -------------------------------------------------------------------------------- /companion/src/mountlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mountlist.cpp -------------------------------------------------------------------------------- /companion/src/mountlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/mountlist.h -------------------------------------------------------------------------------- /companion/src/multimodelprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/multimodelprinter.cpp -------------------------------------------------------------------------------- /companion/src/multimodelprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/multimodelprinter.h -------------------------------------------------------------------------------- /companion/src/printdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/printdialog.cpp -------------------------------------------------------------------------------- /companion/src/printdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/printdialog.h -------------------------------------------------------------------------------- /companion/src/printdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/printdialog.ui -------------------------------------------------------------------------------- /companion/src/process_copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_copy.cpp -------------------------------------------------------------------------------- /companion/src/process_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_copy.h -------------------------------------------------------------------------------- /companion/src/process_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_flash.cpp -------------------------------------------------------------------------------- /companion/src/process_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_flash.h -------------------------------------------------------------------------------- /companion/src/process_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_sync.cpp -------------------------------------------------------------------------------- /companion/src/process_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/process_sync.h -------------------------------------------------------------------------------- /companion/src/progressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progressdialog.cpp -------------------------------------------------------------------------------- /companion/src/progressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progressdialog.h -------------------------------------------------------------------------------- /companion/src/progressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progressdialog.ui -------------------------------------------------------------------------------- /companion/src/progresswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progresswidget.cpp -------------------------------------------------------------------------------- /companion/src/progresswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progresswidget.h -------------------------------------------------------------------------------- /companion/src/progresswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/progresswidget.ui -------------------------------------------------------------------------------- /companion/src/qcustomplot/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/qcustomplot/GPL.txt -------------------------------------------------------------------------------- /companion/src/radio.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radio.xsd -------------------------------------------------------------------------------- /companion/src/radiointerface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radiointerface.cpp -------------------------------------------------------------------------------- /companion/src/radiointerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radiointerface.h -------------------------------------------------------------------------------- /companion/src/radionotfound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radionotfound.cpp -------------------------------------------------------------------------------- /companion/src/radionotfound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radionotfound.h -------------------------------------------------------------------------------- /companion/src/radionotfound.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/radionotfound.ui -------------------------------------------------------------------------------- /companion/src/releasenotesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/releasenotesdialog.cpp -------------------------------------------------------------------------------- /companion/src/releasenotesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/releasenotesdialog.h -------------------------------------------------------------------------------- /companion/src/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/CMakeLists.txt -------------------------------------------------------------------------------- /companion/src/shared/autocheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/autocheckbox.h -------------------------------------------------------------------------------- /companion/src/shared/autocombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/autocombobox.h -------------------------------------------------------------------------------- /companion/src/shared/autohexspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/autohexspinbox.h -------------------------------------------------------------------------------- /companion/src/shared/autolineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/autolineedit.h -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/genericpanel.cpp -------------------------------------------------------------------------------- /companion/src/shared/genericpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/genericpanel.h -------------------------------------------------------------------------------- /companion/src/shared/hexspinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/hexspinbox.cpp -------------------------------------------------------------------------------- /companion/src/shared/hexspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/shared/hexspinbox.h -------------------------------------------------------------------------------- /companion/src/simulation/debugoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/debugoutput.h -------------------------------------------------------------------------------- /companion/src/simulation/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/joystick.cpp -------------------------------------------------------------------------------- /companion/src/simulation/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/joystick.h -------------------------------------------------------------------------------- /companion/src/simulation/lcdwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/lcdwidget.h -------------------------------------------------------------------------------- /companion/src/simulation/menuwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/menuwidget.h -------------------------------------------------------------------------------- /companion/src/simulation/myqdial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/myqdial.h -------------------------------------------------------------------------------- /companion/src/simulation/myslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/myslider.h -------------------------------------------------------------------------------- /companion/src/simulation/trainersimu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/trainersimu.h -------------------------------------------------------------------------------- /companion/src/simulation/xmenuwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulation/xmenuwidget.h -------------------------------------------------------------------------------- /companion/src/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulator.cpp -------------------------------------------------------------------------------- /companion/src/simulator.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/simulator.desktop.in -------------------------------------------------------------------------------- /companion/src/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/splash.h -------------------------------------------------------------------------------- /companion/src/splashlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/splashlabel.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/splashlibrarydialog.cpp -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/splashlibrarydialog.h -------------------------------------------------------------------------------- /companion/src/splashlibrarydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/splashlibrarydialog.ui -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/themes/yerico/48/new.png -------------------------------------------------------------------------------- /companion/src/translations.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/translations.qrc.in -------------------------------------------------------------------------------- /companion/src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/version.h.in -------------------------------------------------------------------------------- /companion/src/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/warnings.h -------------------------------------------------------------------------------- /companion/src/wizarddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/wizarddata.cpp -------------------------------------------------------------------------------- /companion/src/wizarddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/wizarddata.h -------------------------------------------------------------------------------- /companion/src/wizarddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/wizarddialog.cpp -------------------------------------------------------------------------------- /companion/src/wizarddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/wizarddialog.h -------------------------------------------------------------------------------- /companion/src/xmlinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/xmlinterface.cpp -------------------------------------------------------------------------------- /companion/src/xmlinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/src/xmlinterface.h -------------------------------------------------------------------------------- /companion/targets/windows/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/avrdude.conf -------------------------------------------------------------------------------- /companion/targets/windows/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/avrdude.exe -------------------------------------------------------------------------------- /companion/targets/windows/dfu-util.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/dfu-util.exe -------------------------------------------------------------------------------- /companion/targets/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/libusb0.dll -------------------------------------------------------------------------------- /companion/targets/windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/license.txt -------------------------------------------------------------------------------- /companion/targets/windows/winbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/companion/targets/windows/winbuild.h -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/Mega2560/MEGA2560.sch -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Arduino_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/Mega2560/MEGA2560_Arduino_sch.pdf -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Listing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/Mega2560/MEGA2560_Listing.xls -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/Mega2560/MEGA2560_SCH.pdf -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_pcb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/Mega2560/MEGA2560_pcb.pdf -------------------------------------------------------------------------------- /doc/lua-reference-guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/doc/lua-reference-guide.tex -------------------------------------------------------------------------------- /jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | /settings.sh 2 | -------------------------------------------------------------------------------- /jenkins/get-from-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/get-from-server.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/nightly-21/release-all.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/release-firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/nightly-21/release-firmware.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/nightly-21/update-repo.sh -------------------------------------------------------------------------------- /jenkins/nightly-21/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/nightly-21/version.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-20/release-all.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-20/release-firmware.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-20/release-lua.sh -------------------------------------------------------------------------------- /jenkins/release-20/release-voices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-20/release-voices.sh -------------------------------------------------------------------------------- /jenkins/release-20/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-20/update-repo.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/release-all.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/release-firmware.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/release-lua.sh -------------------------------------------------------------------------------- /jenkins/release-21/release-voices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/release-voices.sh -------------------------------------------------------------------------------- /jenkins/release-21/update-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/update-repo.sh -------------------------------------------------------------------------------- /jenkins/release-21/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/release-21/version.sh -------------------------------------------------------------------------------- /jenkins/upload-to-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/jenkins/upload-to-server.sh -------------------------------------------------------------------------------- /radio/.gitignore: -------------------------------------------------------------------------------- 1 | /gtest-1.6.0 2 | -------------------------------------------------------------------------------- /radio/data/MODELE24-2014-07-11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/data/MODELE24-2014-07-11.csv -------------------------------------------------------------------------------- /radio/data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/data/readme.txt -------------------------------------------------------------------------------- /radio/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/releasenotes.txt -------------------------------------------------------------------------------- /radio/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/.gitignore -------------------------------------------------------------------------------- /radio/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/Makefile -------------------------------------------------------------------------------- /radio/src/audio_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/audio_arm.cpp -------------------------------------------------------------------------------- /radio/src/audio_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/audio_arm.h -------------------------------------------------------------------------------- /radio/src/audio_avr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/audio_avr.cpp -------------------------------------------------------------------------------- /radio/src/audio_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/audio_avr.h -------------------------------------------------------------------------------- /radio/src/bin_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bin_allocator.cpp -------------------------------------------------------------------------------- /radio/src/bin_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bin_allocator.h -------------------------------------------------------------------------------- /radio/src/bitmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /*.lbm 2 | /*/.directory 3 | -------------------------------------------------------------------------------- /radio/src/bitmaps/9X/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/9X/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/9X/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/9X/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/9X/asterisk.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/9X/asterisk.xbm -------------------------------------------------------------------------------- /radio/src/bitmaps/9X/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/9X/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/9X/splash.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/9X/splash.xbm -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/.gitignore: -------------------------------------------------------------------------------- 1 | /mainmenu.png 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/icons.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/lock.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/logo.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/shutdown.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/Taranis/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/Taranis/startup.png -------------------------------------------------------------------------------- /radio/src/bitmaps/sticks.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bitmaps/sticks.xbm -------------------------------------------------------------------------------- /radio/src/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/bmp.cpp -------------------------------------------------------------------------------- /radio/src/buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/buzzer.cpp -------------------------------------------------------------------------------- /radio/src/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/buzzer.h -------------------------------------------------------------------------------- /radio/src/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/cli.cpp -------------------------------------------------------------------------------- /radio/src/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/cli.h -------------------------------------------------------------------------------- /radio/src/crc16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/crc16.cpp -------------------------------------------------------------------------------- /radio/src/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/curves.cpp -------------------------------------------------------------------------------- /radio/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/debug.cpp -------------------------------------------------------------------------------- /radio/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/debug.h -------------------------------------------------------------------------------- /radio/src/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/dump.cpp -------------------------------------------------------------------------------- /radio/src/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/dump.h -------------------------------------------------------------------------------- /radio/src/eeprom_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_common.cpp -------------------------------------------------------------------------------- /radio/src/eeprom_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_common.h -------------------------------------------------------------------------------- /radio/src/eeprom_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_conversions.cpp -------------------------------------------------------------------------------- /radio/src/eeprom_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_raw.cpp -------------------------------------------------------------------------------- /radio/src/eeprom_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_raw.h -------------------------------------------------------------------------------- /radio/src/eeprom_rlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_rlc.cpp -------------------------------------------------------------------------------- /radio/src/eeprom_rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/eeprom_rlc.h -------------------------------------------------------------------------------- /radio/src/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fifo.h -------------------------------------------------------------------------------- /radio/src/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts.h -------------------------------------------------------------------------------- /radio/src/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/.gitignore -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fi_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fi_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fr_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fr_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fr_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_fr_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_it_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_it_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_it_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_it_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pl_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pl_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pl_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pl_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pt_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pt_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pt_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_pt_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_se_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_se_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_se_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/sqt5/font_se_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07_avr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_05x07_avr.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_22x38_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_22x38_num.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fi_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fi_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fr_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fr_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fr_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_fr_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_it_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_it_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_it_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_it_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pl_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pl_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pl_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pl_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pt_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pt_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pt_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_pt_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_se_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_se_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_se_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/fonts/std/font_se_10x14.png -------------------------------------------------------------------------------- /radio/src/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/functions.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/gui.h -------------------------------------------------------------------------------- /radio/src/gui/9X/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/helpers.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_general.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model_curves.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model_heli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model_heli.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model_limits.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model_select.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menu_model_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menu_model_setup.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menus.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/menus.h -------------------------------------------------------------------------------- /radio/src/gui/9X/navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/navigation.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_about.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_mavlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_mavlink.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_mavlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_mavlink.h -------------------------------------------------------------------------------- /radio/src/gui/9X/view_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_statistics.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_telemetry.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/view_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/view_text.cpp -------------------------------------------------------------------------------- /radio/src/gui/9X/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/9X/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/fonts.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/gui.h -------------------------------------------------------------------------------- /radio/src/gui/Taranis/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/helpers.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/lcd.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/lcd.h -------------------------------------------------------------------------------- /radio/src/gui/Taranis/menu_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/menu_general.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/menu_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/menu_model.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/menus.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/menus.h -------------------------------------------------------------------------------- /radio/src/gui/Taranis/navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/navigation.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/popups.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/splash.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/view_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/view_about.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/view_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/view_main.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/view_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/view_text.cpp -------------------------------------------------------------------------------- /radio/src/gui/Taranis/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/Taranis/widgets.cpp -------------------------------------------------------------------------------- /radio/src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/gui/gui.h -------------------------------------------------------------------------------- /radio/src/haptic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/haptic.cpp -------------------------------------------------------------------------------- /radio/src/haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/haptic.h -------------------------------------------------------------------------------- /radio/src/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/keys.cpp -------------------------------------------------------------------------------- /radio/src/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/keys.h -------------------------------------------------------------------------------- /radio/src/loadboot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/loadboot.cpp -------------------------------------------------------------------------------- /radio/src/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/logs.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/lua/api_general.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/lua/api_lcd.cpp -------------------------------------------------------------------------------- /radio/src/lua/api_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/lua/api_model.cpp -------------------------------------------------------------------------------- /radio/src/lua/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/lua/interface.cpp -------------------------------------------------------------------------------- /radio/src/lua/lua_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/lua/lua_api.h -------------------------------------------------------------------------------- /radio/src/main_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/main_arm.cpp -------------------------------------------------------------------------------- /radio/src/main_avr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/main_avr.cpp -------------------------------------------------------------------------------- /radio/src/maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/maths.cpp -------------------------------------------------------------------------------- /radio/src/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/mixer.cpp -------------------------------------------------------------------------------- /radio/src/myeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/myeeprom.h -------------------------------------------------------------------------------- /radio/src/opentx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/opentx.cpp -------------------------------------------------------------------------------- /radio/src/opentx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/opentx.h -------------------------------------------------------------------------------- /radio/src/pgmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pgmtypes.h -------------------------------------------------------------------------------- /radio/src/pulses/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/pulses/dsm2_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/dsm2_arm.cpp -------------------------------------------------------------------------------- /radio/src/pulses/ppm_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/ppm_arm.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pulses.h -------------------------------------------------------------------------------- /radio/src/pulses/pulses_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pulses_arm.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pulses_arm.h -------------------------------------------------------------------------------- /radio/src/pulses/pulses_avr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pulses_avr.cpp -------------------------------------------------------------------------------- /radio/src/pulses/pulses_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pulses_avr.h -------------------------------------------------------------------------------- /radio/src/pulses/pxx_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pulses/pxx_arm.cpp -------------------------------------------------------------------------------- /radio/src/pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/pwr.h -------------------------------------------------------------------------------- /radio/src/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/rtc.cpp -------------------------------------------------------------------------------- /radio/src/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/rtc.h -------------------------------------------------------------------------------- /radio/src/sbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/sbus.cpp -------------------------------------------------------------------------------- /radio/src/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/sbus.h -------------------------------------------------------------------------------- /radio/src/sdcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/sdcard.cpp -------------------------------------------------------------------------------- /radio/src/sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/sdcard.h -------------------------------------------------------------------------------- /radio/src/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/serial.cpp -------------------------------------------------------------------------------- /radio/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/serial.h -------------------------------------------------------------------------------- /radio/src/simu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/simu.cpp -------------------------------------------------------------------------------- /radio/src/stamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/stamp.cpp -------------------------------------------------------------------------------- /radio/src/strhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/strhelpers.cpp -------------------------------------------------------------------------------- /radio/src/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/switches.cpp -------------------------------------------------------------------------------- /radio/src/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/syscalls.c -------------------------------------------------------------------------------- /radio/src/targets/gruvin9x/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/gruvin9x/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/gruvin9x/somo14d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/gruvin9x/somo14d.cpp -------------------------------------------------------------------------------- /radio/src/targets/gruvin9x/somo14d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/gruvin9x/somo14d.h -------------------------------------------------------------------------------- /radio/src/targets/simu/simpgmspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/simu/simpgmspace.cpp -------------------------------------------------------------------------------- /radio/src/targets/simu/simpgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/simu/simpgmspace.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/AT91SAM3S2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/AT91SAM3S2.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/AT91SAM3S4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/AT91SAM3S4.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/MEDSdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/MEDSdcard.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/Media.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/adc_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/adc_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/audio_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/audio_driver.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/bluetooth.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/board.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/board_sky9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/board_sky9x.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/chip.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/core_cm3.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/core_cm3.h -------------------------------------------------------------------------------- /radio/src/targets/sky9x/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/crt.c -------------------------------------------------------------------------------- /radio/src/targets/sky9x/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/lcd_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/lcd_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/pwr_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/pwr_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/sky9x/rtc_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/sky9x/rtc_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/stlink-v2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stlink-v2.cfg -------------------------------------------------------------------------------- /radio/src/targets/stm32f2x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stm32f2x_stlink.cfg -------------------------------------------------------------------------------- /radio/src/targets/stm32f4x_stlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stm32f4x_stlink.cfg -------------------------------------------------------------------------------- /radio/src/targets/stock/board_stock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stock/board_stock.h -------------------------------------------------------------------------------- /radio/src/targets/stock/lcd_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stock/lcd_driver.cpp -------------------------------------------------------------------------------- /radio/src/targets/stock/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stock/voice.cpp -------------------------------------------------------------------------------- /radio/src/targets/stock/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/stock/voice.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/aspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/aspi.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/aspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/aspi.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/bootloader/.gitignore: -------------------------------------------------------------------------------- 1 | /bootloader_ramBoot.* 2 | /.dep 3 | 4 | -------------------------------------------------------------------------------- /radio/src/targets/taranis/bootloader/init.c: -------------------------------------------------------------------------------- 1 | void _init (void) 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /radio/src/targets/taranis/delays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/delays.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/diskio.cpp -------------------------------------------------------------------------------- /radio/src/targets/taranis/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/hal.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/pwr_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/pwr_driver.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/usb_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usb_bsp.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/usb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usb_conf.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/usb_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usb_driver.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/usbd_cdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usbd_cdc.cpp -------------------------------------------------------------------------------- /radio/src/targets/taranis/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usbd_conf.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usbd_desc.c -------------------------------------------------------------------------------- /radio/src/targets/taranis/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usbd_desc.h -------------------------------------------------------------------------------- /radio/src/targets/taranis/usbd_usr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/targets/taranis/usbd_usr.cpp -------------------------------------------------------------------------------- /radio/src/tasks_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tasks_arm.cpp -------------------------------------------------------------------------------- /radio/src/tasks_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tasks_arm.h -------------------------------------------------------------------------------- /radio/src/telemetry/ardupilot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/ardupilot.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/ardupilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/ardupilot.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/frsky.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/frsky.h -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/frsky_d.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_d_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/frsky_d_arm.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/frsky_sport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/frsky_sport.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/jeti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/jeti.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/jeti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/jeti.h -------------------------------------------------------------------------------- /radio/src/telemetry/mavlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/mavlink.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/mavlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/mavlink.h -------------------------------------------------------------------------------- /radio/src/telemetry/nmea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/nmea.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/nmea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/nmea.h -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/telemetry.cpp -------------------------------------------------------------------------------- /radio/src/telemetry/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/telemetry/telemetry.h -------------------------------------------------------------------------------- /radio/src/templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/templates.cpp -------------------------------------------------------------------------------- /radio/src/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/templates.h -------------------------------------------------------------------------------- /radio/src/tests/1b_39x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/1b_39x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/1b_6x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/1b_6x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_20x20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/4b_20x20.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_31x31.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/4b_31x31.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_7x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/4b_7x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/big_numbers_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/big_numbers_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/big_numbers_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/big_numbers_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/bmpwrapping_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/bmpwrapping_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/crossfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/crossfire.cpp -------------------------------------------------------------------------------- /radio/src/tests/dblsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/dblsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/dblsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/dblsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/drawswitch_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/drawswitch_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/eeprom.cpp -------------------------------------------------------------------------------- /radio/src/tests/frsky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/frsky.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/gtests.cpp -------------------------------------------------------------------------------- /radio/src/tests/gtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/gtests.h -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/invers_0_0_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/invers_0_0_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/lcd.cpp -------------------------------------------------------------------------------- /radio/src/tests/lcd_line_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/lcd_line_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/line_wrap_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/line_wrap_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/line_wrap_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/line_wrap_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/lua.cpp -------------------------------------------------------------------------------- /radio/src/tests/midsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/midsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/midsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/midsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/mixer.cpp -------------------------------------------------------------------------------- /radio/src/tests/plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/plane.bmp -------------------------------------------------------------------------------- /radio/src/tests/smlsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/smlsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/smlsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/smlsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/stdsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/stdsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/switches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/switches.cpp -------------------------------------------------------------------------------- /radio/src/tests/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/timers.cpp -------------------------------------------------------------------------------- /radio/src/tests/unsigned_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/unsigned_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/unsigned_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/unsigned_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/vline_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/vline_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_lt0_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/vline_lt0_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_lt0_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/tests/vline_lt0_212x64.png -------------------------------------------------------------------------------- /radio/src/thirdparty/CoOS/OsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/CoOS/OsConfig.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/diskio.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/fattime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/fattime.c -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/ff.c -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/ff.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/ffconf.h -------------------------------------------------------------------------------- /radio/src/thirdparty/FatFs/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/FatFs/integer.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/Makefile -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/README -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/doc/lua.1 -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/doc/lua.css -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/doc/luac.1 -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lapi.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lapi.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lcode.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lcode.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/ldo.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/ldo.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/ldump.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lfunc.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lfunc.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lgc.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lgc.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/linit.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/llex.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/llex.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lmem.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lmem.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/ltm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/ltm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lua.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lua.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lua.hpp -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/luac.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lvm.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lvm.h -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lzio.c -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/thirdparty/Lua/src/lzio.h -------------------------------------------------------------------------------- /radio/src/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/timers.cpp -------------------------------------------------------------------------------- /radio/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/timers.h -------------------------------------------------------------------------------- /radio/src/trainer_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/trainer_input.cpp -------------------------------------------------------------------------------- /radio/src/trainer_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/trainer_input.h -------------------------------------------------------------------------------- /radio/src/translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations.cpp -------------------------------------------------------------------------------- /radio/src/translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations.h -------------------------------------------------------------------------------- /radio/src/translations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/.gitignore -------------------------------------------------------------------------------- /radio/src/translations/cz.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/cz.h.txt -------------------------------------------------------------------------------- /radio/src/translations/de.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/de.h.txt -------------------------------------------------------------------------------- /radio/src/translations/en.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/en.h.txt -------------------------------------------------------------------------------- /radio/src/translations/es.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/es.h.txt -------------------------------------------------------------------------------- /radio/src/translations/fi.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/fi.h.txt -------------------------------------------------------------------------------- /radio/src/translations/fr.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/fr.h.txt -------------------------------------------------------------------------------- /radio/src/translations/it.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/it.h.txt -------------------------------------------------------------------------------- /radio/src/translations/nl.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/nl.h.txt -------------------------------------------------------------------------------- /radio/src/translations/pl.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/pl.h.txt -------------------------------------------------------------------------------- /radio/src/translations/pt.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/pt.h.txt -------------------------------------------------------------------------------- /radio/src/translations/se.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/se.h.txt -------------------------------------------------------------------------------- /radio/src/translations/tts_cz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_cz.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_de.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_de.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_en.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_en.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_es.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_es.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_fr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_fr.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_hu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_hu.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_it.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_it.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_nl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_pl.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_pt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_pt.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_se.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_se.cpp -------------------------------------------------------------------------------- /radio/src/translations/tts_sk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/translations/tts_sk.cpp -------------------------------------------------------------------------------- /radio/src/vario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/src/vario.cpp -------------------------------------------------------------------------------- /radio/util/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | 3 | -------------------------------------------------------------------------------- /radio/util/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/Dockerfile -------------------------------------------------------------------------------- /radio/util/add-issue-links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/add-issue-links.py -------------------------------------------------------------------------------- /radio/util/addtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/addtr.py -------------------------------------------------------------------------------- /radio/util/bin2lbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/bin2lbm.py -------------------------------------------------------------------------------- /radio/util/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/build.py -------------------------------------------------------------------------------- /radio/util/capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/capitalize.py -------------------------------------------------------------------------------- /radio/util/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/codecs.py -------------------------------------------------------------------------------- /radio/util/codeformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/codeformat.sh -------------------------------------------------------------------------------- /radio/util/commit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/commit-tests.sh -------------------------------------------------------------------------------- /radio/util/copyright-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/copyright-header.txt -------------------------------------------------------------------------------- /radio/util/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/copyright.py -------------------------------------------------------------------------------- /radio/util/dsm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/dsm2.py -------------------------------------------------------------------------------- /radio/util/fat12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/fat12.py -------------------------------------------------------------------------------- /radio/util/fat12decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/fat12decode.py -------------------------------------------------------------------------------- /radio/util/font2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/font2png.py -------------------------------------------------------------------------------- /radio/util/fwoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/fwoptions.py -------------------------------------------------------------------------------- /radio/util/img2lbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/img2lbm.py -------------------------------------------------------------------------------- /radio/util/include-guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/include-guard.py -------------------------------------------------------------------------------- /radio/util/luaexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/luaexport.py -------------------------------------------------------------------------------- /radio/util/maxvolume.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/maxvolume.cmd -------------------------------------------------------------------------------- /radio/util/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/parse.py -------------------------------------------------------------------------------- /radio/util/sinus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/sinus.py -------------------------------------------------------------------------------- /radio/util/sport-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/sport-parse.py -------------------------------------------------------------------------------- /radio/util/taranisicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/taranisicons.py -------------------------------------------------------------------------------- /radio/util/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/translate.py -------------------------------------------------------------------------------- /radio/util/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts.py -------------------------------------------------------------------------------- /radio/util/tts_cz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_cz.py -------------------------------------------------------------------------------- /radio/util/tts_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_de.py -------------------------------------------------------------------------------- /radio/util/tts_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_en.py -------------------------------------------------------------------------------- /radio/util/tts_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_es.py -------------------------------------------------------------------------------- /radio/util/tts_fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_fr.py -------------------------------------------------------------------------------- /radio/util/tts_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_it.py -------------------------------------------------------------------------------- /radio/util/tts_pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/tts_pt.py -------------------------------------------------------------------------------- /radio/util/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/uncrustify.cfg -------------------------------------------------------------------------------- /radio/util/video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/util/video.sh -------------------------------------------------------------------------------- /radio/wizard/ailerons-0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/ailerons-0.bmp -------------------------------------------------------------------------------- /radio/wizard/ailerons-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/ailerons-1.bmp -------------------------------------------------------------------------------- /radio/wizard/ailerons-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/ailerons-2.bmp -------------------------------------------------------------------------------- /radio/wizard/brakes-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/brakes-1.bmp -------------------------------------------------------------------------------- /radio/wizard/brakes-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/brakes-2.bmp -------------------------------------------------------------------------------- /radio/wizard/confirm-plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/confirm-plane.bmp -------------------------------------------------------------------------------- /radio/wizard/confirm-tick.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/confirm-tick.bmp -------------------------------------------------------------------------------- /radio/wizard/delta.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/delta.bmp -------------------------------------------------------------------------------- /radio/wizard/delta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/delta.lua -------------------------------------------------------------------------------- /radio/wizard/drudder-0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/drudder-0.bmp -------------------------------------------------------------------------------- /radio/wizard/drudder-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/drudder-1.bmp -------------------------------------------------------------------------------- /radio/wizard/elevons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/elevons.bmp -------------------------------------------------------------------------------- /radio/wizard/engine-0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/engine-0.bmp -------------------------------------------------------------------------------- /radio/wizard/engine-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/engine-1.bmp -------------------------------------------------------------------------------- /radio/wizard/flaps-1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/flaps-1.bmp -------------------------------------------------------------------------------- /radio/wizard/flaps-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/flaps-2.bmp -------------------------------------------------------------------------------- /radio/wizard/heli.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/heli.bmp -------------------------------------------------------------------------------- /radio/wizard/images/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/images/intro.png -------------------------------------------------------------------------------- /radio/wizard/mark.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/mark.bmp -------------------------------------------------------------------------------- /radio/wizard/multi-pitch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/multi-pitch.bmp -------------------------------------------------------------------------------- /radio/wizard/multi-roll.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/multi-roll.bmp -------------------------------------------------------------------------------- /radio/wizard/multi-thr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/multi-thr.bmp -------------------------------------------------------------------------------- /radio/wizard/multi-yaw.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/multi-yaw.bmp -------------------------------------------------------------------------------- /radio/wizard/multi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/multi.lua -------------------------------------------------------------------------------- /radio/wizard/plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/plane.bmp -------------------------------------------------------------------------------- /radio/wizard/plane.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/plane.lua -------------------------------------------------------------------------------- /radio/wizard/quadri.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/quadri.bmp -------------------------------------------------------------------------------- /radio/wizard/servo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/servo.bmp -------------------------------------------------------------------------------- /radio/wizard/tail-e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/tail-e.bmp -------------------------------------------------------------------------------- /radio/wizard/tail-eer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/tail-eer.bmp -------------------------------------------------------------------------------- /radio/wizard/tail-er.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/tail-er.bmp -------------------------------------------------------------------------------- /radio/wizard/tail-v.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/tail-v.bmp -------------------------------------------------------------------------------- /radio/wizard/wizard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/radio/wizard/wizard.lua -------------------------------------------------------------------------------- /sound/.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | -------------------------------------------------------------------------------- /sound/OpenTXSound.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/OpenTXSound.sln -------------------------------------------------------------------------------- /sound/recorder/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXrecorder.suo 2 | /bin/* 3 | /obj/* 4 | *.csproj.user 5 | -------------------------------------------------------------------------------- /sound/recorder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/App.xaml -------------------------------------------------------------------------------- /sound/recorder/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/App.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/GPLv3_Logo.png -------------------------------------------------------------------------------- /sound/recorder/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/MainWindow.xaml -------------------------------------------------------------------------------- /sound/recorder/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/MainWindow.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/OpenTXRecorder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/OpenTXRecorder.csproj -------------------------------------------------------------------------------- /sound/recorder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/Program.cs -------------------------------------------------------------------------------- /sound/recorder/WaveIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/WaveIn.cs -------------------------------------------------------------------------------- /sound/recorder/WaveNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/WaveNative.cs -------------------------------------------------------------------------------- /sound/recorder/aboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/aboutWindow.xaml -------------------------------------------------------------------------------- /sound/recorder/aboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/aboutWindow.xaml.cs -------------------------------------------------------------------------------- /sound/recorder/clsWaveProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/clsWaveProcessor.cs -------------------------------------------------------------------------------- /sound/recorder/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/icon.ico -------------------------------------------------------------------------------- /sound/recorder/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/play.png -------------------------------------------------------------------------------- /sound/recorder/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/record.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/recorder_logo.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/recorder_logo.xcf -------------------------------------------------------------------------------- /sound/recorder/sentencetables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/sentencetables.cs -------------------------------------------------------------------------------- /sound/recorder/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/recorder/stop.png -------------------------------------------------------------------------------- /sound/speaker/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXspeaker.suo 2 | /bin/* 3 | /obj/* 4 | -------------------------------------------------------------------------------- /sound/speaker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/App.xaml -------------------------------------------------------------------------------- /sound/speaker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/App.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/GPLv3_Logo.png -------------------------------------------------------------------------------- /sound/speaker/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/MainWindow.xaml -------------------------------------------------------------------------------- /sound/speaker/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/MainWindow.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/OpenTXspeaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/OpenTXspeaker.csproj -------------------------------------------------------------------------------- /sound/speaker/OpenTXspeaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/OpenTXspeaker.sln -------------------------------------------------------------------------------- /sound/speaker/aboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/aboutWindow.xaml -------------------------------------------------------------------------------- /sound/speaker/aboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/aboutWindow.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/eSpeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/eSpeak.png -------------------------------------------------------------------------------- /sound/speaker/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/icon.ico -------------------------------------------------------------------------------- /sound/speaker/installvoices.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/installvoices.xaml -------------------------------------------------------------------------------- /sound/speaker/installvoices.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/installvoices.xaml.cs -------------------------------------------------------------------------------- /sound/speaker/sentencetables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/sentencetables.cs -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/speaker_logo.png -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/speaker_logo.xcf -------------------------------------------------------------------------------- /sound/speaker/speaker_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmrttmrt/opentx/HEAD/sound/speaker/speaker_logo_small.png --------------------------------------------------------------------------------