Skip to content

Commit fd54b12

Browse files
author
philmoz
committed
Testing for 320x240
1 parent 8ac247e commit fd54b12

File tree

336 files changed

+129863
-1446
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+129863
-1446
lines changed

companion/src/companion.qrc

+11
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,17 @@
297297
<file>images/simulator/TX16S/left_tele.png</file>
298298
<file>images/simulator/TX16S/right_ent.png</file>
299299
<file>images/simulator/TX16S/right_mdl.png</file>
300+
<file>images/simulator/320x240/left.png</file>
301+
<file>images/simulator/320x240/right.png</file>
302+
<file>images/simulator/320x240/top.png</file>
303+
<file>images/simulator/320x240/bottom.png</file>
304+
<file>images/simulator/320x240/left_page.png</file>
305+
<file>images/simulator/320x240/left_page2.png</file>
306+
<file>images/simulator/320x240/left_rtn.png</file>
307+
<file>images/simulator/320x240/left_sys.png</file>
308+
<file>images/simulator/320x240/left_tele.png</file>
309+
<file>images/simulator/320x240/right_ent.png</file>
310+
<file>images/simulator/320x240/right_mdl.png</file>
300311
<file>images/simulator/NV14/left.png</file>
301312
<file>images/simulator/NV14/right.png</file>
302313
<file>images/simulator/NV14/top.png</file>

companion/src/firmwares/boards.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ uint32_t Boards::getFourCC(Type board)
158158
return 0x3A78746F;
159159
case BOARD_FLYSKY_PL18:
160160
return 0x4878746F;
161+
case BOARD_SMALL_LCD:
162+
return 0x3878746F;
161163
default:
162164
return 0;
163165
}
@@ -259,6 +261,7 @@ int Boards::getFlashSize(Type board)
259261
case BOARD_FLYSKY_NV14:
260262
case BOARD_FLYSKY_EL18:
261263
case BOARD_FLYSKY_PL18:
264+
case BOARD_SMALL_LCD:
262265
return FSIZE_HORUS;
263266
case BOARD_UNKNOWN:
264267
return FSIZE_MAX;
@@ -565,6 +568,8 @@ QString Boards::getBoardName(Board::Type board)
565568
return "BETAFPV LR3PRO";
566569
case BOARD_IFLIGHT_COMMANDO8:
567570
return "iFlight Commando 8";
571+
case BOARD_SMALL_LCD:
572+
return "320x240 Test";
568573
default:
569574
return CPN_STR_UNKNOWN_ITEM;
570575
}
@@ -660,6 +665,7 @@ int Boards::getDefaultInternalModules(Board::Type board)
660665
case BOARD_JUMPER_TPRO:
661666
case BOARD_JUMPER_TPROV2:
662667
case BOARD_FLYSKY_PL18:
668+
case BOARD_SMALL_LCD:
663669
return (int)MODULE_TYPE_MULTIMODULE;
664670

665671
case BOARD_BETAFPV_LR3PRO:

companion/src/firmwares/boards.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ namespace Board {
8282
BOARD_JUMPER_TPROV2,
8383
BOARD_RADIOMASTER_POCKET,
8484
BOARD_JUMPER_T20V2,
85+
BOARD_SMALL_LCD,
8586
BOARD_TYPE_COUNT,
8687
BOARD_TYPE_MAX = BOARD_TYPE_COUNT - 1
8788
};
@@ -492,7 +493,7 @@ inline bool IS_RADIOMASTER_T8(Board::Type board)
492493

493494
inline bool IS_FAMILY_T16(Board::Type board)
494495
{
495-
return board == Board::BOARD_JUMPER_T16 || board == Board::BOARD_RADIOMASTER_TX16S || board == Board::BOARD_JUMPER_T18;
496+
return board == Board::BOARD_JUMPER_T16 || board == Board::BOARD_RADIOMASTER_TX16S || board == Board::BOARD_JUMPER_T18 || board == Board::BOARD_SMALL_LCD;
496497
}
497498

498499
inline bool IS_FAMILY_T12(Board::Type board)

companion/src/firmwares/opentx/opentxinterface.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ const char * OpenTxEepromInterface::getName()
134134
return "EdgeTx for BETAFPV LR3PRO";
135135
case BOARD_IFLIGHT_COMMANDO8:
136136
return "EdgeTX for iFlight Commando 8";
137+
case BOARD_SMALL_LCD:
138+
return "EdgeTX test for 320x240";
137139
default:
138140
return "Board is unknown to EdgeTX";
139141
}
@@ -670,6 +672,8 @@ int OpenTxFirmware::getCapability(::Capability capability)
670672
case LcdWidth:
671673
if (IS_FLYSKY_NV14(board) || IS_FLYSKY_EL18(board))
672674
return 320;
675+
else if (board == BOARD_SMALL_LCD)
676+
return 320;
673677
else if (IS_FLYSKY_PL18(board))
674678
return 480;
675679
else if (IS_FAMILY_HORUS_OR_T16(board))
@@ -683,6 +687,8 @@ int OpenTxFirmware::getCapability(::Capability capability)
683687
case LcdHeight:
684688
if (IS_FLYSKY_NV14(board) || IS_FLYSKY_EL18(board))
685689
return 480;
690+
else if (board == BOARD_SMALL_LCD)
691+
return 240;
686692
else if (IS_FLYSKY_PL18(board))
687693
return 320;
688694
else if (IS_FAMILY_HORUS_OR_T16(board))
@@ -1503,6 +1509,12 @@ void registerOpenTxFirmwares()
15031509
firmware->addOption("flyskygimbals", Firmware::tr("Support hardware mod: FlySky Paladin EV Gimbals"));
15041510
registerOpenTxFirmware(firmware);
15051511

1512+
/* Test 320x240 */
1513+
firmware = new OpenTxFirmware(FIRMWAREID("smallLCD"), Firmware::tr("Test 320x240 LCD"), BOARD_SMALL_LCD);
1514+
addOpenTxFrskyOptions(firmware);
1515+
addOpenTxRfOptions(firmware, FLEX);
1516+
registerOpenTxFirmware(firmware);
1517+
15061518
/* Radiomaster Zorro board */
15071519
firmware = new OpenTxFirmware(FIRMWAREID("zorro"), QCoreApplication::translate("Firmware", "Radiomaster Zorro"), Board::BOARD_RADIOMASTER_ZORRO);
15081520
addOpenTxCommonOptions(firmware);
250 Bytes
Loading
31.4 KB
Loading
Loading
Loading
Loading
Loading
Loading
39.4 KB
Loading
Loading
Loading
439 Bytes
Loading

companion/src/simulation/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ set(${PROJECT_NAME}_SRCS
5656
simulateduiwidgetX9LITE.cpp
5757
simulateduiwidgetXLITE.cpp
5858
simulateduiwidgetZorro.cpp
59+
simulateduiwidget320x240.cpp
5960
)
6061

6162
set(${PROJECT_NAME}_HDRS

companion/src/simulation/simulateduiwidget.h

+13
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ namespace Ui {
129129
class SimulatedUIWidgetNV14;
130130
class SimulatedUIWidgetEL18;
131131
class SimulatedUIWidgetPL18;
132+
class SimulatedUIWidget320x240;
132133
}
133134

134135
class SimulatedUIWidget9X: public SimulatedUIWidget
@@ -459,4 +460,16 @@ class SimulatedUIWidgetPL18: public SimulatedUIWidget
459460
Ui::SimulatedUIWidgetPL18 * ui;
460461
};
461462

463+
class SimulatedUIWidget320x240: public SimulatedUIWidget
464+
{
465+
Q_OBJECT
466+
467+
public:
468+
explicit SimulatedUIWidget320x240(SimulatorInterface * simulator, QWidget * parent = nullptr);
469+
virtual ~SimulatedUIWidget320x240();
470+
471+
private:
472+
Ui::SimulatedUIWidget320x240 * ui;
473+
};
474+
462475
#endif // SIMULATEDUIWIDGET_H
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
* Copyright (C) OpenTX
3+
*
4+
* Based on code named
5+
* th9x - http://code.google.com/p/th9x
6+
* er9x - http://code.google.com/p/er9x
7+
* gruvin9x - http://code.google.com/p/gruvin9x
8+
*
9+
* License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
10+
*
11+
* This program is free software; you can redistribute it and/or modify
12+
* it under the terms of the GNU General Public License version 2 as
13+
* published by the Free Software Foundation.
14+
*
15+
* This program is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU General Public License for more details.
19+
*/
20+
21+
// NOTE: RadioUiAction(NUMBER,...): NUMBER relates to enum EnumKeys in the specific board.h
22+
23+
#include "simulateduiwidget.h"
24+
#include "ui_simulateduiwidget320x240.h"
25+
26+
SimulatedUIWidget320x240::SimulatedUIWidget320x240(SimulatorInterface *simulator, QWidget * parent):
27+
SimulatedUIWidget(simulator, parent),
28+
ui(new Ui::SimulatedUIWidget320x240)
29+
{
30+
RadioUiAction * act;
31+
32+
ui->setupUi(this);
33+
34+
// add actions in order of appearance on the help menu
35+
36+
act = new RadioUiAction(12, QList<int>() << Qt::Key_Up, SIMU_STR_HLP_KEY_UP, SIMU_STR_HLP_ACT_MDL);
37+
addRadioWidget(ui->rightbuttons->addArea(QRect(40, 0, 110, 35), "320x240/right_mdl.png", act));
38+
39+
m_mouseMidClickAction = new RadioUiAction(2, QList<int>() << Qt::Key_Enter << Qt::Key_Return, SIMU_STR_HLP_KEYS_ACTIVATE, SIMU_STR_HLP_ACT_ROT_DN);
40+
addRadioWidget(ui->rightbuttons->addArea(QRect(45, 70, 100, 160), "320x240/right_ent.png", m_mouseMidClickAction));
41+
42+
act = new RadioUiAction(14, QList<int>() << Qt::Key_Left, SIMU_STR_HLP_KEY_LFT, SIMU_STR_HLP_ACT_SYS);
43+
addRadioWidget(ui->leftbuttons->addArea(QRect(32, 1, 80, 35), "320x240/left_sys.png", act));
44+
45+
act = new RadioUiAction(13, QList<int>() << Qt::Key_Right, SIMU_STR_HLP_KEY_RGT, SIMU_STR_HLP_ACT_TELE);
46+
addRadioWidget(ui->leftbuttons->addArea(QRect(55, 220, 80, 35), "320x240/left_tele.png", act));
47+
48+
act = new RadioUiAction(5, QList<int>() << Qt::Key_PageDown, SIMU_STR_HLP_KEY_PGDN, SIMU_STR_HLP_ACT_PGDN);
49+
addRadioWidget(ui->leftbuttons->addArea(QRect(55, 115, 80, 35), "320x240/left_page.png", act));
50+
51+
act = new RadioUiAction(4, QList<int>() << Qt::Key_PageUp, SIMU_STR_HLP_KEY_PGUP, SIMU_STR_HLP_ACT_PGUP);
52+
addRadioWidget(ui->leftbuttons->addArea(QRect(55, 160, 80, 35), "320x240/left_page2.png", act));
53+
54+
act = new RadioUiAction(1, QList<int>() << Qt::Key_Down << Qt::Key_Delete << Qt::Key_Escape << Qt::Key_Backspace,
55+
SIMU_STR_HLP_KEY_DN % "<br>" % SIMU_STR_HLP_KEYS_EXIT, SIMU_STR_HLP_ACT_RTN);
56+
addRadioWidget(ui->leftbuttons->addArea(QRect(55, 55, 80, 35), "320x240/left_rtn.png", act));
57+
58+
m_scrollUpAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Minus, SIMU_STR_HLP_KEY_MIN % "|" % SIMU_STR_HLP_MOUSE_UP, SIMU_STR_HLP_ACT_ROT_LFT);
59+
m_scrollDnAction = new RadioUiAction(-1, QList<int>() << Qt::Key_Plus << Qt::Key_Equal, SIMU_STR_HLP_KEY_PLS % "|" % SIMU_STR_HLP_MOUSE_DN, SIMU_STR_HLP_ACT_ROT_RGT);
60+
connectScrollActions();
61+
62+
addRadioWidget(ui->leftbuttons->addArea(QRect(10, 245, 30, 30), "320x240/left_scrnsht.png", m_screenshotAction));
63+
64+
m_backlightColors << QColor(47, 123, 227);
65+
66+
setLcd(ui->lcd);
67+
}
68+
69+
SimulatedUIWidget320x240::~SimulatedUIWidget320x240()
70+
{
71+
delete ui;
72+
}

0 commit comments

Comments
 (0)