├── sound ├── .gitignore ├── speaker │ ├── .gitignore │ ├── icon.ico │ ├── eSpeak.png │ ├── GPLv3_Logo.png │ ├── speaker_logo.png │ ├── speaker_logo.xcf │ └── speaker_logo_small.png └── recorder │ ├── .gitignore │ ├── icon.ico │ ├── play.png │ ├── stop.png │ ├── record.png │ ├── GPLv3_Logo.png │ ├── recorder_logo.png │ ├── recorder_logo.xcf │ └── recorder_logo_small.png ├── radio ├── .gitignore ├── util │ ├── .gitignore │ └── voices_ru.psv ├── src │ ├── bitmaps │ │ ├── .gitignore │ │ ├── 212x64 │ │ │ ├── .gitignore │ │ │ ├── lock.png │ │ │ ├── logo.png │ │ │ ├── about.png │ │ │ ├── icons.png │ │ │ ├── sleep.png │ │ │ ├── splash.png │ │ │ ├── startup.png │ │ │ ├── asterisk.png │ │ │ ├── shutdown.png │ │ │ ├── std │ │ │ │ ├── files.png │ │ │ │ ├── mixer.png │ │ │ │ ├── curves.png │ │ │ │ ├── hardware.png │ │ │ │ ├── inputs.png │ │ │ │ ├── servos.png │ │ │ │ ├── trainer.png │ │ │ │ ├── version.png │ │ │ │ ├── heli_setup.png │ │ │ │ ├── logical_sw.png │ │ │ │ └── telemetry.png │ │ │ ├── splash_frsky.png │ │ │ └── bf_logo_212_64.png │ │ ├── 128x64 │ │ │ ├── about.png │ │ │ ├── sleep.png │ │ │ ├── splash.png │ │ │ ├── asterisk.png │ │ │ ├── splash_frsky.png │ │ │ └── bf_logo_128_64.png │ │ ├── CMakeLists.txt │ │ └── 480x272 │ │ │ ├── mask_dot.png │ │ │ ├── bmp_splash.png │ │ │ ├── mask_point.png │ │ │ ├── mask_rscale.png │ │ │ ├── mask_timer.png │ │ │ ├── mask_txbat.png │ │ │ ├── mask_cvpoint.png │ │ │ └── mask_timer_bg.png │ ├── lua │ │ └── .gitignore │ ├── fonts │ │ ├── CMakeLists.txt │ │ ├── .gitignore │ │ ├── extra_11px.png │ │ ├── extra_16px.png │ │ ├── Kanit │ │ │ ├── Kanit-Bold.ttf │ │ │ ├── Kanit-Thin.ttf │ │ │ ├── Kanit-Black.ttf │ │ │ ├── Kanit-Italic.ttf │ │ │ ├── Kanit-Light.ttf │ │ │ ├── Kanit-Medium.ttf │ │ │ ├── Kanit-ExtraBold.ttf │ │ │ ├── Kanit-Regular.ttf │ │ │ ├── Kanit-SemiBold.ttf │ │ │ ├── Kanit-BlackItalic.ttf │ │ │ ├── Kanit-BoldItalic.ttf │ │ │ ├── Kanit-ExtraLight.ttf │ │ │ ├── Kanit-LightItalic.ttf │ │ │ └── Kanit-ThinItalic.ttf │ │ ├── sqt5 │ │ │ ├── font_03x05.png │ │ │ ├── font_04x06.png │ │ │ ├── font_05x07.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.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 │ │ │ ├── font_04x06_extra.png │ │ │ ├── font_05x07_avr.png │ │ │ ├── font_05x07_extra.png │ │ │ ├── font_10x14_extra.png │ │ │ └── font_22x38_num.png │ │ ├── std │ │ │ ├── font_03x05.png │ │ │ ├── font_04x06.png │ │ │ ├── font_05x07.png │ │ │ ├── font_08x10.png │ │ │ ├── font_10x14.png │ │ │ ├── font_05x07_avr.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 │ │ │ ├── font_04x06_extra.png │ │ │ ├── font_05x07_extra.png │ │ │ └── font_10x14_extra.png │ │ ├── Roboto │ │ │ ├── Roboto-Bold.ttf │ │ │ └── Roboto-Regular.ttf │ │ ├── Ubuntu │ │ │ ├── Ubuntu-Bold.ttf │ │ │ ├── Ubuntu-Italic.ttf │ │ │ ├── Ubuntu-Light.ttf │ │ │ ├── Ubuntu-Medium.ttf │ │ │ └── Ubuntu-Regular.ttf │ │ └── 480x272 │ │ │ ├── font_dblsize.png │ │ │ ├── font_midsize.png │ │ │ ├── font_smlsize.png │ │ │ ├── font_stdsize.png │ │ │ ├── font_tinsize.png │ │ │ └── font_xxlsize.png │ ├── tests │ │ ├── location.h.in │ │ ├── plane.bmp │ │ ├── 1b_39x32.bmp │ │ ├── 1b_6x32.bmp │ │ ├── 4b_20x20.bmp │ │ ├── 4b_31x31.bmp │ │ ├── 4b_7x32.bmp │ │ ├── fonts_480x272.png │ │ ├── vline_128x64.png │ │ ├── vline_212x64.png │ │ ├── vline_480x272.png │ │ ├── dblsize_128x64.png │ │ ├── dblsize_212x64.png │ │ ├── line_wrap_128x64.png │ │ ├── line_wrap_212x64.png │ │ ├── midsize_128x64.png │ │ ├── midsize_212x64.png │ │ ├── smlsize_128x64.png │ │ ├── smlsize_212x64.png │ │ ├── stdsize_128x64.png │ │ ├── stdsize_212x64.png │ │ ├── unsigned_128x64.png │ │ ├── unsigned_212x64.png │ │ ├── vline_lt0_128x64.png │ │ ├── vline_lt0_212x64.png │ │ ├── big_numbers_128x64.png │ │ ├── big_numbers_212x64.png │ │ ├── bmpwrapping_212x64.png │ │ ├── drawswitch_212x64.png │ │ ├── invers_0_0_128x64.png │ │ ├── invers_0_0_212x64.png │ │ ├── invers_0_1_128x64.png │ │ ├── invers_0_1_212x64.png │ │ ├── lcdDrawLine_128x64.png │ │ ├── lcdDrawLine_212x64.png │ │ ├── prec2_left_128x64.png │ │ ├── prec2_left_212x64.png │ │ ├── prec2_right_128x64.png │ │ ├── prec2_right_212x64.png │ │ ├── primitives_480x272.png │ │ ├── arm_unsigned_128x64.png │ │ └── transparency_480x272.png │ └── thirdparty │ │ ├── GCS_MAVLink │ │ └── .gitignore │ │ └── Lua │ │ └── doc │ │ └── logo.gif └── sdcard │ ├── horus │ ├── SCRIPTS │ │ ├── MIXES │ │ │ └── readme.txt │ │ └── FUNCTIONS │ │ │ └── readme.txt │ ├── SxR │ │ └── img │ │ │ ├── up.png │ │ │ ├── back.png │ │ │ ├── done.bmp │ │ │ ├── down.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ ├── vert.png │ │ │ ├── delta_b.png │ │ │ ├── forward.png │ │ │ ├── plane_b.png │ │ │ ├── vert-r.png │ │ │ ├── planev_b.png │ │ │ └── planev_s.png │ ├── LOGS │ │ └── readme.txt │ └── THEMES │ │ ├── Default │ │ ├── X10.bmp │ │ ├── X10S.bmp │ │ ├── busy.bmp │ │ ├── horus.bmp │ │ ├── sleep.bmp │ │ └── thumb.bmp │ │ ├── TBS │ │ └── thumb.bmp │ │ └── Darkblue │ │ ├── X10.bmp │ │ ├── X10S.bmp │ │ └── busy.bmp │ ├── taranis-x7 │ ├── SCRIPTS │ │ ├── MIXES │ │ │ └── readme.txt │ │ └── FUNCTIONS │ │ │ └── readme.txt │ ├── LOGS │ │ └── readme.txt │ └── SCREENSHOTS │ │ └── readme.txt │ └── taranis-x9 │ ├── SCRIPTS │ ├── MIXES │ │ └── readme.txt │ └── FUNCTIONS │ │ └── readme.txt │ ├── LOGS │ └── readme.txt │ ├── SxR │ └── bmp │ │ ├── up.bmp │ │ ├── back.bmp │ │ ├── delta.bmp │ │ ├── done.bmp │ │ ├── down.bmp │ │ ├── horz.bmp │ │ ├── left.bmp │ │ ├── plane.bmp │ │ ├── right.bmp │ │ ├── vert.bmp │ │ ├── vtail.bmp │ │ ├── forward.bmp │ │ ├── horz-r.bmp │ │ └── vert-r.bmp │ └── SCREENSHOTS │ └── readme.txt ├── jenkins └── .gitignore ├── launchpad └── common │ └── .gitignore ├── companion ├── src │ ├── images │ │ ├── .gitignore │ │ ├── maps.png │ │ ├── originals │ │ │ ├── scripts │ │ │ │ └── makewhite.sh │ │ │ ├── 9CX.xcf │ │ │ ├── 9xdb.xcf │ │ │ ├── splash.xcf │ │ │ ├── 9xdb-bl.xcf │ │ │ ├── 9xdb-gr.xcf │ │ │ ├── 9xdb-or.xcf │ │ │ ├── 9xdb-rd.xcf │ │ │ ├── 9xdb-yl.xcf │ │ │ ├── splasht.xcf │ │ │ └── customize.xcf │ │ ├── splash.png │ │ ├── track.png │ │ ├── track0.png │ │ ├── iconmac.icns │ │ ├── customize.png │ │ ├── screenshot.png │ │ ├── taranison.png │ │ ├── wizard │ │ │ ├── gyro.png │ │ │ ├── tail.png │ │ │ ├── cyclic.png │ │ │ ├── flaps.png │ │ │ ├── flybar.png │ │ │ ├── models.png │ │ │ ├── rudder.png │ │ │ ├── tails.png │ │ │ ├── vtail.png │ │ │ ├── ailerons.png │ │ │ ├── airbrakes.png │ │ │ ├── elevons.png │ │ │ ├── fblheli.png │ │ │ ├── helictrl.png │ │ │ ├── options.png │ │ │ ├── throttle.png │ │ │ ├── wingtype.png │ │ │ ├── conclusion.png │ │ │ ├── multirotor.png │ │ │ └── simpletail.png │ │ ├── library │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ ├── 00014.png │ │ │ ├── 00015.png │ │ │ ├── 00016.png │ │ │ ├── 00017.png │ │ │ ├── 00018.png │ │ │ ├── 00019.png │ │ │ ├── 00020.png │ │ │ ├── 00021.png │ │ │ ├── 00022.png │ │ │ ├── 00050.png │ │ │ ├── 00051.png │ │ │ ├── 00052.png │ │ │ ├── 00053.png │ │ │ ├── 00054.png │ │ │ ├── 00055.png │ │ │ ├── 00056.png │ │ │ ├── 00057.png │ │ │ ├── 00058.png │ │ │ ├── 00059.png │ │ │ ├── 00060.png │ │ │ ├── 00061.png │ │ │ ├── 00062.png │ │ │ ├── 00063.png │ │ │ ├── 00064.png │ │ │ ├── 00065.png │ │ │ ├── 00066.png │ │ │ ├── 00100.png │ │ │ ├── 00101.png │ │ │ ├── 00102.png │ │ │ ├── 00103.png │ │ │ ├── 00104.png │ │ │ ├── 00105.png │ │ │ ├── 00106.png │ │ │ ├── 00201.png │ │ │ ├── 00202.png │ │ │ ├── 00203.png │ │ │ ├── 00204.png │ │ │ ├── 00301.png │ │ │ ├── 00302.png │ │ │ ├── 00303.png │ │ │ ├── 00304.png │ │ │ ├── 00401.png │ │ │ ├── 00402.png │ │ │ ├── 00403.png │ │ │ ├── 00404.png │ │ │ ├── 00501.png │ │ │ ├── 10001.png │ │ │ ├── 10002.png │ │ │ ├── 10003.png │ │ │ ├── 10101.png │ │ │ ├── 10102.png │ │ │ ├── 10103.png │ │ │ ├── 10501.png │ │ │ ├── 10502.png │ │ │ ├── 10503.png │ │ │ ├── 10504.png │ │ │ ├── 10505.png │ │ │ ├── 10506.png │ │ │ ├── 10508.png │ │ │ ├── 10601.png │ │ │ ├── 10701.png │ │ │ ├── 10702.png │ │ │ ├── 10801.png │ │ │ └── 10802.png │ │ ├── companion-title.png │ │ ├── simulator │ │ │ ├── X7 │ │ │ │ ├── top.png │ │ │ │ ├── left.png │ │ │ │ └── right.png │ │ │ ├── 9X │ │ │ │ ├── 9xdb.png │ │ │ │ ├── 9xdl.png │ │ │ │ ├── 9xdr.png │ │ │ │ ├── 9xdt.png │ │ │ │ ├── 9xcurs.png │ │ │ │ ├── 9xcursup.png │ │ │ │ ├── 9xdb-bl.png │ │ │ │ └── 9xdb-gr.png │ │ │ ├── X10 │ │ │ │ ├── left.png │ │ │ │ └── top.png │ │ │ ├── X12 │ │ │ │ ├── led.png │ │ │ │ ├── left.png │ │ │ │ └── top.png │ │ │ └── X9E │ │ │ │ ├── left.png │ │ │ │ └── top.png │ │ └── splash22_3_dmg.png │ ├── thirdparty │ │ ├── miniz │ │ │ └── CMakeLists.txt │ │ └── maxlibqt │ │ │ └── src │ │ │ └── widgets │ │ │ ├── TimerEdit │ │ │ └── ExportableTableView │ ├── icon.rc │ ├── icon.ico │ ├── icon.png │ ├── version.h.in │ └── themes │ │ ├── yerico │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── moveup.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── movedown.png │ │ │ ├── profiles.png │ │ │ └── simulate.png │ │ ├── 24 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── moveup.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── movedown.png │ │ │ ├── profiles.png │ │ │ └── simulate.png │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── moveup.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── movedown.png │ │ │ ├── profiles.png │ │ │ └── simulate.png │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── moveup.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── stop.png │ │ │ ├── update.png │ │ │ ├── wizard.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── movedown.png │ │ │ ├── profiles.png │ │ │ └── simulate.png │ │ ├── classic │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── moveup.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── 24 │ │ │ ├── add.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── moveup.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── moveup.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── compare.png │ │ │ ├── library.png │ │ │ ├── moveup.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── monoblue │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── play.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── clear.png │ │ │ ├── fuses.png │ │ │ ├── moveup.png │ │ │ ├── paste.png │ │ │ ├── print.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── 24 │ │ │ ├── add.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── play.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── clear.png │ │ │ ├── fuses.png │ │ │ ├── moveup.png │ │ │ ├── paste.png │ │ │ ├── print.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── play.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── clear.png │ │ │ ├── fuses.png │ │ │ ├── moveup.png │ │ │ ├── paste.png │ │ │ ├── print.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── play.png │ │ │ ├── save.png │ │ │ ├── stop.png │ │ │ ├── clear.png │ │ │ ├── fuses.png │ │ │ ├── moveup.png │ │ │ ├── paste.png │ │ │ ├── print.png │ │ │ ├── saveas.png │ │ │ ├── sdsync.png │ │ │ ├── update.png │ │ │ └── wizard.png │ │ ├── monowhite │ │ ├── 16 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ └── stop.png │ │ ├── 24 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ └── stop.png │ │ ├── 32 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ └── stop.png │ │ └── 48 │ │ │ ├── add.png │ │ │ ├── cut.png │ │ │ ├── new.png │ │ │ ├── clear.png │ │ │ ├── copy.png │ │ │ ├── edit.png │ │ │ ├── exit.png │ │ │ ├── fuses.png │ │ │ ├── list.png │ │ │ ├── logs.png │ │ │ ├── open.png │ │ │ ├── paste.png │ │ │ ├── play.png │ │ │ ├── print.png │ │ │ ├── save.png │ │ │ └── stop.png │ │ └── monochrome │ │ ├── 16 │ │ ├── add.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── edit.png │ │ ├── exit.png │ │ ├── list.png │ │ ├── logs.png │ │ ├── new.png │ │ ├── open.png │ │ ├── play.png │ │ ├── save.png │ │ └── stop.png │ │ ├── 24 │ │ ├── add.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── edit.png │ │ ├── exit.png │ │ ├── list.png │ │ ├── logs.png │ │ ├── new.png │ │ ├── open.png │ │ ├── play.png │ │ ├── save.png │ │ └── stop.png │ │ ├── 32 │ │ ├── add.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── edit.png │ │ ├── exit.png │ │ ├── list.png │ │ ├── logs.png │ │ ├── new.png │ │ ├── open.png │ │ ├── play.png │ │ ├── save.png │ │ └── stop.png │ │ └── 48 │ │ ├── add.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── edit.png │ │ ├── exit.png │ │ ├── list.png │ │ ├── logs.png │ │ ├── new.png │ │ ├── open.png │ │ ├── play.png │ │ ├── save.png │ │ └── stop.png └── targets │ ├── mac │ └── DS_Store │ ├── windows │ ├── avrdude.exe │ ├── dfu-util.exe │ ├── libusb0.dll │ └── libusb-1.0.dll │ └── linux │ └── 45-companion-taranis.rules └── doc └── Mega2560 ├── MEGA2560_SCH.pdf ├── MEGA2560_pcb.pdf ├── MEGA2560_Listing.xls ├── MEGA2560_Bootloader.rar ├── MEGA2560_Arduino_sch.pdf ├── MEGA2560_Pin_Mapping.xls ├── MEGA2560_Flash_Procedure.pdf ├── MEGA2560_LCD_Configuration.pdf └── MEGA2560_NextStepRC_Radio.rar /sound/.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | -------------------------------------------------------------------------------- /radio/.gitignore: -------------------------------------------------------------------------------- 1 | /gtest-1.6.0 2 | -------------------------------------------------------------------------------- /jenkins/.gitignore: -------------------------------------------------------------------------------- 1 | /settings.sh 2 | -------------------------------------------------------------------------------- /radio/util/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pyc 2 | 3 | -------------------------------------------------------------------------------- /launchpad/common/.gitignore: -------------------------------------------------------------------------------- 1 | /suffix 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /*.lbm 2 | -------------------------------------------------------------------------------- /radio/src/lua/.gitignore: -------------------------------------------------------------------------------- 1 | /lua_exports_*.inc 2 | -------------------------------------------------------------------------------- /companion/src/images/.gitignore: -------------------------------------------------------------------------------- 1 | */*.directory 2 | -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/.gitignore: -------------------------------------------------------------------------------- 1 | /mainmenu.png 2 | -------------------------------------------------------------------------------- /radio/src/fonts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(480x272) 2 | -------------------------------------------------------------------------------- /companion/src/thirdparty/miniz/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DFOO) -------------------------------------------------------------------------------- /radio/src/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | /*/*.lbm 2 | /font_*.png 3 | /font_*.specs 4 | -------------------------------------------------------------------------------- /radio/src/tests/location.h.in: -------------------------------------------------------------------------------- 1 | #define TESTS_PATH "@TESTS_PATH@" 2 | -------------------------------------------------------------------------------- /sound/speaker/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXspeaker.suo 2 | /bin/* 3 | /obj/* 4 | -------------------------------------------------------------------------------- /radio/src/thirdparty/GCS_MAVLink/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | doc/html 3 | doc/*.log 4 | -------------------------------------------------------------------------------- /companion/src/thirdparty/maxlibqt/src/widgets/TimerEdit: -------------------------------------------------------------------------------- 1 | #include "TimerEdit.h" 2 | -------------------------------------------------------------------------------- /companion/src/icon.rc: -------------------------------------------------------------------------------- 1 | IDI_ICON1 ICON DISCARDABLE "icon.ico" 2 | -------------------------------------------------------------------------------- /radio/sdcard/horus/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SCRIPTS/MIXES/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua mixer scripts. 2 | -------------------------------------------------------------------------------- /sound/recorder/.gitignore: -------------------------------------------------------------------------------- 1 | /OpenTXrecorder.suo 2 | /bin/* 3 | /obj/* 4 | *.csproj.user 5 | -------------------------------------------------------------------------------- /companion/src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/icon.ico -------------------------------------------------------------------------------- /companion/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/icon.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /sound/recorder/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/icon.ico -------------------------------------------------------------------------------- /sound/recorder/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/play.png -------------------------------------------------------------------------------- /sound/recorder/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/stop.png -------------------------------------------------------------------------------- /sound/speaker/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/icon.ico -------------------------------------------------------------------------------- /companion/src/thirdparty/maxlibqt/src/widgets/ExportableTableView: -------------------------------------------------------------------------------- 1 | #include "ExportableTableView.h" 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SCRIPTS/FUNCTIONS/readme.txt: -------------------------------------------------------------------------------- 1 | This directory is for lua functions scripts. 2 | -------------------------------------------------------------------------------- /radio/src/tests/plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/plane.bmp -------------------------------------------------------------------------------- /radio/util/voices_ru.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/util/voices_ru.psv -------------------------------------------------------------------------------- /sound/recorder/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/record.png -------------------------------------------------------------------------------- /sound/speaker/eSpeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/eSpeak.png -------------------------------------------------------------------------------- /radio/src/tests/1b_39x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/1b_39x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/1b_6x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/1b_6x32.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_20x20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/4b_20x20.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_31x31.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/4b_31x31.bmp -------------------------------------------------------------------------------- /radio/src/tests/4b_7x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/4b_7x32.bmp -------------------------------------------------------------------------------- /sound/speaker/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/GPLv3_Logo.png -------------------------------------------------------------------------------- /companion/src/images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/maps.png -------------------------------------------------------------------------------- /companion/src/images/originals/scripts/makewhite.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mogrify -negate -level 0,0,0 *.png 3 | 4 | -------------------------------------------------------------------------------- /companion/src/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/splash.png -------------------------------------------------------------------------------- /companion/src/images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/track.png -------------------------------------------------------------------------------- /companion/src/images/track0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/track0.png -------------------------------------------------------------------------------- /companion/targets/mac/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/targets/mac/DS_Store -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_SCH.pdf -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_pcb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_pcb.pdf -------------------------------------------------------------------------------- /radio/src/fonts/extra_11px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/extra_11px.png -------------------------------------------------------------------------------- /radio/src/fonts/extra_16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/extra_16px.png -------------------------------------------------------------------------------- /sound/recorder/GPLv3_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/GPLv3_Logo.png -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/speaker_logo.png -------------------------------------------------------------------------------- /sound/speaker/speaker_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/speaker_logo.xcf -------------------------------------------------------------------------------- /companion/src/images/iconmac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/iconmac.icns -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Listing.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_Listing.xls -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/up.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/lock.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/logo.png -------------------------------------------------------------------------------- /radio/src/tests/fonts_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/fonts_480x272.png -------------------------------------------------------------------------------- /radio/src/tests/vline_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/vline_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/vline_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/vline_480x272.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/recorder_logo.png -------------------------------------------------------------------------------- /sound/recorder/recorder_logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/recorder_logo.xcf -------------------------------------------------------------------------------- /companion/src/images/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/customize.png -------------------------------------------------------------------------------- /companion/src/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/screenshot.png -------------------------------------------------------------------------------- /companion/src/images/taranison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/taranison.png -------------------------------------------------------------------------------- /companion/src/images/wizard/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/gyro.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/tail.png -------------------------------------------------------------------------------- /companion/src/version.h.in: -------------------------------------------------------------------------------- 1 | #define VERSION "@VERSION@" 2 | #define SIMULATOR_LIB_SEARCH_PATH "@SIMULATOR_LIB_PATH@" 3 | -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Bootloader.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_Bootloader.rar -------------------------------------------------------------------------------- /radio/sdcard/horus/LOGS/readme.txt: -------------------------------------------------------------------------------- 1 | Logs files created by "SD Logs" special function will be stored in this directory. 2 | -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/back.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/done.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/done.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/down.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/left.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/right.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/vert.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/about.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/icons.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/sleep.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/startup.png -------------------------------------------------------------------------------- /radio/src/bitmaps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(128x64) 2 | add_subdirectory(212x64) 3 | add_subdirectory(480x272) 4 | -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Thin.ttf -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_03x05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_03x05.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_10x14.png -------------------------------------------------------------------------------- /radio/src/tests/dblsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/dblsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/dblsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/dblsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/line_wrap_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/line_wrap_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/line_wrap_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/line_wrap_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/midsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/midsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/midsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/midsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/smlsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/smlsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/smlsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/smlsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/stdsize_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/stdsize_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/stdsize_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/unsigned_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/unsigned_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/unsigned_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/unsigned_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_lt0_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/vline_lt0_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/vline_lt0_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/vline_lt0_212x64.png -------------------------------------------------------------------------------- /sound/speaker/speaker_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/speaker/speaker_logo_small.png -------------------------------------------------------------------------------- /companion/src/images/library/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00001.png -------------------------------------------------------------------------------- /companion/src/images/library/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00002.png -------------------------------------------------------------------------------- /companion/src/images/library/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00003.png -------------------------------------------------------------------------------- /companion/src/images/library/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00004.png -------------------------------------------------------------------------------- /companion/src/images/library/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00005.png -------------------------------------------------------------------------------- /companion/src/images/library/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00006.png -------------------------------------------------------------------------------- /companion/src/images/library/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00007.png -------------------------------------------------------------------------------- /companion/src/images/library/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00008.png -------------------------------------------------------------------------------- /companion/src/images/library/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00009.png -------------------------------------------------------------------------------- /companion/src/images/library/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00010.png -------------------------------------------------------------------------------- /companion/src/images/library/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00011.png -------------------------------------------------------------------------------- /companion/src/images/library/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00012.png -------------------------------------------------------------------------------- /companion/src/images/library/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00013.png -------------------------------------------------------------------------------- /companion/src/images/library/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00014.png -------------------------------------------------------------------------------- /companion/src/images/library/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00015.png -------------------------------------------------------------------------------- /companion/src/images/library/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00016.png -------------------------------------------------------------------------------- /companion/src/images/library/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00017.png -------------------------------------------------------------------------------- /companion/src/images/library/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00018.png -------------------------------------------------------------------------------- /companion/src/images/library/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00019.png -------------------------------------------------------------------------------- /companion/src/images/library/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00020.png -------------------------------------------------------------------------------- /companion/src/images/library/00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00021.png -------------------------------------------------------------------------------- /companion/src/images/library/00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00022.png -------------------------------------------------------------------------------- /companion/src/images/library/00050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00050.png -------------------------------------------------------------------------------- /companion/src/images/library/00051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00051.png -------------------------------------------------------------------------------- /companion/src/images/library/00052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00052.png -------------------------------------------------------------------------------- /companion/src/images/library/00053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00053.png -------------------------------------------------------------------------------- /companion/src/images/library/00054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00054.png -------------------------------------------------------------------------------- /companion/src/images/library/00055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00055.png -------------------------------------------------------------------------------- /companion/src/images/library/00056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00056.png -------------------------------------------------------------------------------- /companion/src/images/library/00057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00057.png -------------------------------------------------------------------------------- /companion/src/images/library/00058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00058.png -------------------------------------------------------------------------------- /companion/src/images/library/00059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00059.png -------------------------------------------------------------------------------- /companion/src/images/library/00060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00060.png -------------------------------------------------------------------------------- /companion/src/images/library/00061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00061.png -------------------------------------------------------------------------------- /companion/src/images/library/00062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00062.png -------------------------------------------------------------------------------- /companion/src/images/library/00063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00063.png -------------------------------------------------------------------------------- /companion/src/images/library/00064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00064.png -------------------------------------------------------------------------------- /companion/src/images/library/00065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00065.png -------------------------------------------------------------------------------- /companion/src/images/library/00066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00066.png -------------------------------------------------------------------------------- /companion/src/images/library/00100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00100.png -------------------------------------------------------------------------------- /companion/src/images/library/00101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00101.png -------------------------------------------------------------------------------- /companion/src/images/library/00102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00102.png -------------------------------------------------------------------------------- /companion/src/images/library/00103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00103.png -------------------------------------------------------------------------------- /companion/src/images/library/00104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00104.png -------------------------------------------------------------------------------- /companion/src/images/library/00105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00105.png -------------------------------------------------------------------------------- /companion/src/images/library/00106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00106.png -------------------------------------------------------------------------------- /companion/src/images/library/00201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00201.png -------------------------------------------------------------------------------- /companion/src/images/library/00202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00202.png -------------------------------------------------------------------------------- /companion/src/images/library/00203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00203.png -------------------------------------------------------------------------------- /companion/src/images/library/00204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00204.png -------------------------------------------------------------------------------- /companion/src/images/library/00301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00301.png -------------------------------------------------------------------------------- /companion/src/images/library/00302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00302.png -------------------------------------------------------------------------------- /companion/src/images/library/00303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00303.png -------------------------------------------------------------------------------- /companion/src/images/library/00304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00304.png -------------------------------------------------------------------------------- /companion/src/images/library/00401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00401.png -------------------------------------------------------------------------------- /companion/src/images/library/00402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00402.png -------------------------------------------------------------------------------- /companion/src/images/library/00403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00403.png -------------------------------------------------------------------------------- /companion/src/images/library/00404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00404.png -------------------------------------------------------------------------------- /companion/src/images/library/00501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/00501.png -------------------------------------------------------------------------------- /companion/src/images/library/10001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10001.png -------------------------------------------------------------------------------- /companion/src/images/library/10002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10002.png -------------------------------------------------------------------------------- /companion/src/images/library/10003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10003.png -------------------------------------------------------------------------------- /companion/src/images/library/10101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10101.png -------------------------------------------------------------------------------- /companion/src/images/library/10102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10102.png -------------------------------------------------------------------------------- /companion/src/images/library/10103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10103.png -------------------------------------------------------------------------------- /companion/src/images/library/10501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10501.png -------------------------------------------------------------------------------- /companion/src/images/library/10502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10502.png -------------------------------------------------------------------------------- /companion/src/images/library/10503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10503.png -------------------------------------------------------------------------------- /companion/src/images/library/10504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10504.png -------------------------------------------------------------------------------- /companion/src/images/library/10505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10505.png -------------------------------------------------------------------------------- /companion/src/images/library/10506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10506.png -------------------------------------------------------------------------------- /companion/src/images/library/10508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10508.png -------------------------------------------------------------------------------- /companion/src/images/library/10601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10601.png -------------------------------------------------------------------------------- /companion/src/images/library/10701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10701.png -------------------------------------------------------------------------------- /companion/src/images/library/10702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10702.png -------------------------------------------------------------------------------- /companion/src/images/library/10801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10801.png -------------------------------------------------------------------------------- /companion/src/images/library/10802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/library/10802.png -------------------------------------------------------------------------------- /companion/src/images/originals/9CX.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9CX.xcf -------------------------------------------------------------------------------- /companion/src/images/wizard/cyclic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/cyclic.png -------------------------------------------------------------------------------- /companion/src/images/wizard/flaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/flaps.png -------------------------------------------------------------------------------- /companion/src/images/wizard/flybar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/flybar.png -------------------------------------------------------------------------------- /companion/src/images/wizard/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/models.png -------------------------------------------------------------------------------- /companion/src/images/wizard/rudder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/rudder.png -------------------------------------------------------------------------------- /companion/src/images/wizard/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/tails.png -------------------------------------------------------------------------------- /companion/src/images/wizard/vtail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/vtail.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/new.png -------------------------------------------------------------------------------- /companion/targets/windows/avrdude.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/targets/windows/avrdude.exe -------------------------------------------------------------------------------- /companion/targets/windows/dfu-util.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/targets/windows/dfu-util.exe -------------------------------------------------------------------------------- /companion/targets/windows/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/targets/windows/libusb0.dll -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Arduino_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_Arduino_sch.pdf -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Pin_Mapping.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_Pin_Mapping.xls -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/delta_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/delta_b.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/forward.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/plane_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/plane_b.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/vert-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/vert-r.png -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/LOGS/readme.txt: -------------------------------------------------------------------------------- 1 | Logs files created by "SD Logs" special function will be stored in this directory. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/LOGS/readme.txt: -------------------------------------------------------------------------------- 1 | Logs files created by "SD Logs" special function will be stored in this directory. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/up.bmp -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/asterisk.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/shutdown.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/files.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/mixer.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_dot.png -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Black.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Italic.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Light.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Medium.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Ubuntu/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fi_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fi_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fi_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fr_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fr_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fr_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_fr_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_fr_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_it_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_it_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_it_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_it_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_it_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pl_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pl_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pl_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pl_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pl_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pt_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pt_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pt_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_pt_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_pt_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_se_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_se_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_se_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_se_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_se_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07_avr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_05x07_avr.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_22x38_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_22x38_num.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_cz_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_cz_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_cz_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_cz_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_cz_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_de_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_de_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_de_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_de_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_de_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_es_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_es_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_es_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_es_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_es_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fi_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fi_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fi_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fi_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fi_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fr_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fr_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fr_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_fr_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_fr_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_it_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_it_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_it_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_it_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_it_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pl_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pl_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pl_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pl_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pl_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pt_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pt_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pt_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_pt_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_pt_10x14.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_04x06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_se_04x06.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_05x07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_se_05x07.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_08x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_se_08x10.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_se_10x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_se_10x14.png -------------------------------------------------------------------------------- /radio/src/tests/big_numbers_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/big_numbers_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/big_numbers_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/big_numbers_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/bmpwrapping_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/bmpwrapping_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/drawswitch_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/drawswitch_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/invers_0_0_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_0_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/invers_0_0_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_1_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/invers_0_1_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/invers_0_1_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/invers_0_1_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/lcdDrawLine_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/lcdDrawLine_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/lcdDrawLine_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/lcdDrawLine_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/prec2_left_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/prec2_left_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/prec2_left_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/prec2_left_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/prec2_right_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/prec2_right_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/prec2_right_212x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/prec2_right_212x64.png -------------------------------------------------------------------------------- /radio/src/tests/primitives_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/primitives_480x272.png -------------------------------------------------------------------------------- /radio/src/thirdparty/Lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/thirdparty/Lua/doc/logo.gif -------------------------------------------------------------------------------- /sound/recorder/recorder_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/sound/recorder/recorder_logo_small.png -------------------------------------------------------------------------------- /companion/src/images/companion-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/companion-title.png -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/splash.xcf -------------------------------------------------------------------------------- /companion/src/images/simulator/X7/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X7/top.png -------------------------------------------------------------------------------- /companion/src/images/splash22_3_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/splash22_3_dmg.png -------------------------------------------------------------------------------- /companion/src/images/wizard/ailerons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/ailerons.png -------------------------------------------------------------------------------- /companion/src/images/wizard/airbrakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/airbrakes.png -------------------------------------------------------------------------------- /companion/src/images/wizard/elevons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/elevons.png -------------------------------------------------------------------------------- /companion/src/images/wizard/fblheli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/fblheli.png -------------------------------------------------------------------------------- /companion/src/images/wizard/helictrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/helictrl.png -------------------------------------------------------------------------------- /companion/src/images/wizard/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/options.png -------------------------------------------------------------------------------- /companion/src/images/wizard/throttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/throttle.png -------------------------------------------------------------------------------- /companion/src/images/wizard/wingtype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/wingtype.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/clear.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/copy.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/edit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/exit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/list.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/logs.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/open.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/paste.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/play.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/print.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/save.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/stop.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/clear.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/copy.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/edit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/exit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/list.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/logs.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/open.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/paste.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/play.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/print.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/save.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/stop.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/clear.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/copy.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/edit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/exit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/list.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/logs.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/open.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/paste.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/play.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/print.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/save.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/stop.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/clear.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/copy.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/edit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/exit.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/list.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/logs.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/new.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/open.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/paste.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/play.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/print.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/save.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/list.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/open.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/play.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/save.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/list.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/open.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/play.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/save.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/list.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/open.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/play.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/save.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/list.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/new.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/open.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/play.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/save.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/new.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/clear.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/copy.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/edit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/exit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/list.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/logs.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/open.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/paste.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/play.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/print.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/save.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/stop.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/update.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/clear.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/copy.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/edit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/exit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/list.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/logs.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/open.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/paste.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/play.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/print.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/save.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/stop.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/update.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/clear.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/copy.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/edit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/exit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/list.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/logs.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/open.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/paste.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/play.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/print.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/save.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/stop.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/update.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/clear.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/copy.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/edit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/exit.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/list.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/logs.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/open.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/paste.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/play.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/print.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/save.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/stop.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/update.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/wizard.png -------------------------------------------------------------------------------- /companion/targets/windows/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/targets/windows/libusb-1.0.dll -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_Flash_Procedure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_Flash_Procedure.pdf -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/planev_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/planev_b.png -------------------------------------------------------------------------------- /radio/sdcard/horus/SxR/img/planev_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/SxR/img/planev_s.png -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/X10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/X10.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/TBS/thumb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/TBS/thumb.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/back.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/delta.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/delta.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/done.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/done.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/down.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/horz.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/horz.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/left.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/plane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/plane.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/right.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/vert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/vert.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/vtail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/vtail.bmp -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/splash_frsky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/splash_frsky.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/splash_frsky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/splash_frsky.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/curves.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/hardware.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/inputs.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/servos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/servos.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/trainer.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/version.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/bmp_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/bmp_splash.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_point.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_rscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_rscale.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_timer.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_txbat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_txbat.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_dblsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_dblsize.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_midsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_midsize.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_smlsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_smlsize.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_stdsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_stdsize.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_tinsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_tinsize.png -------------------------------------------------------------------------------- /radio/src/fonts/480x272/font_xxlsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/480x272/font_xxlsize.png -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-ExtraBold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-Regular.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-SemiBold.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Ubuntu/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Ubuntu/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Ubuntu/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Ubuntu/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Ubuntu/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_04x06_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_04x06_extra.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07_avr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_05x07_avr.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_05x07_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_05x07_extra.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_10x14_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_10x14_extra.png -------------------------------------------------------------------------------- /radio/src/fonts/sqt5/font_22x38_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/sqt5/font_22x38_num.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_04x06_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_04x06_extra.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_05x07_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_05x07_extra.png -------------------------------------------------------------------------------- /radio/src/fonts/std/font_10x14_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/std/font_10x14_extra.png -------------------------------------------------------------------------------- /radio/src/tests/arm_unsigned_128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/arm_unsigned_128x64.png -------------------------------------------------------------------------------- /radio/src/tests/transparency_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/tests/transparency_480x272.png -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb-bl.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb-bl.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb-gr.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb-gr.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb-or.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb-or.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb-rd.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb-rd.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/9xdb-yl.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/9xdb-yl.xcf -------------------------------------------------------------------------------- /companion/src/images/originals/splasht.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/splasht.xcf -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdb.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdl.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdr.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdt.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X10/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X10/left.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X10/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X10/top.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X12/led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X12/led.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X12/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X12/left.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X12/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X12/top.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X7/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X7/left.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X7/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X7/right.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X9E/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X9E/left.png -------------------------------------------------------------------------------- /companion/src/images/simulator/X9E/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/X9E/top.png -------------------------------------------------------------------------------- /companion/src/images/wizard/conclusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/conclusion.png -------------------------------------------------------------------------------- /companion/src/images/wizard/multirotor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/multirotor.png -------------------------------------------------------------------------------- /companion/src/images/wizard/simpletail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/wizard/simpletail.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/compare.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/library.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/update.png -------------------------------------------------------------------------------- /companion/src/themes/classic/16/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/16/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/compare.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/library.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/update.png -------------------------------------------------------------------------------- /companion/src/themes/classic/24/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/24/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/compare.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/library.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/update.png -------------------------------------------------------------------------------- /companion/src/themes/classic/32/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/32/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/compare.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/library.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/update.png -------------------------------------------------------------------------------- /companion/src/themes/classic/48/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/classic/48/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/print.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/update.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/16/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/16/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/print.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/update.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/24/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/24/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/print.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/update.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/32/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/32/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/moveup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/moveup.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/print.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/saveas.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/sdsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/sdsync.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/update.png -------------------------------------------------------------------------------- /companion/src/themes/monoblue/48/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monoblue/48/wizard.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/add.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/list.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/new.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/open.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/play.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/save.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/16/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/add.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/list.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/new.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/open.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/play.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/save.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/24/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/24/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/add.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/list.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/new.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/open.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/play.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/save.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/32/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/add.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/cut.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/list.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/new.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/open.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/play.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/save.png -------------------------------------------------------------------------------- /companion/src/themes/monochrome/48/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monochrome/48/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/list.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/open.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/play.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/print.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/save.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/16/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/16/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/list.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/open.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/play.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/print.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/save.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/24/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/24/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/list.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/open.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/play.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/print.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/save.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/32/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/32/stop.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/clear.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/copy.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/edit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/exit.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/fuses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/fuses.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/list.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/logs.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/open.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/paste.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/play.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/print.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/save.png -------------------------------------------------------------------------------- /companion/src/themes/monowhite/48/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/monowhite/48/stop.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/compare.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/library.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/movedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/movedown.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/profiles.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/16/simulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/16/simulate.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/compare.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/library.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/movedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/movedown.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/profiles.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/24/simulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/24/simulate.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/compare.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/library.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/movedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/movedown.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/profiles.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/32/simulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/32/simulate.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/compare.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/library.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/movedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/movedown.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/profiles.png -------------------------------------------------------------------------------- /companion/src/themes/yerico/48/simulate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/themes/yerico/48/simulate.png -------------------------------------------------------------------------------- /companion/targets/linux/45-companion-taranis.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE:="0666" 2 | -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_LCD_Configuration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_LCD_Configuration.pdf -------------------------------------------------------------------------------- /doc/Mega2560/MEGA2560_NextStepRC_Radio.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/doc/Mega2560/MEGA2560_NextStepRC_Radio.rar -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Darkblue/X10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Darkblue/X10.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Darkblue/X10S.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Darkblue/X10S.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Darkblue/busy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Darkblue/busy.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/X10S.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/X10S.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/busy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/busy.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/horus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/horus.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/sleep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/sleep.bmp -------------------------------------------------------------------------------- /radio/sdcard/horus/THEMES/Default/thumb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/horus/THEMES/Default/thumb.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x7/SCREENSHOTS/readme.txt: -------------------------------------------------------------------------------- 1 | Screenshots created by "Screenshot" special function will be stored in this directory. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SCREENSHOTS/readme.txt: -------------------------------------------------------------------------------- 1 | Screenshots created by "Screenshot" special function will be stored in this directory. 2 | -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/forward.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/forward.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/horz-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/horz-r.bmp -------------------------------------------------------------------------------- /radio/sdcard/taranis-x9/SxR/bmp/vert-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/sdcard/taranis-x9/SxR/bmp/vert-r.bmp -------------------------------------------------------------------------------- /radio/src/bitmaps/128x64/bf_logo_128_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/128x64/bf_logo_128_64.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/bf_logo_212_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/bf_logo_212_64.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/heli_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/heli_setup.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/logical_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/logical_sw.png -------------------------------------------------------------------------------- /radio/src/bitmaps/212x64/std/telemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/212x64/std/telemetry.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_cvpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_cvpoint.png -------------------------------------------------------------------------------- /radio/src/bitmaps/480x272/mask_timer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/bitmaps/480x272/mask_timer_bg.png -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-BlackItalic.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-BoldItalic.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-ExtraLight.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-LightItalic.ttf -------------------------------------------------------------------------------- /radio/src/fonts/Kanit/Kanit-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/radio/src/fonts/Kanit/Kanit-ThinItalic.ttf -------------------------------------------------------------------------------- /companion/src/images/originals/customize.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/originals/customize.xcf -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xcurs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xcurs.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xcursup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xcursup.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdb-bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdb-bl.png -------------------------------------------------------------------------------- /companion/src/images/simulator/9X/9xdb-gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeller/opentx/HEAD/companion/src/images/simulator/9X/9xdb-gr.png --------------------------------------------------------------------------------