Skip to content

Commit ba47ad4

Browse files
author
philmoz
committed
Testing for 320x240
1 parent eea9b85 commit ba47ad4

File tree

319 files changed

+129073
-535
lines changed

Some content is hidden

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

319 files changed

+129073
-535
lines changed

companion/src/companion.qrc

+11
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,17 @@
324324
<file>images/simulator/TX16S/left_tele.png</file>
325325
<file>images/simulator/TX16S/right_ent.png</file>
326326
<file>images/simulator/TX16S/right_mdl.png</file>
327+
<file>images/simulator/320x240/left.png</file>
328+
<file>images/simulator/320x240/right.png</file>
329+
<file>images/simulator/320x240/top.png</file>
330+
<file>images/simulator/320x240/bottom.png</file>
331+
<file>images/simulator/320x240/left_page.png</file>
332+
<file>images/simulator/320x240/left_page2.png</file>
333+
<file>images/simulator/320x240/left_rtn.png</file>
334+
<file>images/simulator/320x240/left_sys.png</file>
335+
<file>images/simulator/320x240/left_tele.png</file>
336+
<file>images/simulator/320x240/right_ent.png</file>
337+
<file>images/simulator/320x240/right_mdl.png</file>
327338
<file>images/simulator/NV14/left.png</file>
328339
<file>images/simulator/NV14/right.png</file>
329340
<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
}
@@ -267,6 +269,7 @@ int Boards::getFlashSize(Type board)
267269
case BOARD_FLYSKY_EL18:
268270
case BOARD_FLYSKY_PL18:
269271
case BOARD_FATFISH_F16:
272+
case BOARD_SMALL_LCD:
270273
return FSIZE_HORUS;
271274
case BOARD_UNKNOWN:
272275
return FSIZE_MAX;
@@ -581,6 +584,8 @@ QString Boards::getBoardName(Board::Type board)
581584
return "iFlight Commando 8";
582585
case BOARD_FATFISH_F16:
583586
return "Fatfish F16";
587+
case BOARD_SMALL_LCD:
588+
return "320x240 Test";
584589
default:
585590
return CPN_STR_UNKNOWN_ITEM;
586591
}
@@ -679,6 +684,7 @@ int Boards::getDefaultInternalModules(Board::Type board)
679684
case BOARD_JUMPER_TPRO:
680685
case BOARD_JUMPER_TPROV2:
681686
case BOARD_FLYSKY_PL18:
687+
case BOARD_SMALL_LCD:
682688
return (int)MODULE_TYPE_MULTIMODULE;
683689

684690
case BOARD_BETAFPV_LR3PRO:

companion/src/firmwares/boards.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ namespace Board {
8787
BOARD_RADIOMASTER_POCKET,
8888
BOARD_JUMPER_T20V2,
8989
BOARD_FATFISH_F16,
90+
BOARD_SMALL_LCD,
9091
BOARD_TYPE_COUNT,
9192
BOARD_TYPE_MAX = BOARD_TYPE_COUNT - 1
9293
};
@@ -516,7 +517,7 @@ inline bool IS_FATFISH_F16(Board::Type board)
516517

517518
inline bool IS_FAMILY_T16(Board::Type board)
518519
{
519-
return board == Board::BOARD_JUMPER_T15 || board == Board::BOARD_JUMPER_T16 || board == Board::BOARD_RADIOMASTER_TX16S || board == Board::BOARD_JUMPER_T18 || board == Board::BOARD_FATFISH_F16;
520+
return board == Board::BOARD_JUMPER_T15 || board == Board::BOARD_JUMPER_T16 || board == Board::BOARD_RADIOMASTER_TX16S || board == Board::BOARD_JUMPER_T18 || board == Board::BOARD_FATFISH_F16 || board == Board::BOARD_SMALL_LCD;
520521
}
521522

522523
inline bool IS_FAMILY_T12(Board::Type board)

companion/src/firmwares/opentx/opentxinterface.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ const char * OpenTxEepromInterface::getName()
143143
return "EdgeTX for iFlight Commando 8";
144144
case BOARD_FATFISH_F16:
145145
return "EdgeTX for Fatfish F16";
146+
case BOARD_SMALL_LCD:
147+
return "EdgeTX test for 320x240";
146148
default:
147149
return "Board is unknown to EdgeTX";
148150
}
@@ -706,6 +708,8 @@ int OpenTxFirmware::getCapability(::Capability capability)
706708
case LcdWidth:
707709
if (IS_FLYSKY_NV14(board) || IS_FLYSKY_EL18(board))
708710
return 320;
711+
else if (board == BOARD_SMALL_LCD)
712+
return 320;
709713
else if (IS_FLYSKY_PL18(board))
710714
return 480;
711715
else if (IS_FAMILY_HORUS_OR_T16(board))
@@ -719,6 +723,8 @@ int OpenTxFirmware::getCapability(::Capability capability)
719723
case LcdHeight:
720724
if (IS_FLYSKY_NV14(board) || IS_FLYSKY_EL18(board))
721725
return 480;
726+
else if (board == BOARD_SMALL_LCD)
727+
return 240;
722728
else if (IS_FLYSKY_PL18(board) || IS_JUMPER_T15(board))
723729
return 320;
724730
else if (IS_FAMILY_HORUS_OR_T16(board))
@@ -1559,6 +1565,12 @@ void registerOpenTxFirmwares()
15591565
firmware->addOption("flyskygimbals", Firmware::tr("Support hardware mod: FlySky Paladin EV Gimbals"));
15601566
registerOpenTxFirmware(firmware);
15611567

1568+
/* Test 320x240 */
1569+
firmware = new OpenTxFirmware(FIRMWAREID("smallLCD"), Firmware::tr("Test 320x240 LCD"), BOARD_SMALL_LCD);
1570+
addOpenTxFrskyOptions(firmware);
1571+
addOpenTxRfOptions(firmware, FLEX);
1572+
registerOpenTxFirmware(firmware);
1573+
15621574
/* Radiomaster Zorro board */
15631575
firmware = new OpenTxFirmware(FIRMWAREID("zorro"), QCoreApplication::translate("Firmware", "Radiomaster Zorro"), Board::BOARD_RADIOMASTER_ZORRO);
15641576
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
@@ -60,6 +60,7 @@ set(${PROJECT_NAME}_SRCS
6060
simulateduiwidgetX9LITE.cpp
6161
simulateduiwidgetXLITE.cpp
6262
simulateduiwidgetZorro.cpp
63+
simulateduiwidget320x240.cpp
6364
)
6465

6566
set(${PROJECT_NAME}_HDRS

companion/src/simulation/simulateduiwidget.h

+13
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ namespace Ui {
162162
class SimulatedUIWidgetNV14;
163163
class SimulatedUIWidgetEL18;
164164
class SimulatedUIWidgetPL18;
165+
class SimulatedUIWidget320x240;
165166
}
166167

167168
class SimulatedUIWidget9X: public SimulatedUIWidget
@@ -540,4 +541,16 @@ class SimulatedUIWidgetPL18: public SimulatedUIWidget
540541
Ui::SimulatedUIWidgetPL18 * ui;
541542
};
542543

544+
class SimulatedUIWidget320x240: public SimulatedUIWidget
545+
{
546+
Q_OBJECT
547+
548+
public:
549+
explicit SimulatedUIWidget320x240(SimulatorInterface * simulator, QWidget * parent = nullptr);
550+
virtual ~SimulatedUIWidget320x240();
551+
552+
private:
553+
Ui::SimulatedUIWidget320x240 * ui;
554+
};
555+
543556
#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(KEY_MODEL, 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(KEY_ENTER, 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(KEY_SYS, 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(KEY_TELE, 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(KEY_PAGEDN, 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(KEY_PAGEUP, 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(KEY_EXIT, 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)