Compare commits
4 Commits
3e6bbe5e47
...
6543ac4d95
Author | SHA1 | Date | |
---|---|---|---|
6543ac4d95 | |||
6c2943f25e | |||
216ad67840 | |||
6e0fd1a3cf |
@ -87,6 +87,8 @@ typedef struct {
|
||||
float inv_r;
|
||||
float mot_l;
|
||||
float mot_r;
|
||||
float bat_l;
|
||||
float bat_r;
|
||||
} Temperatures;
|
||||
|
||||
typedef struct {
|
||||
|
@ -3,11 +3,19 @@
|
||||
#include "app_azure_rtos.h"
|
||||
#include "main.h"
|
||||
|
||||
#include "stm32h7xx_hal.h"
|
||||
#include "stm32h7xx_hal_dma.h"
|
||||
#include "stm32h7xx_hal_gpio.h"
|
||||
#include "stm32h7xx_hal_spi.h"
|
||||
#include "stm32h7xx_hal_tim.h"
|
||||
#include "tx_api.h"
|
||||
#include "vehicle.h"
|
||||
#include <stdint.h>
|
||||
|
||||
#define LED_SPEED_MIN 15 // km/h
|
||||
#define LED_SPEED_MAX 80 // km/h
|
||||
#define LED_SPEED_HUE_MIN 180.0f // °
|
||||
#define LED_SPEED_HUE_MAX 0.0f // °
|
||||
|
||||
SPI_HandleTypeDef *hspi;
|
||||
TIM_HandleTypeDef *htim;
|
||||
@ -66,9 +74,37 @@ void led_thread_entry(ULONG child_thread_stack_addr) {
|
||||
led_start_animation(ANIM_RAINBOW);
|
||||
while (1) {
|
||||
tx_thread_sleep(10);
|
||||
if (child_thread.tx_thread_state == TX_COMPLETED) {
|
||||
tx_thread_sleep(20);
|
||||
led_start_animation(ANIM_TE_STARTUP);
|
||||
if (child_thread.tx_thread_stack_start &&
|
||||
child_thread.tx_thread_state != TX_COMPLETED &&
|
||||
child_thread.tx_thread_state != TX_TERMINATED) {
|
||||
continue;
|
||||
}
|
||||
|
||||
float speed =
|
||||
(vehicle_state.speed - LED_SPEED_MIN) / (LED_SPEED_MAX - LED_SPEED_MIN);
|
||||
float num_leds_exact = speed * N_LEDS;
|
||||
num_leds_exact = fmin(N_LEDS, fmax(0, num_leds_exact));
|
||||
int num_leds = num_leds_exact;
|
||||
float num_leds_frac = num_leds_exact - num_leds;
|
||||
|
||||
float hue =
|
||||
LED_SPEED_HUE_MIN - speed * (LED_SPEED_HUE_MIN - LED_SPEED_HUE_MAX);
|
||||
hue = fmin(LED_SPEED_HUE_MIN, fmax(LED_SPEED_HUE_MAX, hue));
|
||||
uint8_t r, g, b;
|
||||
led_hsv_to_rgb(hue, 1.0f, 1.0f, &r, &g, &b);
|
||||
|
||||
// Fully illuminate first n LEDs
|
||||
for (int i = 0; i < num_leds; i++) {
|
||||
led_set(i, r, g, b);
|
||||
}
|
||||
// Partially illuminate n+1th LED
|
||||
if (num_leds < N_LEDS) {
|
||||
led_hsv_to_rgb(hue, 1.0f, num_leds_frac, &r, &g, &b);
|
||||
led_set(num_leds, r, g, b);
|
||||
}
|
||||
// Turn off all other LEDs
|
||||
for (int i = num_leds + 1; i < N_LEDS; i++) {
|
||||
led_set(i, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -160,7 +196,9 @@ void led_anim_knight_rider(ULONG _) {
|
||||
void led_anim_rainbow(ULONG _) {
|
||||
size_t tail = 0;
|
||||
float offset = 0.0f;
|
||||
while (1) {
|
||||
// Moving rainbow
|
||||
uint32_t start = HAL_GetTick();
|
||||
while (offset < 360) {
|
||||
for (size_t i = 0; i < N_LEDS; i++) {
|
||||
size_t led = (tail + i) % N_LEDS;
|
||||
uint8_t r, g, b;
|
||||
@ -168,7 +206,17 @@ void led_anim_rainbow(ULONG _) {
|
||||
led_hsv_to_rgb(hue, 1, 1, &r, &g, &b);
|
||||
led_set(led, r, g, b);
|
||||
}
|
||||
offset = fmodf(offset + 2.0f, 360.0f);
|
||||
offset = (HAL_GetTick() - start) / 5.0f;
|
||||
tx_thread_sleep(1);
|
||||
}
|
||||
// Fade-out
|
||||
for (float val = 1.0f; val > 0; val -= 0.1f) {
|
||||
for (size_t i = 0; i < N_LEDS; i++) {
|
||||
float hue = fmodf(offset + i * 360.0f / N_LEDS, 360.0f);
|
||||
uint8_t r, g, b;
|
||||
led_hsv_to_rgb(hue, 1, val, &r, &g, &b);
|
||||
led_set(i, r, g, b);
|
||||
}
|
||||
tx_thread_sleep(1);
|
||||
}
|
||||
}
|
||||
|
@ -92,6 +92,9 @@ void ftcan_msg_received_cb(uint16_t id, size_t datalen, const uint8_t *data) {
|
||||
ftcan_unmarshal_unsigned(&ptr, 2) * CAN_AMS_STATUS_VOLTAGE_FACTOR;
|
||||
vehicle_state.max_cell_temp =
|
||||
ftcan_unmarshal_signed(&ptr, 2) * CAN_AMS_STATUS_TEMP_FACTOR;
|
||||
// TODO: Separate temperatures for left and right side of battery
|
||||
vehicle_state.temps.bat_l = vehicle_state.max_cell_temp;
|
||||
vehicle_state.temps.bat_r = vehicle_state.max_cell_temp;
|
||||
break;
|
||||
case CAN_ID_AMS_ERROR:
|
||||
vehicle_state.last_ams_error.kind = data[0];
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 95 B After Width: | Height: | Size: 95 B |
@ -5,6 +5,9 @@
|
||||
</Languages>
|
||||
<Texts>
|
||||
<TextGroup Id="Status">
|
||||
<Text Id="LV" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB">LV</Translation>
|
||||
</Text>
|
||||
<Text Id="PDU" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB">PDU</Translation>
|
||||
</Text>
|
||||
@ -168,14 +171,17 @@
|
||||
</Text>
|
||||
</TextGroup>
|
||||
<TextGroup Id="Unsorted">
|
||||
<Text Id="__SingleUse_L1J7" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB">BAT</Translation>
|
||||
</Text>
|
||||
<Text Id="__SingleUse_F9I5" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB" />
|
||||
</Text>
|
||||
<Text Id="__SingleUse_JN2J" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB">MOTOR</Translation>
|
||||
<Translation Language="GB">MOT</Translation>
|
||||
</Text>
|
||||
<Text Id="__SingleUse_ZP7N" Alignment="Center" TypographyId="Chinat_Small">
|
||||
<Translation Language="GB">INVERTER</Translation>
|
||||
<Translation Language="GB">INV</Translation>
|
||||
</Text>
|
||||
<Text Id="__SingleUse_9L8R" Alignment="Left" TypographyId="Default">
|
||||
<Translation Language="GB"><value></Translation>
|
||||
|
@ -8,12 +8,12 @@
|
||||
#include <mvp/View.hpp>
|
||||
#include <gui/driverview_screen/DriverViewPresenter.hpp>
|
||||
#include <touchgfx/widgets/Box.hpp>
|
||||
#include <touchgfx/containers/Container.hpp>
|
||||
#include <touchgfx/containers/progress_indicators/LineProgress.hpp>
|
||||
#include <touchgfx/widgets/canvas/PainterRGB565.hpp>
|
||||
#include <touchgfx/widgets/TextArea.hpp>
|
||||
#include <touchgfx/containers/Container.hpp>
|
||||
#include <gui/containers/Temperature.hpp>
|
||||
#include <touchgfx/widgets/canvas/Line.hpp>
|
||||
#include <gui/containers/Temperature.hpp>
|
||||
#include <touchgfx/containers/scrollers/ScrollWheel.hpp>
|
||||
#include <gui/containers/DriverViewFieldSelection.hpp>
|
||||
#include <gui/containers/DriverViewField.hpp>
|
||||
@ -69,6 +69,7 @@ protected:
|
||||
* Member Declarations
|
||||
*/
|
||||
touchgfx::Box __background;
|
||||
touchgfx::Container SoC;
|
||||
touchgfx::LineProgress tsSoC;
|
||||
touchgfx::PainterRGB565 tsSoCPainter;
|
||||
touchgfx::LineProgress lvSoC;
|
||||
@ -76,11 +77,20 @@ protected:
|
||||
touchgfx::TextArea tsSoCLabel;
|
||||
touchgfx::TextArea lvSoCLabel;
|
||||
touchgfx::Container drivetrainTemps;
|
||||
touchgfx::TextArea motorTempLabel;
|
||||
Temperature motorTempL;
|
||||
Temperature motorTempR;
|
||||
touchgfx::Line batTempDiv;
|
||||
touchgfx::PainterRGB565 batTempDivPainter;
|
||||
Temperature batTempR;
|
||||
Temperature batTempL;
|
||||
touchgfx::TextArea batTempLabel;
|
||||
touchgfx::Line dtDiv2;
|
||||
touchgfx::PainterRGB565 dtDiv2Painter;
|
||||
touchgfx::Line motorTempDiv;
|
||||
touchgfx::PainterRGB565 motorTempDivPainter;
|
||||
Temperature motorTempR;
|
||||
Temperature motorTempL;
|
||||
touchgfx::TextArea motorTempLabel;
|
||||
touchgfx::Line dtDiv1;
|
||||
touchgfx::PainterRGB565 dtDiv1Painter;
|
||||
touchgfx::Line invTempDiv;
|
||||
touchgfx::PainterRGB565 invTempDivPainter;
|
||||
Temperature invTempR;
|
||||
@ -110,6 +120,7 @@ protected:
|
||||
DriverViewStatusItem statusSCS;
|
||||
DriverViewStatusItem statusPDU;
|
||||
DriverViewStatusItem statusINV;
|
||||
DriverViewStatusItem statusLV;
|
||||
touchgfx::BoxProgress progressBar;
|
||||
touchgfx::TextArea prechargeLabel;
|
||||
touchgfx::TextArea r2dLabel;
|
||||
|
@ -7,21 +7,21 @@
|
||||
|
||||
DriverViewFieldBase::DriverViewFieldBase()
|
||||
{
|
||||
setWidth(150);
|
||||
setWidth(152);
|
||||
setHeight(80);
|
||||
box.setPosition(0, 0, 150, 80);
|
||||
box.setPosition(0, 0, 152, 80);
|
||||
box.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
|
||||
box.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
box.setBorderSize(3);
|
||||
add(box);
|
||||
|
||||
title.setPosition(0, 0, 150, 25);
|
||||
title.setPosition(0, 0, 152, 25);
|
||||
title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
title.setLinespacing(0);
|
||||
title.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE));
|
||||
add(title);
|
||||
|
||||
value.setPosition(0, 20, 150, 57);
|
||||
value.setPosition(0, 20, 152, 57);
|
||||
value.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
value.setLinespacing(0);
|
||||
value.setTypedText(touchgfx::TypedText(T_NUMBERWILDCARD));
|
||||
|
@ -7,19 +7,19 @@
|
||||
|
||||
DriverViewFieldSelectionBase::DriverViewFieldSelectionBase()
|
||||
{
|
||||
setWidth(150);
|
||||
setWidth(152);
|
||||
setHeight(26);
|
||||
bg.setPosition(0, 0, 150, 25);
|
||||
bg.setPosition(0, 0, 152, 25);
|
||||
bg.setColor(touchgfx::Color::getColorFromRGB(34, 34, 34));
|
||||
add(bg);
|
||||
|
||||
name.setPosition(0, 0, 150, 25);
|
||||
name.setPosition(0, 0, 152, 25);
|
||||
name.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
name.setLinespacing(0);
|
||||
name.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE));
|
||||
add(name);
|
||||
|
||||
line1.setPosition(0, 25, 150, 1);
|
||||
line1.setPosition(0, 25, 152, 1);
|
||||
line1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
line1.setPainter(line1Painter);
|
||||
line1.setStart(0, 0);
|
||||
@ -37,7 +37,7 @@ DriverViewFieldSelectionBase::DriverViewFieldSelectionBase()
|
||||
line2.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
add(line2);
|
||||
|
||||
line2_1.setPosition(149, 0, 1, 26);
|
||||
line2_1.setPosition(151, 0, 1, 26);
|
||||
line2_1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
line2_1.setPainter(line2_1Painter);
|
||||
line2_1.setStart(0, 0);
|
||||
|
@ -7,15 +7,15 @@
|
||||
|
||||
DriverViewStatusItemBase::DriverViewStatusItemBase()
|
||||
{
|
||||
setWidth(75);
|
||||
setWidth(65);
|
||||
setHeight(33);
|
||||
bg.setPosition(0, 0, 75, 33);
|
||||
bg.setPosition(0, 0, 65, 33);
|
||||
bg.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
|
||||
bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
bg.setBorderSize(1);
|
||||
add(bg);
|
||||
|
||||
text.setPosition(0, 4, 75, 25);
|
||||
text.setPosition(0, 4, 65, 25);
|
||||
text.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
text.setLinespacing(0);
|
||||
text.setTypedText(touchgfx::TypedText(T___SINGLEUSE_F9I5));
|
||||
|
@ -7,21 +7,21 @@
|
||||
|
||||
ErrorPopupBase::ErrorPopupBase()
|
||||
{
|
||||
setWidth(450);
|
||||
setWidth(456);
|
||||
setHeight(150);
|
||||
bg.setPosition(0, 0, 450, 150);
|
||||
bg.setPosition(0, 0, 456, 150);
|
||||
bg.setColor(touchgfx::Color::getColorFromRGB(197, 14, 31));
|
||||
bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
bg.setBorderSize(5);
|
||||
add(bg);
|
||||
|
||||
title.setPosition(0, 0, 450, 49);
|
||||
title.setPosition(0, 0, 456, 49);
|
||||
title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
title.setLinespacing(0);
|
||||
title.setTypedText(touchgfx::TypedText(T___SINGLEUSE_1NKF));
|
||||
add(title);
|
||||
|
||||
details.setPosition(15, 60, 420, 75);
|
||||
details.setPosition(17, 60, 426, 75);
|
||||
details.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
details.setLinespacing(0);
|
||||
details.setTypedText(touchgfx::TypedText(T___SINGLEUSE_9L8R));
|
||||
|
@ -16,7 +16,8 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
__background.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
|
||||
add(__background);
|
||||
|
||||
tsSoC.setXY(15, 155);
|
||||
SoC.setPosition(12, 125, 152, 180);
|
||||
tsSoC.setXY(0, 25);
|
||||
tsSoC.setProgressIndicatorPosition(0, 0, 40, 150);
|
||||
tsSoC.setRange(0, 100);
|
||||
tsSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID));
|
||||
@ -27,9 +28,9 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
tsSoC.setLineWidth(100);
|
||||
tsSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING);
|
||||
tsSoC.setValue(60);
|
||||
add(tsSoC);
|
||||
SoC.add(tsSoC);
|
||||
|
||||
lvSoC.setXY(110, 155);
|
||||
lvSoC.setXY(95, 25);
|
||||
lvSoC.setProgressIndicatorPosition(0, 0, 40, 150);
|
||||
lvSoC.setRange(0, 100);
|
||||
lvSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID));
|
||||
@ -40,34 +41,55 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
lvSoC.setLineWidth(100);
|
||||
lvSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING);
|
||||
lvSoC.setValue(80);
|
||||
add(lvSoC);
|
||||
SoC.add(lvSoC);
|
||||
|
||||
tsSoCLabel.setPosition(15, 130, 40, 25);
|
||||
tsSoCLabel.setPosition(0, 0, 40, 25);
|
||||
tsSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
tsSoCLabel.setLinespacing(0);
|
||||
tsSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_PHFD));
|
||||
add(tsSoCLabel);
|
||||
SoC.add(tsSoCLabel);
|
||||
|
||||
lvSoCLabel.setPosition(110, 130, 40, 25);
|
||||
lvSoCLabel.setPosition(95, 0, 40, 25);
|
||||
lvSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
lvSoCLabel.setLinespacing(0);
|
||||
lvSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_4OBM));
|
||||
add(lvSoCLabel);
|
||||
SoC.add(lvSoCLabel);
|
||||
|
||||
drivetrainTemps.setPosition(315, 130, 150, 175);
|
||||
motorTempLabel.setPosition(0, 90, 150, 25);
|
||||
motorTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
motorTempLabel.setLinespacing(0);
|
||||
motorTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_JN2J));
|
||||
drivetrainTemps.add(motorTempLabel);
|
||||
add(SoC);
|
||||
|
||||
motorTempL.setXY(14, 115);
|
||||
drivetrainTemps.add(motorTempL);
|
||||
drivetrainTemps.setPosition(316, 125, 152, 185);
|
||||
batTempDiv.setPosition(60, 124, 3, 60);
|
||||
batTempDivPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
batTempDiv.setPainter(batTempDivPainter);
|
||||
batTempDiv.setStart(0, 0);
|
||||
batTempDiv.setEnd(0, 320);
|
||||
batTempDiv.setLineWidth(10);
|
||||
batTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
drivetrainTemps.add(batTempDiv);
|
||||
|
||||
motorTempR.setXY(77, 115);
|
||||
drivetrainTemps.add(motorTempR);
|
||||
batTempR.setXY(63, 124);
|
||||
drivetrainTemps.add(batTempR);
|
||||
|
||||
motorTempDiv.setPosition(74, 115, 3, 60);
|
||||
batTempL.setXY(0, 124);
|
||||
drivetrainTemps.add(batTempL);
|
||||
|
||||
batTempLabel.setPosition(123, 124, 25, 60);
|
||||
batTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
batTempLabel.setLinespacing(0);
|
||||
batTempLabel.setRotation(touchgfx::TEXT_ROTATE_90);
|
||||
batTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_L1J7));
|
||||
drivetrainTemps.add(batTempLabel);
|
||||
|
||||
dtDiv2.setPosition(0, 122, 123, 2);
|
||||
dtDiv2Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
dtDiv2.setPainter(dtDiv2Painter);
|
||||
dtDiv2.setStart(0, 0);
|
||||
dtDiv2.setEnd(123, 0);
|
||||
dtDiv2.setLineWidth(10);
|
||||
dtDiv2.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
drivetrainTemps.add(dtDiv2);
|
||||
|
||||
motorTempDiv.setPosition(60, 62, 3, 60);
|
||||
motorTempDivPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
motorTempDiv.setPainter(motorTempDivPainter);
|
||||
motorTempDiv.setStart(0, 0);
|
||||
@ -76,7 +98,29 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
motorTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
drivetrainTemps.add(motorTempDiv);
|
||||
|
||||
invTempDiv.setPosition(74, 25, 3, 60);
|
||||
motorTempR.setXY(63, 62);
|
||||
drivetrainTemps.add(motorTempR);
|
||||
|
||||
motorTempL.setXY(0, 62);
|
||||
drivetrainTemps.add(motorTempL);
|
||||
|
||||
motorTempLabel.setPosition(123, 62, 25, 60);
|
||||
motorTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
motorTempLabel.setLinespacing(0);
|
||||
motorTempLabel.setRotation(touchgfx::TEXT_ROTATE_90);
|
||||
motorTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_JN2J));
|
||||
drivetrainTemps.add(motorTempLabel);
|
||||
|
||||
dtDiv1.setPosition(0, 60, 123, 2);
|
||||
dtDiv1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
dtDiv1.setPainter(dtDiv1Painter);
|
||||
dtDiv1.setStart(0, 0);
|
||||
dtDiv1.setEnd(123, 0);
|
||||
dtDiv1.setLineWidth(10);
|
||||
dtDiv1.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
drivetrainTemps.add(dtDiv1);
|
||||
|
||||
invTempDiv.setPosition(60, 0, 3, 60);
|
||||
invTempDivPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
invTempDiv.setPainter(invTempDivPainter);
|
||||
invTempDiv.setStart(0, 0);
|
||||
@ -85,21 +129,22 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
invTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
drivetrainTemps.add(invTempDiv);
|
||||
|
||||
invTempR.setXY(77, 25);
|
||||
invTempR.setXY(63, 0);
|
||||
drivetrainTemps.add(invTempR);
|
||||
|
||||
invTempL.setXY(14, 25);
|
||||
invTempL.setXY(0, 0);
|
||||
drivetrainTemps.add(invTempL);
|
||||
|
||||
invTempLabel.setPosition(0, 0, 150, 25);
|
||||
invTempLabel.setPosition(123, 0, 25, 60);
|
||||
invTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
invTempLabel.setLinespacing(0);
|
||||
invTempLabel.setRotation(touchgfx::TEXT_ROTATE_90);
|
||||
invTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_ZP7N));
|
||||
drivetrainTemps.add(invTempLabel);
|
||||
|
||||
add(drivetrainTemps);
|
||||
|
||||
brakeTemps.setPosition(165, 130, 150, 150);
|
||||
brakeTemps.setPosition(164, 125, 152, 150);
|
||||
btDivVert.setPosition(74, 25, 3, 123);
|
||||
btDivVertPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
btDivVert.setPainter(btDivVertPainter);
|
||||
@ -138,8 +183,8 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
|
||||
add(brakeTemps);
|
||||
|
||||
dataFields.setPosition(15, 48, 450, 257);
|
||||
fieldTypeSelection.setPosition(0, 80, 150, 177);
|
||||
dataFields.setPosition(12, 43, 456, 257);
|
||||
fieldTypeSelection.setPosition(0, 80, 152, 177);
|
||||
fieldTypeSelection.setHorizontal(false);
|
||||
fieldTypeSelection.setCircular(true);
|
||||
fieldTypeSelection.setEasingEquation(touchgfx::EasingEquations::linearEaseOut);
|
||||
@ -153,10 +198,10 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
fieldTypeSelection.setVisible(false);
|
||||
dataFields.add(fieldTypeSelection);
|
||||
|
||||
field3.setXY(300, 0);
|
||||
field3.setXY(304, 0);
|
||||
dataFields.add(field3);
|
||||
|
||||
field2.setXY(150, 0);
|
||||
field2.setXY(152, 0);
|
||||
dataFields.add(field2);
|
||||
|
||||
field1.setXY(0, 0);
|
||||
@ -164,26 +209,24 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
|
||||
add(dataFields);
|
||||
|
||||
statusBar.setPosition(15, 15, 450, 33);
|
||||
statusBar.setPosition(12, 10, 456, 33);
|
||||
statusItems.setXY(0, 0);
|
||||
statusItems.setDirection(touchgfx::EAST);
|
||||
statusTS_R2D.setXY(0, 0);
|
||||
statusItems.add(statusTS_R2D);
|
||||
|
||||
statusItems.add(statusTS_R2D);
|
||||
|
||||
statusItems.add(statusAMS);
|
||||
|
||||
statusSDC.setXY(150, 0);
|
||||
statusItems.add(statusSDC);
|
||||
|
||||
statusSCS.setXY(225, 0);
|
||||
statusItems.add(statusSCS);
|
||||
|
||||
statusItems.add(statusPDU);
|
||||
|
||||
statusINV.setXY(375, 0);
|
||||
statusItems.add(statusINV);
|
||||
|
||||
statusItems.add(statusLV);
|
||||
|
||||
statusBar.add(statusItems);
|
||||
|
||||
progressBar.setXY(0, 0);
|
||||
@ -196,21 +239,21 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
progressBar.setVisible(false);
|
||||
statusBar.add(progressBar);
|
||||
|
||||
prechargeLabel.setXY(90, -2);
|
||||
prechargeLabel.setXY(95, -2);
|
||||
prechargeLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
prechargeLabel.setLinespacing(0);
|
||||
prechargeLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_HMH2));
|
||||
prechargeLabel.setVisible(false);
|
||||
statusBar.add(prechargeLabel);
|
||||
|
||||
r2dLabel.setPosition(67, -2, 317, 37);
|
||||
r2dLabel.setPosition(70, -2, 317, 37);
|
||||
r2dLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
r2dLabel.setLinespacing(0);
|
||||
r2dLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_NGUK));
|
||||
r2dLabel.setVisible(false);
|
||||
statusBar.add(r2dLabel);
|
||||
|
||||
r2dProgressLabel.setPosition(165, -2, 219, 37);
|
||||
r2dProgressLabel.setPosition(168, -2, 219, 37);
|
||||
r2dProgressLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
r2dProgressLabel.setLinespacing(0);
|
||||
r2dProgressLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_J5UH));
|
||||
@ -219,7 +262,7 @@ DriverViewViewBase::DriverViewViewBase() :
|
||||
|
||||
add(statusBar);
|
||||
|
||||
errorPopup.setXY(15, 155);
|
||||
errorPopup.setXY(12, 150);
|
||||
errorPopup.setVisible(false);
|
||||
add(errorPopup);
|
||||
}
|
||||
@ -231,8 +274,10 @@ DriverViewViewBase::~DriverViewViewBase()
|
||||
|
||||
void DriverViewViewBase::setupScreen()
|
||||
{
|
||||
motorTempL.initialize();
|
||||
batTempR.initialize();
|
||||
batTempL.initialize();
|
||||
motorTempR.initialize();
|
||||
motorTempL.initialize();
|
||||
invTempR.initialize();
|
||||
invTempL.initialize();
|
||||
brakeTempRR.initialize();
|
||||
@ -253,6 +298,7 @@ void DriverViewViewBase::setupScreen()
|
||||
statusSCS.initialize();
|
||||
statusPDU.initialize();
|
||||
statusINV.initialize();
|
||||
statusLV.initialize();
|
||||
errorPopup.initialize();
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// 4.21.2 0xf98ee735
|
||||
// 4.21.2 0xa2d5059d
|
||||
// Generated by imageconverter. Please, do not edit!
|
||||
|
||||
#include <images/BitmapDatabase.hpp>
|
||||
@ -12,7 +12,7 @@ extern const unsigned char image_fasttube_logo_white[]; // BITMAP_FASTTUBE_LOGO_
|
||||
extern const unsigned char image_logo_dv_small[]; // BITMAP_LOGO_DV_SMALL_ID = 5, Size: 160x55 pixels
|
||||
extern const unsigned char image_logo_dv_small_white[]; // BITMAP_LOGO_DV_SMALL_WHITE_ID = 6, Size: 160x39 pixels
|
||||
extern const unsigned char image_precharge_bg[]; // BITMAP_PRECHARGE_BG_ID = 7, Size: 450x29 pixels
|
||||
extern const unsigned char image_prog_horiz_bg[]; // BITMAP_PROG_HORIZ_BG_ID = 8, Size: 450x33 pixels
|
||||
extern const unsigned char image_prog_horiz_bg[]; // BITMAP_PROG_HORIZ_BG_ID = 8, Size: 456x33 pixels
|
||||
|
||||
const touchgfx::Bitmap::BitmapData bitmap_database[] = {
|
||||
{ image_bat_bar_bg, 0, 40, 150, 0, 0, 40, ((uint8_t)touchgfx::Bitmap::RGB565) >> 3, 150, ((uint8_t)touchgfx::Bitmap::RGB565) & 0x7 },
|
||||
@ -23,7 +23,7 @@ const touchgfx::Bitmap::BitmapData bitmap_database[] = {
|
||||
{ image_logo_dv_small, 0, 160, 55, 62, 42, 37, ((uint8_t)touchgfx::Bitmap::ARGB8888) >> 3, 2, ((uint8_t)touchgfx::Bitmap::ARGB8888) & 0x7 },
|
||||
{ image_logo_dv_small_white, 0, 160, 39, 47, 0, 1, ((uint8_t)touchgfx::Bitmap::ARGB8888) >> 3, 17, ((uint8_t)touchgfx::Bitmap::ARGB8888) & 0x7 },
|
||||
{ image_precharge_bg, 0, 450, 29, 0, 0, 450, ((uint8_t)touchgfx::Bitmap::RGB565) >> 3, 29, ((uint8_t)touchgfx::Bitmap::RGB565) & 0x7 },
|
||||
{ image_prog_horiz_bg, 0, 450, 33, 0, 0, 450, ((uint8_t)touchgfx::Bitmap::RGB565) >> 3, 33, ((uint8_t)touchgfx::Bitmap::RGB565) & 0x7 }
|
||||
{ image_prog_horiz_bg, 0, 456, 33, 0, 0, 456, ((uint8_t)touchgfx::Bitmap::RGB565) >> 3, 33, ((uint8_t)touchgfx::Bitmap::RGB565) & 0x7 }
|
||||
};
|
||||
|
||||
namespace BitmapDatabase
|
||||
|
@ -1,10 +1,11 @@
|
||||
// 4.21.2 0xa0b19ec8 D2 R0 FRGB565 U565 N0 SExtFlashSection
|
||||
// 4.21.2 0x7e1be905 D2 R0 FRGB565 U565 N0 SExtFlashSection
|
||||
// Generated by imageconverter. Please, do not edit!
|
||||
|
||||
#include <touchgfx/hal/Config.hpp>
|
||||
|
||||
LOCATION_PRAGMA("ExtFlashSection")
|
||||
KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFlashSection") = { // 450x33 RGB565 pixels.
|
||||
KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFlashSection") = { // 456x33 RGB565 pixels.
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
@ -154,7 +155,8 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
@ -229,7 +231,8 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -304,7 +307,8 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -379,7 +383,8 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
@ -454,7 +459,8 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
@ -528,8 +534,9 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
@ -603,8 +610,9 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
@ -678,8 +686,9 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -753,8 +762,9 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
@ -827,9 +837,10 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
@ -902,9 +913,10 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
@ -977,9 +989,10 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
@ -1051,10 +1064,11 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
@ -1126,10 +1140,11 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -1201,10 +1216,11 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -1276,10 +1292,11 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
@ -1350,11 +1367,12 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
@ -1425,11 +1443,12 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
@ -1500,11 +1519,12 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
@ -1574,12 +1594,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -1649,12 +1670,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
@ -1724,12 +1746,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -1798,13 +1821,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
@ -1873,13 +1897,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -1948,13 +1973,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -2023,13 +2049,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
@ -2097,14 +2124,15 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
@ -2172,14 +2200,15 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
@ -2247,14 +2276,15 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32,
|
||||
@ -2321,15 +2351,16 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -2396,15 +2427,16 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
|
||||
@ -2471,13 +2503,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
|
||||
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x33
|
||||
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
|
||||
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
|
||||
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
|
||||
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33
|
||||
};
|
||||
|
@ -1 +1 @@
|
||||
{"remap":"yes","language":"GB","language_index":0,"indices":[["345","T_PDU"],["353","T_SCS"],["357","T_SDC"],["349","T_R2D"],["342","T_TS"],["337","T_INV"],["333","T_AMS"],["128","T_ERROR_AMS"],["176","T_DEBUGVIEWFIELD_TITLE"],["176","T_DRIVERVIEWFIELD_TITLE"],["176","T_NUMBERSMALLWILDCARD"],["293","T_FIELD_BBAL"],["256","T_FIELD_TSVOLTVEH"],["249","T_FIELD_TSVOLTBAT"],["269","T_FIELD_LVSOC"],["287","T_FIELD_TSSOC"],["303","T_FIELD_MAXCELLTEMP"],["308","T_FIELD_TIREFL"],["313","T_FIELD_TIREFR"],["318","T_FIELD_TIRERL"],["323","T_FIELD_TIRERR"],["298","T_FIELD_LAPCOUNT"],["186","T_FIELD_INICHKSTATE"],["263","T_FIELD_ERR"],["357","T_FIELD_SDC"],["202","T_FIELD_INVRREADY"],["194","T_FIELD_INVLREADY"],["218","T_FIELD_R2DPROGRESS"],["210","T_FIELD_ACTIVEMISSION"],["178","T_FIELD_ASSTATE"],["234","T_FIELD_TSSTATE"],["176","T_NUMBERWILDCARD"],["176","T_DEFAULTWILDCARD_CENTERED"],["176","T_DEFAULTWILDCARD_RIGHTALIGNED"],["341","T_FIELD_TSCURRENT"],["328","T_FIELD_MINCELLVOLT"],["281","T_FIELD_SPEED"],["95","T_INSPECTION_HUGE"],["158","T_EBS_HUGE"],["117","T_TRACKDRIVE_HUGE"],["138","T_AUTOX_HUGE"],["226","T_SKIDPAD_HUGE"],["82","T_ACCEL_HUGE"],["34","T_INVALID_HUGE"],["67","T_MANUAL"],["95","T_INSPECTION"],["158","T_EBS"],["117","T_TRACKDRIVE"],["138","T_AUTOX"],["226","T_SKIDPAD"],["82","T_ACCEL"],["16","T___SINGLEUSE_F9I5"],["275","T___SINGLEUSE_JN2J"],["167","T___SINGLEUSE_ZP7N"],["176","T___SINGLEUSE_9L8R"],["16","T___SINGLEUSE_1NKF"],["176","T___SINGLEUSE_J5UH"],["349","T___SINGLEUSE_NGUK"],["176","T___SINGLEUSE_4E84"],["176","T___SINGLEUSE_YTAB"],["106","T___SINGLEUSE_RWCE"],["148","T___SINGLEUSE_HMH2"],["361","T___SINGLEUSE_4OBM"],["342","T___SINGLEUSE_PHFD"],["242","T___SINGLEUSE_H6UX"],["176","T___SINGLEUSE_20H3"],["17","T___SINGLEUSE_SDGP"],["51","T___SINGLEUSE_M5X7"],["0","T___SINGLEUSE_6GPV"]]}
|
||||
{"remap":"yes","language":"GB","language_index":0,"indices":[["350","T_LV"],["334","T_PDU"],["342","T_SCS"],["346","T_SDC"],["338","T_R2D"],["327","T_TS"],["322","T_INV"],["318","T_AMS"],["128","T_ERROR_AMS"],["167","T_DEBUGVIEWFIELD_TITLE"],["167","T_DRIVERVIEWFIELD_TITLE"],["167","T_NUMBERSMALLWILDCARD"],["278","T_FIELD_BBAL"],["247","T_FIELD_TSVOLTVEH"],["240","T_FIELD_TSVOLTBAT"],["260","T_FIELD_LVSOC"],["272","T_FIELD_TSSOC"],["288","T_FIELD_MAXCELLTEMP"],["293","T_FIELD_TIREFL"],["298","T_FIELD_TIREFR"],["303","T_FIELD_TIRERL"],["308","T_FIELD_TIRERR"],["283","T_FIELD_LAPCOUNT"],["177","T_FIELD_INICHKSTATE"],["254","T_FIELD_ERR"],["346","T_FIELD_SDC"],["193","T_FIELD_INVRREADY"],["185","T_FIELD_INVLREADY"],["209","T_FIELD_R2DPROGRESS"],["201","T_FIELD_ACTIVEMISSION"],["169","T_FIELD_ASSTATE"],["225","T_FIELD_TSSTATE"],["167","T_NUMBERWILDCARD"],["167","T_DEFAULTWILDCARD_CENTERED"],["167","T_DEFAULTWILDCARD_RIGHTALIGNED"],["326","T_FIELD_TSCURRENT"],["313","T_FIELD_MINCELLVOLT"],["266","T_FIELD_SPEED"],["95","T_INSPECTION_HUGE"],["158","T_EBS_HUGE"],["117","T_TRACKDRIVE_HUGE"],["138","T_AUTOX_HUGE"],["217","T_SKIDPAD_HUGE"],["82","T_ACCEL_HUGE"],["34","T_INVALID_HUGE"],["67","T_MANUAL"],["95","T_INSPECTION"],["158","T_EBS"],["117","T_TRACKDRIVE"],["138","T_AUTOX"],["217","T_SKIDPAD"],["82","T_ACCEL"],["243","T___SINGLEUSE_L1J7"],["16","T___SINGLEUSE_F9I5"],["330","T___SINGLEUSE_JN2J"],["322","T___SINGLEUSE_ZP7N"],["167","T___SINGLEUSE_9L8R"],["16","T___SINGLEUSE_1NKF"],["167","T___SINGLEUSE_J5UH"],["338","T___SINGLEUSE_NGUK"],["167","T___SINGLEUSE_4E84"],["167","T___SINGLEUSE_YTAB"],["106","T___SINGLEUSE_RWCE"],["148","T___SINGLEUSE_HMH2"],["350","T___SINGLEUSE_4OBM"],["327","T___SINGLEUSE_PHFD"],["233","T___SINGLEUSE_H6UX"],["167","T___SINGLEUSE_20H3"],["17","T___SINGLEUSE_SDGP"],["51","T___SINGLEUSE_M5X7"],["0","T___SINGLEUSE_6GPV"]]}
|
@ -1 +1 @@
|
||||
{"languages":["GB"],"textids":["T_PDU","T_SCS","T_SDC","T_R2D","T_TS","T_INV","T_AMS","T_ERROR_AMS","T_DEBUGVIEWFIELD_TITLE","T_DRIVERVIEWFIELD_TITLE","T_NUMBERSMALLWILDCARD","T_FIELD_BBAL","T_FIELD_TSVOLTVEH","T_FIELD_TSVOLTBAT","T_FIELD_LVSOC","T_FIELD_TSSOC","T_FIELD_MAXCELLTEMP","T_FIELD_TIREFL","T_FIELD_TIREFR","T_FIELD_TIRERL","T_FIELD_TIRERR","T_FIELD_LAPCOUNT","T_FIELD_INICHKSTATE","T_FIELD_ERR","T_FIELD_SDC","T_FIELD_INVRREADY","T_FIELD_INVLREADY","T_FIELD_R2DPROGRESS","T_FIELD_ACTIVEMISSION","T_FIELD_ASSTATE","T_FIELD_TSSTATE","T_NUMBERWILDCARD","T_DEFAULTWILDCARD_CENTERED","T_DEFAULTWILDCARD_RIGHTALIGNED","T_FIELD_TSCURRENT","T_FIELD_MINCELLVOLT","T_FIELD_SPEED","T_INSPECTION_HUGE","T_EBS_HUGE","T_TRACKDRIVE_HUGE","T_AUTOX_HUGE","T_SKIDPAD_HUGE","T_ACCEL_HUGE","T_INVALID_HUGE","T_MANUAL","T_INSPECTION","T_EBS","T_TRACKDRIVE","T_AUTOX","T_SKIDPAD","T_ACCEL","T___SINGLEUSE_F9I5","T___SINGLEUSE_JN2J","T___SINGLEUSE_ZP7N","T___SINGLEUSE_9L8R","T___SINGLEUSE_1NKF","T___SINGLEUSE_J5UH","T___SINGLEUSE_NGUK","T___SINGLEUSE_4E84","T___SINGLEUSE_YTAB","T___SINGLEUSE_RWCE","T___SINGLEUSE_HMH2","T___SINGLEUSE_4OBM","T___SINGLEUSE_PHFD","T___SINGLEUSE_H6UX","T___SINGLEUSE_20H3","T___SINGLEUSE_SDGP","T___SINGLEUSE_M5X7","T___SINGLEUSE_6GPV"]}
|
||||
{"languages":["GB"],"textids":["T_LV","T_PDU","T_SCS","T_SDC","T_R2D","T_TS","T_INV","T_AMS","T_ERROR_AMS","T_DEBUGVIEWFIELD_TITLE","T_DRIVERVIEWFIELD_TITLE","T_NUMBERSMALLWILDCARD","T_FIELD_BBAL","T_FIELD_TSVOLTVEH","T_FIELD_TSVOLTBAT","T_FIELD_LVSOC","T_FIELD_TSSOC","T_FIELD_MAXCELLTEMP","T_FIELD_TIREFL","T_FIELD_TIREFR","T_FIELD_TIRERL","T_FIELD_TIRERR","T_FIELD_LAPCOUNT","T_FIELD_INICHKSTATE","T_FIELD_ERR","T_FIELD_SDC","T_FIELD_INVRREADY","T_FIELD_INVLREADY","T_FIELD_R2DPROGRESS","T_FIELD_ACTIVEMISSION","T_FIELD_ASSTATE","T_FIELD_TSSTATE","T_NUMBERWILDCARD","T_DEFAULTWILDCARD_CENTERED","T_DEFAULTWILDCARD_RIGHTALIGNED","T_FIELD_TSCURRENT","T_FIELD_MINCELLVOLT","T_FIELD_SPEED","T_INSPECTION_HUGE","T_EBS_HUGE","T_TRACKDRIVE_HUGE","T_AUTOX_HUGE","T_SKIDPAD_HUGE","T_ACCEL_HUGE","T_INVALID_HUGE","T_MANUAL","T_INSPECTION","T_EBS","T_TRACKDRIVE","T_AUTOX","T_SKIDPAD","T_ACCEL","T___SINGLEUSE_L1J7","T___SINGLEUSE_F9I5","T___SINGLEUSE_JN2J","T___SINGLEUSE_ZP7N","T___SINGLEUSE_9L8R","T___SINGLEUSE_1NKF","T___SINGLEUSE_J5UH","T___SINGLEUSE_NGUK","T___SINGLEUSE_4E84","T___SINGLEUSE_YTAB","T___SINGLEUSE_RWCE","T___SINGLEUSE_HMH2","T___SINGLEUSE_4OBM","T___SINGLEUSE_PHFD","T___SINGLEUSE_H6UX","T___SINGLEUSE_20H3","T___SINGLEUSE_SDGP","T___SINGLEUSE_M5X7","T___SINGLEUSE_6GPV"]}
|
@ -1 +1 @@
|
||||
{"remap":"yes","languages":["Gb"],"characters":[67,104,111,111,115,101,32,97,32,109,105,115,115,105,111,110,0,67,117,114,114,101,110,116,32,77,105,115,115,105,111,110,58,0,73,110,118,97,108,105,100,32,77,105,115,115,105,111,110,33,0,73,110,118,97,108,105,100,32,77,105,115,115,105,111,110,0,77,97,110,117,97,108,32,68,114,105,118,105,110,103,0,65,99,99,101,108,101,114,97,116,105,111,110,0,73,110,115,112,101,99,116,105,111,110,0,80,65,82,65,77,69,84,69,82,83,0,84,114,97,99,107,100,114,105,118,101,0,65,77,83,32,69,114,114,79,114,0,65,117,116,111,99,114,111,115,115,0,80,82,69,67,72,65,82,71,69,0,69,66,83,32,84,101,115,116,0,73,78,86,69,82,84,69,82,0,2,0,65,83,83,84,65,84,69,0,73,67,83,84,65,84,69,0,73,78,86,76,82,68,89,0,73,78,86,82,82,68,89,0,77,73,83,83,73,79,78,0,82,50,68,80,82,79,71,0,83,107,105,100,112,97,100,0,84,83,83,84,65,84,69,0,66,82,65,75,69,83,0,84,83,86,66,65,84,0,84,83,86,86,69,72,0,69,82,82,79,82,0,76,86,83,79,67,0,77,79,84,79,82,0,83,80,69,69,68,0,84,83,83,79,67,0,66,66,65,76,0,76,65,80,83,0,84,77,65,88,0,84,84,70,76,0,84,84,70,82,0,84,84,82,76,0,84,84,82,82,0,86,77,73,78,0,65,77,83,0,73,78,86,0,73,84,83,0,80,68,85,0,82,50,68,0,83,67,83,0,83,68,67,0,76,86,0]}
|
||||
{"remap":"yes","languages":["Gb"],"characters":[67,104,111,111,115,101,32,97,32,109,105,115,115,105,111,110,0,67,117,114,114,101,110,116,32,77,105,115,115,105,111,110,58,0,73,110,118,97,108,105,100,32,77,105,115,115,105,111,110,33,0,73,110,118,97,108,105,100,32,77,105,115,115,105,111,110,0,77,97,110,117,97,108,32,68,114,105,118,105,110,103,0,65,99,99,101,108,101,114,97,116,105,111,110,0,73,110,115,112,101,99,116,105,111,110,0,80,65,82,65,77,69,84,69,82,83,0,84,114,97,99,107,100,114,105,118,101,0,65,77,83,32,69,114,114,79,114,0,65,117,116,111,99,114,111,115,115,0,80,82,69,67,72,65,82,71,69,0,69,66,83,32,84,101,115,116,0,2,0,65,83,83,84,65,84,69,0,73,67,83,84,65,84,69,0,73,78,86,76,82,68,89,0,73,78,86,82,82,68,89,0,77,73,83,83,73,79,78,0,82,50,68,80,82,79,71,0,83,107,105,100,112,97,100,0,84,83,83,84,65,84,69,0,66,82,65,75,69,83,0,84,83,86,66,65,84,0,84,83,86,86,69,72,0,69,82,82,79,82,0,76,86,83,79,67,0,83,80,69,69,68,0,84,83,83,79,67,0,66,66,65,76,0,76,65,80,83,0,84,77,65,88,0,84,84,70,76,0,84,84,70,82,0,84,84,82,76,0,84,84,82,82,0,86,77,73,78,0,65,77,83,0,73,78,86,0,73,84,83,0,77,79,84,0,80,68,85,0,82,50,68,0,83,67,83,0,83,68,67,0,76,86,0]}
|
@ -1 +1 @@
|
||||
{"databases":{"GB":[[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[5,"LEFT","LTR"],[2,"CENTER","LTR"],[6,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[0,"CENTER","LTR"],[0,"RIGHT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[0,"LEFT","LTR"],[3,"CENTER","LTR"],[1,"RIGHT","LTR"],[1,"LEFT","LTR"],[4,"RIGHT","LTR"],[1,"LEFT","LTR"],[1,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[1,"LEFT","LTR"]],"DEFAULT":[[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[5,"LEFT","LTR"],[2,"CENTER","LTR"],[6,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[0,"CENTER","LTR"],[0,"RIGHT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[0,"LEFT","LTR"],[3,"CENTER","LTR"],[1,"RIGHT","LTR"],[1,"LEFT","LTR"],[4,"RIGHT","LTR"],[1,"LEFT","LTR"],[1,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[1,"LEFT","LTR"]]},"database_list":["GB"],"fonts":{"getFont_verdana_20_4bpp":0,"getFont_CHINN____30_4bpp":1,"getFont_CHINN____20_4bpp":2,"getFont_CHINN____40_4bpp":3,"getFont_lucon_TTF_50_4bpp":4,"getFont_verdanab_20_4bpp":5,"getFont_lucon_TTF_33_4bpp":6},"generate_font_format":"0"}
|
||||
{"databases":{"GB":[[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[5,"LEFT","LTR"],[2,"CENTER","LTR"],[6,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[0,"CENTER","LTR"],[0,"RIGHT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[0,"LEFT","LTR"],[3,"CENTER","LTR"],[1,"RIGHT","LTR"],[1,"LEFT","LTR"],[4,"RIGHT","LTR"],[1,"LEFT","LTR"],[1,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[1,"LEFT","LTR"]],"DEFAULT":[[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[5,"LEFT","LTR"],[2,"CENTER","LTR"],[6,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[0,"CENTER","LTR"],[0,"RIGHT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[3,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[0,"LEFT","LTR"],[3,"CENTER","LTR"],[1,"RIGHT","LTR"],[1,"LEFT","LTR"],[4,"RIGHT","LTR"],[1,"LEFT","LTR"],[1,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[2,"CENTER","LTR"],[4,"CENTER","LTR"],[1,"LEFT","LTR"],[2,"CENTER","LTR"],[1,"LEFT","LTR"]]},"database_list":["GB"],"fonts":{"getFont_verdana_20_4bpp":0,"getFont_CHINN____30_4bpp":1,"getFont_CHINN____20_4bpp":2,"getFont_CHINN____40_4bpp":3,"getFont_lucon_TTF_50_4bpp":4,"getFont_verdanab_20_4bpp":5,"getFont_lucon_TTF_33_4bpp":6},"generate_font_format":"0"}
|
@ -12,6 +12,7 @@ enum LANGUAGES
|
||||
|
||||
enum TEXTS
|
||||
{
|
||||
T_LV,
|
||||
T_PDU,
|
||||
T_SCS,
|
||||
T_SDC,
|
||||
@ -63,6 +64,7 @@ enum TEXTS
|
||||
T_AUTOX,
|
||||
T_SKIDPAD,
|
||||
T_ACCEL,
|
||||
T___SINGLEUSE_L1J7,
|
||||
T___SINGLEUSE_F9I5,
|
||||
T___SINGLEUSE_JN2J,
|
||||
T___SINGLEUSE_ZP7N,
|
||||
|
@ -10,48 +10,49 @@ KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE;
|
||||
// Remap all strings
|
||||
TEXT_LOCATION_FLASH_PRAGMA
|
||||
KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE = {
|
||||
345, // T_PDU: "PDU"
|
||||
353, // T_SCS: "SCS"
|
||||
357, // T_SDC: "SDC"
|
||||
349, // T_R2D: "R2D"
|
||||
342, // T_TS: "TS"
|
||||
337, // T_INV: "INV"
|
||||
333, // T_AMS: "AMS"
|
||||
350, // T_LV: "LV"
|
||||
334, // T_PDU: "PDU"
|
||||
342, // T_SCS: "SCS"
|
||||
346, // T_SDC: "SDC"
|
||||
338, // T_R2D: "R2D"
|
||||
327, // T_TS: "TS"
|
||||
322, // T_INV: "INV"
|
||||
318, // T_AMS: "AMS"
|
||||
128, // T_ERROR_AMS: "AMS ErrOr"
|
||||
176, // T_DEBUGVIEWFIELD_TITLE: "<>"
|
||||
176, // T_DRIVERVIEWFIELD_TITLE: "<>"
|
||||
176, // T_NUMBERSMALLWILDCARD: "<>"
|
||||
293, // T_FIELD_BBAL: "BBAL"
|
||||
256, // T_FIELD_TSVOLTVEH: "TSVVEH"
|
||||
249, // T_FIELD_TSVOLTBAT: "TSVBAT"
|
||||
269, // T_FIELD_LVSOC: "LVSOC"
|
||||
287, // T_FIELD_TSSOC: "TSSOC"
|
||||
303, // T_FIELD_MAXCELLTEMP: "TMAX"
|
||||
308, // T_FIELD_TIREFL: "TTFL"
|
||||
313, // T_FIELD_TIREFR: "TTFR"
|
||||
318, // T_FIELD_TIRERL: "TTRL"
|
||||
323, // T_FIELD_TIRERR: "TTRR"
|
||||
298, // T_FIELD_LAPCOUNT: "LAPS"
|
||||
186, // T_FIELD_INICHKSTATE: "ICSTATE"
|
||||
263, // T_FIELD_ERR: "ERROR"
|
||||
357, // T_FIELD_SDC: "SDC"
|
||||
202, // T_FIELD_INVRREADY: "INVRRDY"
|
||||
194, // T_FIELD_INVLREADY: "INVLRDY"
|
||||
218, // T_FIELD_R2DPROGRESS: "R2DPROG"
|
||||
210, // T_FIELD_ACTIVEMISSION: "MISSION"
|
||||
178, // T_FIELD_ASSTATE: "ASSTATE"
|
||||
234, // T_FIELD_TSSTATE: "TSSTATE"
|
||||
176, // T_NUMBERWILDCARD: "<>"
|
||||
176, // T_DEFAULTWILDCARD_CENTERED: "<>"
|
||||
176, // T_DEFAULTWILDCARD_RIGHTALIGNED: "<>"
|
||||
341, // T_FIELD_TSCURRENT: "ITS"
|
||||
328, // T_FIELD_MINCELLVOLT: "VMIN"
|
||||
281, // T_FIELD_SPEED: "SPEED"
|
||||
167, // T_DEBUGVIEWFIELD_TITLE: "<>"
|
||||
167, // T_DRIVERVIEWFIELD_TITLE: "<>"
|
||||
167, // T_NUMBERSMALLWILDCARD: "<>"
|
||||
278, // T_FIELD_BBAL: "BBAL"
|
||||
247, // T_FIELD_TSVOLTVEH: "TSVVEH"
|
||||
240, // T_FIELD_TSVOLTBAT: "TSVBAT"
|
||||
260, // T_FIELD_LVSOC: "LVSOC"
|
||||
272, // T_FIELD_TSSOC: "TSSOC"
|
||||
288, // T_FIELD_MAXCELLTEMP: "TMAX"
|
||||
293, // T_FIELD_TIREFL: "TTFL"
|
||||
298, // T_FIELD_TIREFR: "TTFR"
|
||||
303, // T_FIELD_TIRERL: "TTRL"
|
||||
308, // T_FIELD_TIRERR: "TTRR"
|
||||
283, // T_FIELD_LAPCOUNT: "LAPS"
|
||||
177, // T_FIELD_INICHKSTATE: "ICSTATE"
|
||||
254, // T_FIELD_ERR: "ERROR"
|
||||
346, // T_FIELD_SDC: "SDC"
|
||||
193, // T_FIELD_INVRREADY: "INVRRDY"
|
||||
185, // T_FIELD_INVLREADY: "INVLRDY"
|
||||
209, // T_FIELD_R2DPROGRESS: "R2DPROG"
|
||||
201, // T_FIELD_ACTIVEMISSION: "MISSION"
|
||||
169, // T_FIELD_ASSTATE: "ASSTATE"
|
||||
225, // T_FIELD_TSSTATE: "TSSTATE"
|
||||
167, // T_NUMBERWILDCARD: "<>"
|
||||
167, // T_DEFAULTWILDCARD_CENTERED: "<>"
|
||||
167, // T_DEFAULTWILDCARD_RIGHTALIGNED: "<>"
|
||||
326, // T_FIELD_TSCURRENT: "ITS"
|
||||
313, // T_FIELD_MINCELLVOLT: "VMIN"
|
||||
266, // T_FIELD_SPEED: "SPEED"
|
||||
95, // T_INSPECTION_HUGE: "Inspection"
|
||||
158, // T_EBS_HUGE: "EBS Test"
|
||||
117, // T_TRACKDRIVE_HUGE: "Trackdrive"
|
||||
138, // T_AUTOX_HUGE: "Autocross"
|
||||
226, // T_SKIDPAD_HUGE: "Skidpad"
|
||||
217, // T_SKIDPAD_HUGE: "Skidpad"
|
||||
82, // T_ACCEL_HUGE: "Acceleration"
|
||||
34, // T_INVALID_HUGE: "Invalid Mission!"
|
||||
67, // T_MANUAL: "Manual Driving"
|
||||
@ -59,23 +60,24 @@ KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE = {
|
||||
158, // T_EBS: "EBS Test"
|
||||
117, // T_TRACKDRIVE: "Trackdrive"
|
||||
138, // T_AUTOX: "Autocross"
|
||||
226, // T_SKIDPAD: "Skidpad"
|
||||
217, // T_SKIDPAD: "Skidpad"
|
||||
82, // T_ACCEL: "Acceleration"
|
||||
243, // T___SINGLEUSE_L1J7: "BAT"
|
||||
16, // T___SINGLEUSE_F9I5: ""
|
||||
275, // T___SINGLEUSE_JN2J: "MOTOR"
|
||||
167, // T___SINGLEUSE_ZP7N: "INVERTER"
|
||||
176, // T___SINGLEUSE_9L8R: "<>"
|
||||
330, // T___SINGLEUSE_JN2J: "MOT"
|
||||
322, // T___SINGLEUSE_ZP7N: "INV"
|
||||
167, // T___SINGLEUSE_9L8R: "<>"
|
||||
16, // T___SINGLEUSE_1NKF: ""
|
||||
176, // T___SINGLEUSE_J5UH: "<>"
|
||||
349, // T___SINGLEUSE_NGUK: "R2D"
|
||||
176, // T___SINGLEUSE_4E84: "<>"
|
||||
176, // T___SINGLEUSE_YTAB: "<>"
|
||||
167, // T___SINGLEUSE_J5UH: "<>"
|
||||
338, // T___SINGLEUSE_NGUK: "R2D"
|
||||
167, // T___SINGLEUSE_4E84: "<>"
|
||||
167, // T___SINGLEUSE_YTAB: "<>"
|
||||
106, // T___SINGLEUSE_RWCE: "PARAMETERS"
|
||||
148, // T___SINGLEUSE_HMH2: "PRECHARGE"
|
||||
361, // T___SINGLEUSE_4OBM: "LV"
|
||||
342, // T___SINGLEUSE_PHFD: "TS"
|
||||
242, // T___SINGLEUSE_H6UX: "BRAKES"
|
||||
176, // T___SINGLEUSE_20H3: "<>"
|
||||
350, // T___SINGLEUSE_4OBM: "LV"
|
||||
327, // T___SINGLEUSE_PHFD: "TS"
|
||||
233, // T___SINGLEUSE_H6UX: "BRAKES"
|
||||
167, // T___SINGLEUSE_20H3: "<>"
|
||||
17, // T___SINGLEUSE_SDGP: "Current Mission:"
|
||||
51, // T___SINGLEUSE_M5X7: "Invalid Mission"
|
||||
0 // T___SINGLEUSE_6GPV: "Choose a mission"
|
||||
|
@ -73,40 +73,39 @@ KEEP extern const touchgfx::Unicode::UnicodeChar texts_all_languages[] TEXT_LOCA
|
||||
0x41, 0x75, 0x74, 0x6f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x0, // @138 "Autocross"
|
||||
0x50, 0x52, 0x45, 0x43, 0x48, 0x41, 0x52, 0x47, 0x45, 0x0, // @148 "PRECHARGE"
|
||||
0x45, 0x42, 0x53, 0x20, 0x54, 0x65, 0x73, 0x74, 0x0, // @158 "EBS Test"
|
||||
0x49, 0x4e, 0x56, 0x45, 0x52, 0x54, 0x45, 0x52, 0x0, // @167 "INVERTER"
|
||||
0x2, 0x0, // @176 "<>"
|
||||
0x41, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @178 "ASSTATE"
|
||||
0x49, 0x43, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @186 "ICSTATE"
|
||||
0x49, 0x4e, 0x56, 0x4c, 0x52, 0x44, 0x59, 0x0, // @194 "INVLRDY"
|
||||
0x49, 0x4e, 0x56, 0x52, 0x52, 0x44, 0x59, 0x0, // @202 "INVRRDY"
|
||||
0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x0, // @210 "MISSION"
|
||||
0x52, 0x32, 0x44, 0x50, 0x52, 0x4f, 0x47, 0x0, // @218 "R2DPROG"
|
||||
0x53, 0x6b, 0x69, 0x64, 0x70, 0x61, 0x64, 0x0, // @226 "Skidpad"
|
||||
0x54, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @234 "TSSTATE"
|
||||
0x42, 0x52, 0x41, 0x4b, 0x45, 0x53, 0x0, // @242 "BRAKES"
|
||||
0x54, 0x53, 0x56, 0x42, 0x41, 0x54, 0x0, // @249 "TSVBAT"
|
||||
0x54, 0x53, 0x56, 0x56, 0x45, 0x48, 0x0, // @256 "TSVVEH"
|
||||
0x45, 0x52, 0x52, 0x4f, 0x52, 0x0, // @263 "ERROR"
|
||||
0x4c, 0x56, 0x53, 0x4f, 0x43, 0x0, // @269 "LVSOC"
|
||||
0x4d, 0x4f, 0x54, 0x4f, 0x52, 0x0, // @275 "MOTOR"
|
||||
0x53, 0x50, 0x45, 0x45, 0x44, 0x0, // @281 "SPEED"
|
||||
0x54, 0x53, 0x53, 0x4f, 0x43, 0x0, // @287 "TSSOC"
|
||||
0x42, 0x42, 0x41, 0x4c, 0x0, // @293 "BBAL"
|
||||
0x4c, 0x41, 0x50, 0x53, 0x0, // @298 "LAPS"
|
||||
0x54, 0x4d, 0x41, 0x58, 0x0, // @303 "TMAX"
|
||||
0x54, 0x54, 0x46, 0x4c, 0x0, // @308 "TTFL"
|
||||
0x54, 0x54, 0x46, 0x52, 0x0, // @313 "TTFR"
|
||||
0x54, 0x54, 0x52, 0x4c, 0x0, // @318 "TTRL"
|
||||
0x54, 0x54, 0x52, 0x52, 0x0, // @323 "TTRR"
|
||||
0x56, 0x4d, 0x49, 0x4e, 0x0, // @328 "VMIN"
|
||||
0x41, 0x4d, 0x53, 0x0, // @333 "AMS"
|
||||
0x49, 0x4e, 0x56, 0x0, // @337 "INV"
|
||||
0x49, 0x54, 0x53, 0x0, // @341 "ITS"
|
||||
0x50, 0x44, 0x55, 0x0, // @345 "PDU"
|
||||
0x52, 0x32, 0x44, 0x0, // @349 "R2D"
|
||||
0x53, 0x43, 0x53, 0x0, // @353 "SCS"
|
||||
0x53, 0x44, 0x43, 0x0, // @357 "SDC"
|
||||
0x4c, 0x56, 0x0 // @361 "LV"
|
||||
0x2, 0x0, // @167 "<>"
|
||||
0x41, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @169 "ASSTATE"
|
||||
0x49, 0x43, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @177 "ICSTATE"
|
||||
0x49, 0x4e, 0x56, 0x4c, 0x52, 0x44, 0x59, 0x0, // @185 "INVLRDY"
|
||||
0x49, 0x4e, 0x56, 0x52, 0x52, 0x44, 0x59, 0x0, // @193 "INVRRDY"
|
||||
0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x0, // @201 "MISSION"
|
||||
0x52, 0x32, 0x44, 0x50, 0x52, 0x4f, 0x47, 0x0, // @209 "R2DPROG"
|
||||
0x53, 0x6b, 0x69, 0x64, 0x70, 0x61, 0x64, 0x0, // @217 "Skidpad"
|
||||
0x54, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @225 "TSSTATE"
|
||||
0x42, 0x52, 0x41, 0x4b, 0x45, 0x53, 0x0, // @233 "BRAKES"
|
||||
0x54, 0x53, 0x56, 0x42, 0x41, 0x54, 0x0, // @240 "TSVBAT"
|
||||
0x54, 0x53, 0x56, 0x56, 0x45, 0x48, 0x0, // @247 "TSVVEH"
|
||||
0x45, 0x52, 0x52, 0x4f, 0x52, 0x0, // @254 "ERROR"
|
||||
0x4c, 0x56, 0x53, 0x4f, 0x43, 0x0, // @260 "LVSOC"
|
||||
0x53, 0x50, 0x45, 0x45, 0x44, 0x0, // @266 "SPEED"
|
||||
0x54, 0x53, 0x53, 0x4f, 0x43, 0x0, // @272 "TSSOC"
|
||||
0x42, 0x42, 0x41, 0x4c, 0x0, // @278 "BBAL"
|
||||
0x4c, 0x41, 0x50, 0x53, 0x0, // @283 "LAPS"
|
||||
0x54, 0x4d, 0x41, 0x58, 0x0, // @288 "TMAX"
|
||||
0x54, 0x54, 0x46, 0x4c, 0x0, // @293 "TTFL"
|
||||
0x54, 0x54, 0x46, 0x52, 0x0, // @298 "TTFR"
|
||||
0x54, 0x54, 0x52, 0x4c, 0x0, // @303 "TTRL"
|
||||
0x54, 0x54, 0x52, 0x52, 0x0, // @308 "TTRR"
|
||||
0x56, 0x4d, 0x49, 0x4e, 0x0, // @313 "VMIN"
|
||||
0x41, 0x4d, 0x53, 0x0, // @318 "AMS"
|
||||
0x49, 0x4e, 0x56, 0x0, // @322 "INV"
|
||||
0x49, 0x54, 0x53, 0x0, // @326 "ITS"
|
||||
0x4d, 0x4f, 0x54, 0x0, // @330 "MOT"
|
||||
0x50, 0x44, 0x55, 0x0, // @334 "PDU"
|
||||
0x52, 0x32, 0x44, 0x0, // @338 "R2D"
|
||||
0x53, 0x43, 0x53, 0x0, // @342 "SCS"
|
||||
0x53, 0x44, 0x43, 0x0, // @346 "SDC"
|
||||
0x4c, 0x56, 0x0 // @350 "LV"
|
||||
};
|
||||
|
||||
TEXT_LOCATION_FLASH_PRAGMA
|
||||
|
@ -35,6 +35,7 @@ const touchgfx::TypedText::TypedTextData typedText_database_GB[] TEXT_LOCATION_F
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
@ -82,6 +83,7 @@ const touchgfx::TypedText::TypedTextData typedText_database_GB[] TEXT_LOCATION_F
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 0, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
@ -107,6 +109,7 @@ const touchgfx::TypedText::TypedTextData typedText_database_DEFAULT[] TEXT_LOCAT
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
@ -154,6 +157,7 @@ const touchgfx::TypedText::TypedTextData typedText_database_DEFAULT[] TEXT_LOCAT
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 0, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
|
||||
{ 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR },
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "touchgfx/hal/Types.hpp"
|
||||
#include <gui_generated/containers/DriverViewStatusItemBase.hpp>
|
||||
|
||||
enum class DriverViewStatusType { TS_R2D, AMS, SDC, SCS, PDU, INV };
|
||||
enum class DriverViewStatusType { TS_R2D, AMS, SDC, SCS, PDU, INV, LV };
|
||||
|
||||
class DriverViewStatusItem : public DriverViewStatusItemBase {
|
||||
public:
|
||||
|
@ -57,6 +57,11 @@ void DriverViewStatusItem::update() {
|
||||
bg.setColor(COLOR_OFF);
|
||||
}
|
||||
break;
|
||||
case DriverViewStatusType::LV:
|
||||
text.setTypedText(T_LV);
|
||||
// TODO: Set color based on LV SoC
|
||||
bg.setColor(COLOR_OFF);
|
||||
break;
|
||||
}
|
||||
text.invalidate();
|
||||
bg.invalidate();
|
||||
|
@ -25,6 +25,7 @@ void DriverViewView::setupScreen() {
|
||||
statusSCS.setType(DriverViewStatusType::SCS);
|
||||
statusPDU.setType(DriverViewStatusType::PDU);
|
||||
statusINV.setType(DriverViewStatusType::INV);
|
||||
statusLV.setType(DriverViewStatusType::LV);
|
||||
fieldTypeSelection.setNumberOfItems(DataFieldType_COUNT);
|
||||
// int tireThresholds[4] = {35, 40, 50, 60};
|
||||
// tireTempFL.setTempThresholds(tireThresholds);
|
||||
@ -46,6 +47,9 @@ void DriverViewView::setupScreen() {
|
||||
int motorThresholds[4] = {30, 45, 60, 80};
|
||||
motorTempL.setTempThresholds(motorThresholds);
|
||||
motorTempR.setTempThresholds(motorThresholds);
|
||||
int batThresholds[4] = {30, 40, 50, 55};
|
||||
batTempL.setTempThresholds(batThresholds);
|
||||
batTempR.setTempThresholds(batThresholds);
|
||||
}
|
||||
|
||||
void DriverViewView::tearDownScreen() { DriverViewViewBase::tearDownScreen(); }
|
||||
@ -91,6 +95,8 @@ void DriverViewView::setTemps(const Temperatures &temps) {
|
||||
invTempR.setTemp(roundf(temps.inv_r));
|
||||
motorTempL.setTemp(roundf(temps.mot_l));
|
||||
motorTempR.setTemp(roundf(temps.mot_r));
|
||||
batTempL.setTemp(roundf(temps.bat_l));
|
||||
batTempR.setTemp(roundf(temps.bat_r));
|
||||
}
|
||||
|
||||
void DriverViewView::setTSSoC(uint8_t soc) {
|
||||
|
@ -244,91 +244,59 @@
|
||||
"Name": "DriverView",
|
||||
"CanvasBufferSize": 7200,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "LineProgress",
|
||||
"Name": "tsSoC",
|
||||
"X": 15,
|
||||
"Y": 155,
|
||||
"Width": 40,
|
||||
"Height": 150,
|
||||
"Color": {
|
||||
"Red": 136,
|
||||
"Green": 255
|
||||
},
|
||||
"StartX": 9.0,
|
||||
"StartY": 150.0,
|
||||
"EndX": 9.0,
|
||||
"LineWidth": 100.0,
|
||||
"LineEndingStyle": "Butt",
|
||||
"FileNameBackground": "bat_bar_bg.png",
|
||||
"ProgressRangeMax": 100,
|
||||
"ProgressInitialValue": 60
|
||||
},
|
||||
{
|
||||
"Type": "LineProgress",
|
||||
"Name": "lvSoC",
|
||||
"X": 110,
|
||||
"Y": 155,
|
||||
"Width": 40,
|
||||
"Height": 150,
|
||||
"Color": {
|
||||
"Red": 136,
|
||||
"Green": 255
|
||||
},
|
||||
"StartX": 9.0,
|
||||
"StartY": 150.0,
|
||||
"EndX": 9.0,
|
||||
"LineWidth": 100.0,
|
||||
"LineEndingStyle": "Butt",
|
||||
"FileNameBackground": "bat_bar_bg.png",
|
||||
"ProgressRangeMax": 100,
|
||||
"ProgressInitialValue": 80
|
||||
},
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "tsSoCLabel",
|
||||
"X": 15,
|
||||
"Y": 130,
|
||||
"Width": 40,
|
||||
"Height": 25,
|
||||
"TextId": "__SingleUse_PHFD",
|
||||
"TextRotation": "0",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
}
|
||||
},
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "lvSoCLabel",
|
||||
"X": 110,
|
||||
"Y": 130,
|
||||
"Width": 40,
|
||||
"Height": 25,
|
||||
"TextId": "__SingleUse_4OBM",
|
||||
"TextRotation": "0",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
}
|
||||
},
|
||||
{
|
||||
"Type": "Container",
|
||||
"Name": "drivetrainTemps",
|
||||
"X": 315,
|
||||
"Y": 130,
|
||||
"Width": 150,
|
||||
"Height": 175,
|
||||
"Name": "SoC",
|
||||
"X": 12,
|
||||
"Y": 125,
|
||||
"Width": 152,
|
||||
"Height": 180,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "LineProgress",
|
||||
"Name": "tsSoC",
|
||||
"Y": 25,
|
||||
"Width": 40,
|
||||
"Height": 150,
|
||||
"Color": {
|
||||
"Red": 136,
|
||||
"Green": 255
|
||||
},
|
||||
"StartX": 9.0,
|
||||
"StartY": 150.0,
|
||||
"EndX": 9.0,
|
||||
"LineWidth": 100.0,
|
||||
"LineEndingStyle": "Butt",
|
||||
"FileNameBackground": "bat_bar_bg.png",
|
||||
"ProgressRangeMax": 100,
|
||||
"ProgressInitialValue": 60
|
||||
},
|
||||
{
|
||||
"Type": "LineProgress",
|
||||
"Name": "lvSoC",
|
||||
"X": 95,
|
||||
"Y": 25,
|
||||
"Width": 40,
|
||||
"Height": 150,
|
||||
"Color": {
|
||||
"Red": 136,
|
||||
"Green": 255
|
||||
},
|
||||
"StartX": 9.0,
|
||||
"StartY": 150.0,
|
||||
"EndX": 9.0,
|
||||
"LineWidth": 100.0,
|
||||
"LineEndingStyle": "Butt",
|
||||
"FileNameBackground": "bat_bar_bg.png",
|
||||
"ProgressRangeMax": 100,
|
||||
"ProgressInitialValue": 80
|
||||
},
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "motorTempLabel",
|
||||
"Y": 90,
|
||||
"Width": 150,
|
||||
"Name": "tsSoCLabel",
|
||||
"Width": 40,
|
||||
"Height": 25,
|
||||
"TextId": "__SingleUse_JN2J",
|
||||
"TextId": "__SingleUse_PHFD",
|
||||
"TextRotation": "0",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
@ -337,28 +305,34 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "motorTempL",
|
||||
"X": 14,
|
||||
"Y": 115,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "motorTempR",
|
||||
"X": 77,
|
||||
"Y": 115,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
"Type": "TextArea",
|
||||
"Name": "lvSoCLabel",
|
||||
"X": 95,
|
||||
"Width": 40,
|
||||
"Height": 25,
|
||||
"TextId": "__SingleUse_4OBM",
|
||||
"TextRotation": "0",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Type": "Container",
|
||||
"Name": "drivetrainTemps",
|
||||
"X": 316,
|
||||
"Y": 125,
|
||||
"Width": 152,
|
||||
"Height": 185,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "motorTempDiv",
|
||||
"X": 74,
|
||||
"Y": 115,
|
||||
"Name": "batTempDiv",
|
||||
"X": 60,
|
||||
"Y": 124,
|
||||
"Width": 3,
|
||||
"Height": 60,
|
||||
"Color": {
|
||||
@ -370,11 +344,120 @@
|
||||
"LineWidth": 10.0,
|
||||
"LineEndingStyle": "Round"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "batTempR",
|
||||
"X": 63,
|
||||
"Y": 124,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "batTempL",
|
||||
"Y": 124,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "batTempLabel",
|
||||
"X": 123,
|
||||
"Y": 124,
|
||||
"Width": 25,
|
||||
"Height": 60,
|
||||
"TextId": "__SingleUse_L1J7",
|
||||
"TextRotation": "90",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
}
|
||||
},
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "dtDiv2",
|
||||
"Y": 122,
|
||||
"Width": 123,
|
||||
"Height": 2,
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
},
|
||||
"EndX": 123.0,
|
||||
"LineWidth": 10.0,
|
||||
"LineEndingStyle": "Round"
|
||||
},
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "motorTempDiv",
|
||||
"X": 60,
|
||||
"Y": 62,
|
||||
"Width": 3,
|
||||
"Height": 60,
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
},
|
||||
"EndY": 320.0,
|
||||
"LineWidth": 10.0,
|
||||
"LineEndingStyle": "Round"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "motorTempR",
|
||||
"X": 63,
|
||||
"Y": 62,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "motorTempL",
|
||||
"Y": 62,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
},
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "motorTempLabel",
|
||||
"X": 123,
|
||||
"Y": 62,
|
||||
"Width": 25,
|
||||
"Height": 60,
|
||||
"TextId": "__SingleUse_JN2J",
|
||||
"TextRotation": "90",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
}
|
||||
},
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "dtDiv1",
|
||||
"Y": 60,
|
||||
"Width": 123,
|
||||
"Height": 2,
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
"Blue": 255
|
||||
},
|
||||
"EndX": 123.0,
|
||||
"LineWidth": 10.0,
|
||||
"LineEndingStyle": "Round"
|
||||
},
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "invTempDiv",
|
||||
"X": 74,
|
||||
"Y": 25,
|
||||
"X": 60,
|
||||
"Width": 3,
|
||||
"Height": 60,
|
||||
"Color": {
|
||||
@ -389,8 +472,7 @@
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "invTempR",
|
||||
"X": 77,
|
||||
"Y": 25,
|
||||
"X": 63,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
@ -398,8 +480,6 @@
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "invTempL",
|
||||
"X": 14,
|
||||
"Y": 25,
|
||||
"Width": 60,
|
||||
"Height": 60,
|
||||
"CustomContainerDefinitionName": "Temperature"
|
||||
@ -407,10 +487,11 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "invTempLabel",
|
||||
"Width": 150,
|
||||
"Height": 25,
|
||||
"X": 123,
|
||||
"Width": 25,
|
||||
"Height": 60,
|
||||
"TextId": "__SingleUse_ZP7N",
|
||||
"TextRotation": "0",
|
||||
"TextRotation": "90",
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
"Green": 255,
|
||||
@ -422,9 +503,9 @@
|
||||
{
|
||||
"Type": "Container",
|
||||
"Name": "brakeTemps",
|
||||
"X": 165,
|
||||
"Y": 130,
|
||||
"Width": 150,
|
||||
"X": 164,
|
||||
"Y": 125,
|
||||
"Width": 152,
|
||||
"Height": 150,
|
||||
"Components": [
|
||||
{
|
||||
@ -513,16 +594,16 @@
|
||||
{
|
||||
"Type": "Container",
|
||||
"Name": "dataFields",
|
||||
"X": 15,
|
||||
"Y": 48,
|
||||
"Width": 450,
|
||||
"X": 12,
|
||||
"Y": 43,
|
||||
"Width": 456,
|
||||
"Height": 257,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "ScrollWheel",
|
||||
"Name": "fieldTypeSelection",
|
||||
"Y": 80,
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 177,
|
||||
"Visible": false,
|
||||
"SelectedItemOffset": 94,
|
||||
@ -537,23 +618,23 @@
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "field3",
|
||||
"X": 300,
|
||||
"Width": 150,
|
||||
"X": 304,
|
||||
"Width": 152,
|
||||
"Height": 80,
|
||||
"CustomContainerDefinitionName": "DriverViewField"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "field2",
|
||||
"X": 150,
|
||||
"Width": 150,
|
||||
"X": 152,
|
||||
"Width": 152,
|
||||
"Height": 80,
|
||||
"CustomContainerDefinitionName": "DriverViewField"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "field1",
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 80,
|
||||
"CustomContainerDefinitionName": "DriverViewField"
|
||||
}
|
||||
@ -562,62 +643,70 @@
|
||||
{
|
||||
"Type": "Container",
|
||||
"Name": "statusBar",
|
||||
"X": 15,
|
||||
"Y": 15,
|
||||
"Width": 450,
|
||||
"X": 12,
|
||||
"Y": 10,
|
||||
"Width": 456,
|
||||
"Height": 33,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "ListLayout",
|
||||
"Name": "statusItems",
|
||||
"Width": 450,
|
||||
"Width": 455,
|
||||
"Height": 33,
|
||||
"Direction": "East",
|
||||
"Components": [
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusTS_R2D",
|
||||
"Width": 75,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusAMS",
|
||||
"X": 75,
|
||||
"Width": 75,
|
||||
"X": 65,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusSDC",
|
||||
"X": 150,
|
||||
"Width": 75,
|
||||
"X": 130,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusSCS",
|
||||
"X": 225,
|
||||
"Width": 75,
|
||||
"X": 195,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusPDU",
|
||||
"X": 300,
|
||||
"Width": 75,
|
||||
"X": 260,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusINV",
|
||||
"X": 375,
|
||||
"Width": 75,
|
||||
"X": 325,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
},
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "statusLV",
|
||||
"X": 390,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"CustomContainerDefinitionName": "DriverViewStatusItem"
|
||||
}
|
||||
@ -626,7 +715,7 @@
|
||||
{
|
||||
"Type": "BoxProgress",
|
||||
"Name": "progressBar",
|
||||
"Width": 450,
|
||||
"Width": 456,
|
||||
"Height": 33,
|
||||
"Visible": false,
|
||||
"Color": {
|
||||
@ -642,7 +731,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "prechargeLabel",
|
||||
"X": 90,
|
||||
"X": 95,
|
||||
"Y": -2,
|
||||
"Width": 269,
|
||||
"Height": 37,
|
||||
@ -659,7 +748,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "r2dLabel",
|
||||
"X": 67,
|
||||
"X": 70,
|
||||
"Y": -2,
|
||||
"Width": 317,
|
||||
"Height": 37,
|
||||
@ -675,7 +764,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "r2dProgressLabel",
|
||||
"X": 165,
|
||||
"X": 168,
|
||||
"Y": -2,
|
||||
"Width": 219,
|
||||
"Height": 37,
|
||||
@ -694,9 +783,9 @@
|
||||
{
|
||||
"Type": "CustomContainerInstance",
|
||||
"Name": "errorPopup",
|
||||
"X": 15,
|
||||
"Y": 155,
|
||||
"Width": 450,
|
||||
"X": 12,
|
||||
"Y": 150,
|
||||
"Width": 456,
|
||||
"Height": 150,
|
||||
"Visible": false,
|
||||
"CustomContainerDefinitionName": "ErrorPopup"
|
||||
@ -1022,13 +1111,13 @@
|
||||
"Name": "DriverViewField",
|
||||
"X": 80,
|
||||
"Y": 215,
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 80,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "BoxWithBorder",
|
||||
"Name": "box",
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 80,
|
||||
"BorderColor": {
|
||||
"Red": 255,
|
||||
@ -1040,7 +1129,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "title",
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 25,
|
||||
"TextId": "DriverViewField_Title",
|
||||
"TextRotation": "0",
|
||||
@ -1055,7 +1144,7 @@
|
||||
"Type": "TextArea",
|
||||
"Name": "value",
|
||||
"Y": 20,
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 57,
|
||||
"TextId": "NumberWildcard",
|
||||
"TextRotation": "0",
|
||||
@ -1073,13 +1162,13 @@
|
||||
"Name": "DriverViewFieldSelection",
|
||||
"X": 100,
|
||||
"Y": 227,
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 26,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "Box",
|
||||
"Name": "bg",
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 25,
|
||||
"Color": {
|
||||
"Red": 34,
|
||||
@ -1090,7 +1179,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "name",
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 25,
|
||||
"TextId": "DriverViewField_Title",
|
||||
"TextRotation": "0",
|
||||
@ -1105,7 +1194,7 @@
|
||||
"Type": "Line",
|
||||
"Name": "line1",
|
||||
"Y": 25,
|
||||
"Width": 150,
|
||||
"Width": 152,
|
||||
"Height": 1,
|
||||
"Color": {
|
||||
"Red": 255,
|
||||
@ -1133,7 +1222,7 @@
|
||||
{
|
||||
"Type": "Line",
|
||||
"Name": "line2_1",
|
||||
"X": 149,
|
||||
"X": 151,
|
||||
"Width": 1,
|
||||
"Height": 26,
|
||||
"Color": {
|
||||
@ -1330,13 +1419,13 @@
|
||||
"Name": "ErrorPopup",
|
||||
"X": -80,
|
||||
"Y": 165,
|
||||
"Width": 450,
|
||||
"Width": 456,
|
||||
"Height": 150,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "BoxWithBorder",
|
||||
"Name": "bg",
|
||||
"Width": 450,
|
||||
"Width": 456,
|
||||
"Height": 150,
|
||||
"Color": {
|
||||
"Red": 197,
|
||||
@ -1353,7 +1442,7 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "title",
|
||||
"Width": 450,
|
||||
"Width": 456,
|
||||
"Height": 49,
|
||||
"TextId": "__SingleUse_1NKF",
|
||||
"TextRotation": "0",
|
||||
@ -1366,9 +1455,9 @@
|
||||
{
|
||||
"Type": "TextArea",
|
||||
"Name": "details",
|
||||
"X": 15,
|
||||
"X": 17,
|
||||
"Y": 60,
|
||||
"Width": 420,
|
||||
"Width": 426,
|
||||
"Height": 75,
|
||||
"TextId": "__SingleUse_9L8R",
|
||||
"TextRotation": "0",
|
||||
@ -1386,13 +1475,13 @@
|
||||
"Name": "DriverViewStatusItem",
|
||||
"X": 35,
|
||||
"Y": 115,
|
||||
"Width": 75,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"Components": [
|
||||
{
|
||||
"Type": "BoxWithBorder",
|
||||
"Name": "bg",
|
||||
"Width": 75,
|
||||
"Width": 65,
|
||||
"Height": 33,
|
||||
"BorderColor": {
|
||||
"Red": 255,
|
||||
@ -1405,7 +1494,7 @@
|
||||
"Type": "TextArea",
|
||||
"Name": "text",
|
||||
"Y": 4,
|
||||
"Width": 75,
|
||||
"Width": 65,
|
||||
"Height": 25,
|
||||
"TextId": "__SingleUse_F9I5",
|
||||
"TextRotation": "0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user