Compare commits

..

No commits in common. "6543ac4d954872b49ae372d0bf77c1268ff50b05" and "3e6bbe5e47d201d60ccb4ebeb39789f80be90c8f" have entirely different histories.

25 changed files with 453 additions and 709 deletions

View File

@ -87,8 +87,6 @@ typedef struct {
float inv_r; float inv_r;
float mot_l; float mot_l;
float mot_r; float mot_r;
float bat_l;
float bat_r;
} Temperatures; } Temperatures;
typedef struct { typedef struct {

View File

@ -3,19 +3,11 @@
#include "app_azure_rtos.h" #include "app_azure_rtos.h"
#include "main.h" #include "main.h"
#include "stm32h7xx_hal.h"
#include "stm32h7xx_hal_dma.h" #include "stm32h7xx_hal_dma.h"
#include "stm32h7xx_hal_gpio.h" #include "stm32h7xx_hal_gpio.h"
#include "stm32h7xx_hal_spi.h" #include "stm32h7xx_hal_spi.h"
#include "stm32h7xx_hal_tim.h" #include "stm32h7xx_hal_tim.h"
#include "tx_api.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; SPI_HandleTypeDef *hspi;
TIM_HandleTypeDef *htim; TIM_HandleTypeDef *htim;
@ -74,37 +66,9 @@ void led_thread_entry(ULONG child_thread_stack_addr) {
led_start_animation(ANIM_RAINBOW); led_start_animation(ANIM_RAINBOW);
while (1) { while (1) {
tx_thread_sleep(10); tx_thread_sleep(10);
if (child_thread.tx_thread_stack_start && if (child_thread.tx_thread_state == TX_COMPLETED) {
child_thread.tx_thread_state != TX_COMPLETED && tx_thread_sleep(20);
child_thread.tx_thread_state != TX_TERMINATED) { led_start_animation(ANIM_TE_STARTUP);
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);
} }
} }
} }
@ -196,9 +160,7 @@ void led_anim_knight_rider(ULONG _) {
void led_anim_rainbow(ULONG _) { void led_anim_rainbow(ULONG _) {
size_t tail = 0; size_t tail = 0;
float offset = 0.0f; float offset = 0.0f;
// Moving rainbow while (1) {
uint32_t start = HAL_GetTick();
while (offset < 360) {
for (size_t i = 0; i < N_LEDS; i++) { for (size_t i = 0; i < N_LEDS; i++) {
size_t led = (tail + i) % N_LEDS; size_t led = (tail + i) % N_LEDS;
uint8_t r, g, b; uint8_t r, g, b;
@ -206,17 +168,7 @@ void led_anim_rainbow(ULONG _) {
led_hsv_to_rgb(hue, 1, 1, &r, &g, &b); led_hsv_to_rgb(hue, 1, 1, &r, &g, &b);
led_set(led, r, g, b); led_set(led, r, g, b);
} }
offset = (HAL_GetTick() - start) / 5.0f; offset = fmodf(offset + 2.0f, 360.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); tx_thread_sleep(1);
} }
} }

View File

@ -92,9 +92,6 @@ 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; ftcan_unmarshal_unsigned(&ptr, 2) * CAN_AMS_STATUS_VOLTAGE_FACTOR;
vehicle_state.max_cell_temp = vehicle_state.max_cell_temp =
ftcan_unmarshal_signed(&ptr, 2) * CAN_AMS_STATUS_TEMP_FACTOR; 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; break;
case CAN_ID_AMS_ERROR: case CAN_ID_AMS_ERROR:
vehicle_state.last_ams_error.kind = data[0]; vehicle_state.last_ams_error.kind = data[0];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 B

After

Width:  |  Height:  |  Size: 95 B

View File

@ -5,9 +5,6 @@
</Languages> </Languages>
<Texts> <Texts>
<TextGroup Id="Status"> <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"> <Text Id="PDU" Alignment="Center" TypographyId="Chinat_Small">
<Translation Language="GB">PDU</Translation> <Translation Language="GB">PDU</Translation>
</Text> </Text>
@ -171,17 +168,14 @@
</Text> </Text>
</TextGroup> </TextGroup>
<TextGroup Id="Unsorted"> <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"> <Text Id="__SingleUse_F9I5" Alignment="Center" TypographyId="Chinat_Small">
<Translation Language="GB" /> <Translation Language="GB" />
</Text> </Text>
<Text Id="__SingleUse_JN2J" Alignment="Center" TypographyId="Chinat_Small"> <Text Id="__SingleUse_JN2J" Alignment="Center" TypographyId="Chinat_Small">
<Translation Language="GB">MOT</Translation> <Translation Language="GB">MOTOR</Translation>
</Text> </Text>
<Text Id="__SingleUse_ZP7N" Alignment="Center" TypographyId="Chinat_Small"> <Text Id="__SingleUse_ZP7N" Alignment="Center" TypographyId="Chinat_Small">
<Translation Language="GB">INV</Translation> <Translation Language="GB">INVERTER</Translation>
</Text> </Text>
<Text Id="__SingleUse_9L8R" Alignment="Left" TypographyId="Default"> <Text Id="__SingleUse_9L8R" Alignment="Left" TypographyId="Default">
<Translation Language="GB">&lt;value&gt;</Translation> <Translation Language="GB">&lt;value&gt;</Translation>

View File

@ -8,12 +8,12 @@
#include <mvp/View.hpp> #include <mvp/View.hpp>
#include <gui/driverview_screen/DriverViewPresenter.hpp> #include <gui/driverview_screen/DriverViewPresenter.hpp>
#include <touchgfx/widgets/Box.hpp> #include <touchgfx/widgets/Box.hpp>
#include <touchgfx/containers/Container.hpp>
#include <touchgfx/containers/progress_indicators/LineProgress.hpp> #include <touchgfx/containers/progress_indicators/LineProgress.hpp>
#include <touchgfx/widgets/canvas/PainterRGB565.hpp> #include <touchgfx/widgets/canvas/PainterRGB565.hpp>
#include <touchgfx/widgets/TextArea.hpp> #include <touchgfx/widgets/TextArea.hpp>
#include <touchgfx/widgets/canvas/Line.hpp> #include <touchgfx/containers/Container.hpp>
#include <gui/containers/Temperature.hpp> #include <gui/containers/Temperature.hpp>
#include <touchgfx/widgets/canvas/Line.hpp>
#include <touchgfx/containers/scrollers/ScrollWheel.hpp> #include <touchgfx/containers/scrollers/ScrollWheel.hpp>
#include <gui/containers/DriverViewFieldSelection.hpp> #include <gui/containers/DriverViewFieldSelection.hpp>
#include <gui/containers/DriverViewField.hpp> #include <gui/containers/DriverViewField.hpp>
@ -69,7 +69,6 @@ protected:
* Member Declarations * Member Declarations
*/ */
touchgfx::Box __background; touchgfx::Box __background;
touchgfx::Container SoC;
touchgfx::LineProgress tsSoC; touchgfx::LineProgress tsSoC;
touchgfx::PainterRGB565 tsSoCPainter; touchgfx::PainterRGB565 tsSoCPainter;
touchgfx::LineProgress lvSoC; touchgfx::LineProgress lvSoC;
@ -77,20 +76,11 @@ protected:
touchgfx::TextArea tsSoCLabel; touchgfx::TextArea tsSoCLabel;
touchgfx::TextArea lvSoCLabel; touchgfx::TextArea lvSoCLabel;
touchgfx::Container drivetrainTemps; touchgfx::Container drivetrainTemps;
touchgfx::Line batTempDiv; touchgfx::TextArea motorTempLabel;
touchgfx::PainterRGB565 batTempDivPainter; Temperature motorTempL;
Temperature batTempR; Temperature motorTempR;
Temperature batTempL;
touchgfx::TextArea batTempLabel;
touchgfx::Line dtDiv2;
touchgfx::PainterRGB565 dtDiv2Painter;
touchgfx::Line motorTempDiv; touchgfx::Line motorTempDiv;
touchgfx::PainterRGB565 motorTempDivPainter; touchgfx::PainterRGB565 motorTempDivPainter;
Temperature motorTempR;
Temperature motorTempL;
touchgfx::TextArea motorTempLabel;
touchgfx::Line dtDiv1;
touchgfx::PainterRGB565 dtDiv1Painter;
touchgfx::Line invTempDiv; touchgfx::Line invTempDiv;
touchgfx::PainterRGB565 invTempDivPainter; touchgfx::PainterRGB565 invTempDivPainter;
Temperature invTempR; Temperature invTempR;
@ -120,7 +110,6 @@ protected:
DriverViewStatusItem statusSCS; DriverViewStatusItem statusSCS;
DriverViewStatusItem statusPDU; DriverViewStatusItem statusPDU;
DriverViewStatusItem statusINV; DriverViewStatusItem statusINV;
DriverViewStatusItem statusLV;
touchgfx::BoxProgress progressBar; touchgfx::BoxProgress progressBar;
touchgfx::TextArea prechargeLabel; touchgfx::TextArea prechargeLabel;
touchgfx::TextArea r2dLabel; touchgfx::TextArea r2dLabel;

View File

@ -7,21 +7,21 @@
DriverViewFieldBase::DriverViewFieldBase() DriverViewFieldBase::DriverViewFieldBase()
{ {
setWidth(152); setWidth(150);
setHeight(80); setHeight(80);
box.setPosition(0, 0, 152, 80); box.setPosition(0, 0, 150, 80);
box.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0)); box.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
box.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); box.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
box.setBorderSize(3); box.setBorderSize(3);
add(box); add(box);
title.setPosition(0, 0, 152, 25); title.setPosition(0, 0, 150, 25);
title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
title.setLinespacing(0); title.setLinespacing(0);
title.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE)); title.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE));
add(title); add(title);
value.setPosition(0, 20, 152, 57); value.setPosition(0, 20, 150, 57);
value.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); value.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
value.setLinespacing(0); value.setLinespacing(0);
value.setTypedText(touchgfx::TypedText(T_NUMBERWILDCARD)); value.setTypedText(touchgfx::TypedText(T_NUMBERWILDCARD));

View File

@ -7,19 +7,19 @@
DriverViewFieldSelectionBase::DriverViewFieldSelectionBase() DriverViewFieldSelectionBase::DriverViewFieldSelectionBase()
{ {
setWidth(152); setWidth(150);
setHeight(26); setHeight(26);
bg.setPosition(0, 0, 152, 25); bg.setPosition(0, 0, 150, 25);
bg.setColor(touchgfx::Color::getColorFromRGB(34, 34, 34)); bg.setColor(touchgfx::Color::getColorFromRGB(34, 34, 34));
add(bg); add(bg);
name.setPosition(0, 0, 152, 25); name.setPosition(0, 0, 150, 25);
name.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); name.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
name.setLinespacing(0); name.setLinespacing(0);
name.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE)); name.setTypedText(touchgfx::TypedText(T_DRIVERVIEWFIELD_TITLE));
add(name); add(name);
line1.setPosition(0, 25, 152, 1); line1.setPosition(0, 25, 150, 1);
line1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); line1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
line1.setPainter(line1Painter); line1.setPainter(line1Painter);
line1.setStart(0, 0); line1.setStart(0, 0);
@ -37,7 +37,7 @@ DriverViewFieldSelectionBase::DriverViewFieldSelectionBase()
line2.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING); line2.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
add(line2); add(line2);
line2_1.setPosition(151, 0, 1, 26); line2_1.setPosition(149, 0, 1, 26);
line2_1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); line2_1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
line2_1.setPainter(line2_1Painter); line2_1.setPainter(line2_1Painter);
line2_1.setStart(0, 0); line2_1.setStart(0, 0);

View File

@ -7,15 +7,15 @@
DriverViewStatusItemBase::DriverViewStatusItemBase() DriverViewStatusItemBase::DriverViewStatusItemBase()
{ {
setWidth(65); setWidth(75);
setHeight(33); setHeight(33);
bg.setPosition(0, 0, 65, 33); bg.setPosition(0, 0, 75, 33);
bg.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0)); bg.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
bg.setBorderSize(1); bg.setBorderSize(1);
add(bg); add(bg);
text.setPosition(0, 4, 65, 25); text.setPosition(0, 4, 75, 25);
text.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); text.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
text.setLinespacing(0); text.setLinespacing(0);
text.setTypedText(touchgfx::TypedText(T___SINGLEUSE_F9I5)); text.setTypedText(touchgfx::TypedText(T___SINGLEUSE_F9I5));

View File

@ -7,21 +7,21 @@
ErrorPopupBase::ErrorPopupBase() ErrorPopupBase::ErrorPopupBase()
{ {
setWidth(456); setWidth(450);
setHeight(150); setHeight(150);
bg.setPosition(0, 0, 456, 150); bg.setPosition(0, 0, 450, 150);
bg.setColor(touchgfx::Color::getColorFromRGB(197, 14, 31)); bg.setColor(touchgfx::Color::getColorFromRGB(197, 14, 31));
bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); bg.setBorderColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
bg.setBorderSize(5); bg.setBorderSize(5);
add(bg); add(bg);
title.setPosition(0, 0, 456, 49); title.setPosition(0, 0, 450, 49);
title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); title.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
title.setLinespacing(0); title.setLinespacing(0);
title.setTypedText(touchgfx::TypedText(T___SINGLEUSE_1NKF)); title.setTypedText(touchgfx::TypedText(T___SINGLEUSE_1NKF));
add(title); add(title);
details.setPosition(17, 60, 426, 75); details.setPosition(15, 60, 420, 75);
details.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); details.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
details.setLinespacing(0); details.setLinespacing(0);
details.setTypedText(touchgfx::TypedText(T___SINGLEUSE_9L8R)); details.setTypedText(touchgfx::TypedText(T___SINGLEUSE_9L8R));

View File

@ -16,8 +16,7 @@ DriverViewViewBase::DriverViewViewBase() :
__background.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0)); __background.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
add(__background); add(__background);
SoC.setPosition(12, 125, 152, 180); tsSoC.setXY(15, 155);
tsSoC.setXY(0, 25);
tsSoC.setProgressIndicatorPosition(0, 0, 40, 150); tsSoC.setProgressIndicatorPosition(0, 0, 40, 150);
tsSoC.setRange(0, 100); tsSoC.setRange(0, 100);
tsSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID)); tsSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID));
@ -28,9 +27,9 @@ DriverViewViewBase::DriverViewViewBase() :
tsSoC.setLineWidth(100); tsSoC.setLineWidth(100);
tsSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING); tsSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING);
tsSoC.setValue(60); tsSoC.setValue(60);
SoC.add(tsSoC); add(tsSoC);
lvSoC.setXY(95, 25); lvSoC.setXY(110, 155);
lvSoC.setProgressIndicatorPosition(0, 0, 40, 150); lvSoC.setProgressIndicatorPosition(0, 0, 40, 150);
lvSoC.setRange(0, 100); lvSoC.setRange(0, 100);
lvSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID)); lvSoC.setBackground(touchgfx::Bitmap(BITMAP_BAT_BAR_BG_ID));
@ -41,55 +40,34 @@ DriverViewViewBase::DriverViewViewBase() :
lvSoC.setLineWidth(100); lvSoC.setLineWidth(100);
lvSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING); lvSoC.setLineEndingStyle(touchgfx::Line::BUTT_CAP_ENDING);
lvSoC.setValue(80); lvSoC.setValue(80);
SoC.add(lvSoC); add(lvSoC);
tsSoCLabel.setPosition(0, 0, 40, 25); tsSoCLabel.setPosition(15, 130, 40, 25);
tsSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); tsSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
tsSoCLabel.setLinespacing(0); tsSoCLabel.setLinespacing(0);
tsSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_PHFD)); tsSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_PHFD));
SoC.add(tsSoCLabel); add(tsSoCLabel);
lvSoCLabel.setPosition(95, 0, 40, 25); lvSoCLabel.setPosition(110, 130, 40, 25);
lvSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); lvSoCLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
lvSoCLabel.setLinespacing(0); lvSoCLabel.setLinespacing(0);
lvSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_4OBM)); lvSoCLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_4OBM));
SoC.add(lvSoCLabel); add(lvSoCLabel);
add(SoC); 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);
drivetrainTemps.setPosition(316, 125, 152, 185); motorTempL.setXY(14, 115);
batTempDiv.setPosition(60, 124, 3, 60); drivetrainTemps.add(motorTempL);
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);
batTempR.setXY(63, 124); motorTempR.setXY(77, 115);
drivetrainTemps.add(batTempR); drivetrainTemps.add(motorTempR);
batTempL.setXY(0, 124); motorTempDiv.setPosition(74, 115, 3, 60);
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)); motorTempDivPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
motorTempDiv.setPainter(motorTempDivPainter); motorTempDiv.setPainter(motorTempDivPainter);
motorTempDiv.setStart(0, 0); motorTempDiv.setStart(0, 0);
@ -98,29 +76,7 @@ DriverViewViewBase::DriverViewViewBase() :
motorTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING); motorTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
drivetrainTemps.add(motorTempDiv); drivetrainTemps.add(motorTempDiv);
motorTempR.setXY(63, 62); invTempDiv.setPosition(74, 25, 3, 60);
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)); invTempDivPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
invTempDiv.setPainter(invTempDivPainter); invTempDiv.setPainter(invTempDivPainter);
invTempDiv.setStart(0, 0); invTempDiv.setStart(0, 0);
@ -129,22 +85,21 @@ DriverViewViewBase::DriverViewViewBase() :
invTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING); invTempDiv.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
drivetrainTemps.add(invTempDiv); drivetrainTemps.add(invTempDiv);
invTempR.setXY(63, 0); invTempR.setXY(77, 25);
drivetrainTemps.add(invTempR); drivetrainTemps.add(invTempR);
invTempL.setXY(0, 0); invTempL.setXY(14, 25);
drivetrainTemps.add(invTempL); drivetrainTemps.add(invTempL);
invTempLabel.setPosition(123, 0, 25, 60); invTempLabel.setPosition(0, 0, 150, 25);
invTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); invTempLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
invTempLabel.setLinespacing(0); invTempLabel.setLinespacing(0);
invTempLabel.setRotation(touchgfx::TEXT_ROTATE_90);
invTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_ZP7N)); invTempLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_ZP7N));
drivetrainTemps.add(invTempLabel); drivetrainTemps.add(invTempLabel);
add(drivetrainTemps); add(drivetrainTemps);
brakeTemps.setPosition(164, 125, 152, 150); brakeTemps.setPosition(165, 130, 150, 150);
btDivVert.setPosition(74, 25, 3, 123); btDivVert.setPosition(74, 25, 3, 123);
btDivVertPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); btDivVertPainter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
btDivVert.setPainter(btDivVertPainter); btDivVert.setPainter(btDivVertPainter);
@ -183,8 +138,8 @@ DriverViewViewBase::DriverViewViewBase() :
add(brakeTemps); add(brakeTemps);
dataFields.setPosition(12, 43, 456, 257); dataFields.setPosition(15, 48, 450, 257);
fieldTypeSelection.setPosition(0, 80, 152, 177); fieldTypeSelection.setPosition(0, 80, 150, 177);
fieldTypeSelection.setHorizontal(false); fieldTypeSelection.setHorizontal(false);
fieldTypeSelection.setCircular(true); fieldTypeSelection.setCircular(true);
fieldTypeSelection.setEasingEquation(touchgfx::EasingEquations::linearEaseOut); fieldTypeSelection.setEasingEquation(touchgfx::EasingEquations::linearEaseOut);
@ -198,10 +153,10 @@ DriverViewViewBase::DriverViewViewBase() :
fieldTypeSelection.setVisible(false); fieldTypeSelection.setVisible(false);
dataFields.add(fieldTypeSelection); dataFields.add(fieldTypeSelection);
field3.setXY(304, 0); field3.setXY(300, 0);
dataFields.add(field3); dataFields.add(field3);
field2.setXY(152, 0); field2.setXY(150, 0);
dataFields.add(field2); dataFields.add(field2);
field1.setXY(0, 0); field1.setXY(0, 0);
@ -209,24 +164,26 @@ DriverViewViewBase::DriverViewViewBase() :
add(dataFields); add(dataFields);
statusBar.setPosition(12, 10, 456, 33); statusBar.setPosition(15, 15, 450, 33);
statusItems.setXY(0, 0); statusItems.setXY(0, 0);
statusItems.setDirection(touchgfx::EAST); statusItems.setDirection(touchgfx::EAST);
statusTS_R2D.setXY(0, 0);
statusItems.add(statusTS_R2D); statusItems.add(statusTS_R2D);
statusItems.add(statusAMS); statusItems.add(statusAMS);
statusSDC.setXY(150, 0);
statusItems.add(statusSDC); statusItems.add(statusSDC);
statusSCS.setXY(225, 0);
statusItems.add(statusSCS); statusItems.add(statusSCS);
statusItems.add(statusPDU); statusItems.add(statusPDU);
statusINV.setXY(375, 0);
statusItems.add(statusINV); statusItems.add(statusINV);
statusItems.add(statusLV);
statusBar.add(statusItems); statusBar.add(statusItems);
progressBar.setXY(0, 0); progressBar.setXY(0, 0);
@ -239,21 +196,21 @@ DriverViewViewBase::DriverViewViewBase() :
progressBar.setVisible(false); progressBar.setVisible(false);
statusBar.add(progressBar); statusBar.add(progressBar);
prechargeLabel.setXY(95, -2); prechargeLabel.setXY(90, -2);
prechargeLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); prechargeLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
prechargeLabel.setLinespacing(0); prechargeLabel.setLinespacing(0);
prechargeLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_HMH2)); prechargeLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_HMH2));
prechargeLabel.setVisible(false); prechargeLabel.setVisible(false);
statusBar.add(prechargeLabel); statusBar.add(prechargeLabel);
r2dLabel.setPosition(70, -2, 317, 37); r2dLabel.setPosition(67, -2, 317, 37);
r2dLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); r2dLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
r2dLabel.setLinespacing(0); r2dLabel.setLinespacing(0);
r2dLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_NGUK)); r2dLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_NGUK));
r2dLabel.setVisible(false); r2dLabel.setVisible(false);
statusBar.add(r2dLabel); statusBar.add(r2dLabel);
r2dProgressLabel.setPosition(168, -2, 219, 37); r2dProgressLabel.setPosition(165, -2, 219, 37);
r2dProgressLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255)); r2dProgressLabel.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
r2dProgressLabel.setLinespacing(0); r2dProgressLabel.setLinespacing(0);
r2dProgressLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_J5UH)); r2dProgressLabel.setTypedText(touchgfx::TypedText(T___SINGLEUSE_J5UH));
@ -262,7 +219,7 @@ DriverViewViewBase::DriverViewViewBase() :
add(statusBar); add(statusBar);
errorPopup.setXY(12, 150); errorPopup.setXY(15, 155);
errorPopup.setVisible(false); errorPopup.setVisible(false);
add(errorPopup); add(errorPopup);
} }
@ -274,10 +231,8 @@ DriverViewViewBase::~DriverViewViewBase()
void DriverViewViewBase::setupScreen() void DriverViewViewBase::setupScreen()
{ {
batTempR.initialize();
batTempL.initialize();
motorTempR.initialize();
motorTempL.initialize(); motorTempL.initialize();
motorTempR.initialize();
invTempR.initialize(); invTempR.initialize();
invTempL.initialize(); invTempL.initialize();
brakeTempRR.initialize(); brakeTempRR.initialize();
@ -298,7 +253,6 @@ void DriverViewViewBase::setupScreen()
statusSCS.initialize(); statusSCS.initialize();
statusPDU.initialize(); statusPDU.initialize();
statusINV.initialize(); statusINV.initialize();
statusLV.initialize();
errorPopup.initialize(); errorPopup.initialize();
} }

View File

@ -1,4 +1,4 @@
// 4.21.2 0xa2d5059d // 4.21.2 0xf98ee735
// Generated by imageconverter. Please, do not edit! // Generated by imageconverter. Please, do not edit!
#include <images/BitmapDatabase.hpp> #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[]; // 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_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_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: 456x33 pixels extern const unsigned char image_prog_horiz_bg[]; // BITMAP_PROG_HORIZ_BG_ID = 8, Size: 450x33 pixels
const touchgfx::Bitmap::BitmapData bitmap_database[] = { 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 }, { 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, 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_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_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, 456, 33, 0, 0, 456, ((uint8_t)touchgfx::Bitmap::RGB565) >> 3, 33, ((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 }
}; };
namespace BitmapDatabase namespace BitmapDatabase

View File

@ -1,11 +1,10 @@
// 4.21.2 0x7e1be905 D2 R0 FRGB565 U565 N0 SExtFlashSection // 4.21.2 0xa0b19ec8 D2 R0 FRGB565 U565 N0 SExtFlashSection
// Generated by imageconverter. Please, do not edit! // Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp> #include <touchgfx/hal/Config.hpp>
LOCATION_PRAGMA("ExtFlashSection") LOCATION_PRAGMA("ExtFlashSection")
KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFlashSection") = { // 456x33 RGB565 pixels. KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFlashSection") = { // 450x33 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, 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,
@ -155,8 +154,7 @@ 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, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0x0f, 0x3b, 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, 0xee, 0x32, 0x0f, 0x3b, 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, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
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, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
@ -231,8 +229,7 @@ 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 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, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
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, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
@ -307,8 +304,7 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 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, 0xee, 0x32,
0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 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, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
@ -383,8 +379,7 @@ 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, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 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, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
@ -459,8 +454,7 @@ 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, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 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, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
@ -534,9 +528,8 @@ 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, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 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, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 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, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
@ -610,9 +603,8 @@ 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, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0x0f, 0x3b, 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, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 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, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
@ -686,9 +678,8 @@ 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 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, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
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, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
@ -762,9 +753,8 @@ 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, 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, 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, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
0x0e, 0x33, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0f, 0x3b, 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
@ -837,10 +827,9 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 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, 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, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
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, 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, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
@ -913,10 +902,9 @@ 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, 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, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 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,
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, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
@ -989,10 +977,9 @@ 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, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 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, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
@ -1064,11 +1051,10 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 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, 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, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 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, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
@ -1140,11 +1126,10 @@ 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, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b,
@ -1216,11 +1201,10 @@ 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, 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,
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, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 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, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
@ -1292,11 +1276,10 @@ 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, 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, 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, 0x0f, 0x3b,
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
@ -1367,12 +1350,11 @@ 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 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, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 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, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
@ -1443,12 +1425,11 @@ 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, 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, 0xee, 0x32, 0x0e, 0x33,
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, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
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, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
@ -1519,12 +1500,11 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0xee, 0x32, 0x0f, 0x3b, 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, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a,
0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 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, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32,
@ -1594,13 +1574,12 @@ 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, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 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, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33,
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 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, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
@ -1670,13 +1649,12 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
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, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
@ -1746,13 +1724,12 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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,
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 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,
0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 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, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
@ -1821,14 +1798,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 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, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 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, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
@ -1897,14 +1873,13 @@ 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, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a,
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
@ -1973,14 +1948,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
@ -2049,14 +2023,13 @@ 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0xef, 0x3a, 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, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0f, 0x3b,
0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32,
@ -2124,15 +2097,14 @@ 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, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 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, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32,
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b,
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
@ -2200,15 +2172,14 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 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, 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 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, 0x0e, 0x33, 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, 0x0f, 0x3b,
0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
0x0f, 0x3b, 0xef, 0x3a, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
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, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b,
@ -2276,15 +2247,14 @@ 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 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, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33,
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b,
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, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 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,
0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xee, 0x32,
@ -2351,16 +2321,15 @@ 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, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32,
0xee, 0x32, 0x0f, 0x3b, 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, 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, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a,
0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32,
0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 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, 0xee, 0x32, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b,
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a,
0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a,
@ -2427,16 +2396,15 @@ 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, 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, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
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, 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, 0x0e, 0x33, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 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, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 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, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a,
@ -2503,14 +2471,13 @@ KEEP extern const unsigned char image_prog_horiz_bg[] LOCATION_ATTRIBUTE("ExtFla
0xee, 0x32, 0x0e, 0x33, 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, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0xee, 0x32, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 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, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0x0e, 0x33,
0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33,
0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xef, 0x3a,
0x0f, 0x3b, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33,
0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0f, 0x3b, 0xee, 0x32,
0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0xef, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b,
0xef, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0f, 0x3b, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x33
0xee, 0x32, 0x0f, 0x3b, 0x0e, 0x33, 0xee, 0x32, 0xef, 0x3a, 0x0e, 0x33
}; };

View File

@ -1 +1 @@
{"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"]]} {"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"]]}

View File

@ -1 +1 @@
{"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"]} {"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"]}

View File

@ -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,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]} {"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]}

View File

@ -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"],[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"} {"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"}

View File

@ -12,7 +12,6 @@ enum LANGUAGES
enum TEXTS enum TEXTS
{ {
T_LV,
T_PDU, T_PDU,
T_SCS, T_SCS,
T_SDC, T_SDC,
@ -64,7 +63,6 @@ enum TEXTS
T_AUTOX, T_AUTOX,
T_SKIDPAD, T_SKIDPAD,
T_ACCEL, T_ACCEL,
T___SINGLEUSE_L1J7,
T___SINGLEUSE_F9I5, T___SINGLEUSE_F9I5,
T___SINGLEUSE_JN2J, T___SINGLEUSE_JN2J,
T___SINGLEUSE_ZP7N, T___SINGLEUSE_ZP7N,

View File

@ -10,49 +10,48 @@ KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE;
// Remap all strings // Remap all strings
TEXT_LOCATION_FLASH_PRAGMA TEXT_LOCATION_FLASH_PRAGMA
KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE = { KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE = {
350, // T_LV: "LV" 345, // T_PDU: "PDU"
334, // T_PDU: "PDU" 353, // T_SCS: "SCS"
342, // T_SCS: "SCS" 357, // T_SDC: "SDC"
346, // T_SDC: "SDC" 349, // T_R2D: "R2D"
338, // T_R2D: "R2D" 342, // T_TS: "TS"
327, // T_TS: "TS" 337, // T_INV: "INV"
322, // T_INV: "INV" 333, // T_AMS: "AMS"
318, // T_AMS: "AMS"
128, // T_ERROR_AMS: "AMS ErrOr" 128, // T_ERROR_AMS: "AMS ErrOr"
167, // T_DEBUGVIEWFIELD_TITLE: "<>" 176, // T_DEBUGVIEWFIELD_TITLE: "<>"
167, // T_DRIVERVIEWFIELD_TITLE: "<>" 176, // T_DRIVERVIEWFIELD_TITLE: "<>"
167, // T_NUMBERSMALLWILDCARD: "<>" 176, // T_NUMBERSMALLWILDCARD: "<>"
278, // T_FIELD_BBAL: "BBAL" 293, // T_FIELD_BBAL: "BBAL"
247, // T_FIELD_TSVOLTVEH: "TSVVEH" 256, // T_FIELD_TSVOLTVEH: "TSVVEH"
240, // T_FIELD_TSVOLTBAT: "TSVBAT" 249, // T_FIELD_TSVOLTBAT: "TSVBAT"
260, // T_FIELD_LVSOC: "LVSOC" 269, // T_FIELD_LVSOC: "LVSOC"
272, // T_FIELD_TSSOC: "TSSOC" 287, // T_FIELD_TSSOC: "TSSOC"
288, // T_FIELD_MAXCELLTEMP: "TMAX" 303, // T_FIELD_MAXCELLTEMP: "TMAX"
293, // T_FIELD_TIREFL: "TTFL" 308, // T_FIELD_TIREFL: "TTFL"
298, // T_FIELD_TIREFR: "TTFR" 313, // T_FIELD_TIREFR: "TTFR"
303, // T_FIELD_TIRERL: "TTRL" 318, // T_FIELD_TIRERL: "TTRL"
308, // T_FIELD_TIRERR: "TTRR" 323, // T_FIELD_TIRERR: "TTRR"
283, // T_FIELD_LAPCOUNT: "LAPS" 298, // T_FIELD_LAPCOUNT: "LAPS"
177, // T_FIELD_INICHKSTATE: "ICSTATE" 186, // T_FIELD_INICHKSTATE: "ICSTATE"
254, // T_FIELD_ERR: "ERROR" 263, // T_FIELD_ERR: "ERROR"
346, // T_FIELD_SDC: "SDC" 357, // T_FIELD_SDC: "SDC"
193, // T_FIELD_INVRREADY: "INVRRDY" 202, // T_FIELD_INVRREADY: "INVRRDY"
185, // T_FIELD_INVLREADY: "INVLRDY" 194, // T_FIELD_INVLREADY: "INVLRDY"
209, // T_FIELD_R2DPROGRESS: "R2DPROG" 218, // T_FIELD_R2DPROGRESS: "R2DPROG"
201, // T_FIELD_ACTIVEMISSION: "MISSION" 210, // T_FIELD_ACTIVEMISSION: "MISSION"
169, // T_FIELD_ASSTATE: "ASSTATE" 178, // T_FIELD_ASSTATE: "ASSTATE"
225, // T_FIELD_TSSTATE: "TSSTATE" 234, // T_FIELD_TSSTATE: "TSSTATE"
167, // T_NUMBERWILDCARD: "<>" 176, // T_NUMBERWILDCARD: "<>"
167, // T_DEFAULTWILDCARD_CENTERED: "<>" 176, // T_DEFAULTWILDCARD_CENTERED: "<>"
167, // T_DEFAULTWILDCARD_RIGHTALIGNED: "<>" 176, // T_DEFAULTWILDCARD_RIGHTALIGNED: "<>"
326, // T_FIELD_TSCURRENT: "ITS" 341, // T_FIELD_TSCURRENT: "ITS"
313, // T_FIELD_MINCELLVOLT: "VMIN" 328, // T_FIELD_MINCELLVOLT: "VMIN"
266, // T_FIELD_SPEED: "SPEED" 281, // T_FIELD_SPEED: "SPEED"
95, // T_INSPECTION_HUGE: "Inspection" 95, // T_INSPECTION_HUGE: "Inspection"
158, // T_EBS_HUGE: "EBS Test" 158, // T_EBS_HUGE: "EBS Test"
117, // T_TRACKDRIVE_HUGE: "Trackdrive" 117, // T_TRACKDRIVE_HUGE: "Trackdrive"
138, // T_AUTOX_HUGE: "Autocross" 138, // T_AUTOX_HUGE: "Autocross"
217, // T_SKIDPAD_HUGE: "Skidpad" 226, // T_SKIDPAD_HUGE: "Skidpad"
82, // T_ACCEL_HUGE: "Acceleration" 82, // T_ACCEL_HUGE: "Acceleration"
34, // T_INVALID_HUGE: "Invalid Mission!" 34, // T_INVALID_HUGE: "Invalid Mission!"
67, // T_MANUAL: "Manual Driving" 67, // T_MANUAL: "Manual Driving"
@ -60,24 +59,23 @@ KEEP extern const uint32_t indicesGb[] TEXT_LOCATION_FLASH_ATTRIBUTE = {
158, // T_EBS: "EBS Test" 158, // T_EBS: "EBS Test"
117, // T_TRACKDRIVE: "Trackdrive" 117, // T_TRACKDRIVE: "Trackdrive"
138, // T_AUTOX: "Autocross" 138, // T_AUTOX: "Autocross"
217, // T_SKIDPAD: "Skidpad" 226, // T_SKIDPAD: "Skidpad"
82, // T_ACCEL: "Acceleration" 82, // T_ACCEL: "Acceleration"
243, // T___SINGLEUSE_L1J7: "BAT"
16, // T___SINGLEUSE_F9I5: "" 16, // T___SINGLEUSE_F9I5: ""
330, // T___SINGLEUSE_JN2J: "MOT" 275, // T___SINGLEUSE_JN2J: "MOTOR"
322, // T___SINGLEUSE_ZP7N: "INV" 167, // T___SINGLEUSE_ZP7N: "INVERTER"
167, // T___SINGLEUSE_9L8R: "<>" 176, // T___SINGLEUSE_9L8R: "<>"
16, // T___SINGLEUSE_1NKF: "" 16, // T___SINGLEUSE_1NKF: ""
167, // T___SINGLEUSE_J5UH: "<>" 176, // T___SINGLEUSE_J5UH: "<>"
338, // T___SINGLEUSE_NGUK: "R2D" 349, // T___SINGLEUSE_NGUK: "R2D"
167, // T___SINGLEUSE_4E84: "<>" 176, // T___SINGLEUSE_4E84: "<>"
167, // T___SINGLEUSE_YTAB: "<>" 176, // T___SINGLEUSE_YTAB: "<>"
106, // T___SINGLEUSE_RWCE: "PARAMETERS" 106, // T___SINGLEUSE_RWCE: "PARAMETERS"
148, // T___SINGLEUSE_HMH2: "PRECHARGE" 148, // T___SINGLEUSE_HMH2: "PRECHARGE"
350, // T___SINGLEUSE_4OBM: "LV" 361, // T___SINGLEUSE_4OBM: "LV"
327, // T___SINGLEUSE_PHFD: "TS" 342, // T___SINGLEUSE_PHFD: "TS"
233, // T___SINGLEUSE_H6UX: "BRAKES" 242, // T___SINGLEUSE_H6UX: "BRAKES"
167, // T___SINGLEUSE_20H3: "<>" 176, // T___SINGLEUSE_20H3: "<>"
17, // T___SINGLEUSE_SDGP: "Current Mission:" 17, // T___SINGLEUSE_SDGP: "Current Mission:"
51, // T___SINGLEUSE_M5X7: "Invalid Mission" 51, // T___SINGLEUSE_M5X7: "Invalid Mission"
0 // T___SINGLEUSE_6GPV: "Choose a mission" 0 // T___SINGLEUSE_6GPV: "Choose a mission"

View File

@ -73,39 +73,40 @@ KEEP extern const touchgfx::Unicode::UnicodeChar texts_all_languages[] TEXT_LOCA
0x41, 0x75, 0x74, 0x6f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x0, // @138 "Autocross" 0x41, 0x75, 0x74, 0x6f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x0, // @138 "Autocross"
0x50, 0x52, 0x45, 0x43, 0x48, 0x41, 0x52, 0x47, 0x45, 0x0, // @148 "PRECHARGE" 0x50, 0x52, 0x45, 0x43, 0x48, 0x41, 0x52, 0x47, 0x45, 0x0, // @148 "PRECHARGE"
0x45, 0x42, 0x53, 0x20, 0x54, 0x65, 0x73, 0x74, 0x0, // @158 "EBS Test" 0x45, 0x42, 0x53, 0x20, 0x54, 0x65, 0x73, 0x74, 0x0, // @158 "EBS Test"
0x2, 0x0, // @167 "<>" 0x49, 0x4e, 0x56, 0x45, 0x52, 0x54, 0x45, 0x52, 0x0, // @167 "INVERTER"
0x41, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @169 "ASSTATE" 0x2, 0x0, // @176 "<>"
0x49, 0x43, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @177 "ICSTATE" 0x41, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @178 "ASSTATE"
0x49, 0x4e, 0x56, 0x4c, 0x52, 0x44, 0x59, 0x0, // @185 "INVLRDY" 0x49, 0x43, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @186 "ICSTATE"
0x49, 0x4e, 0x56, 0x52, 0x52, 0x44, 0x59, 0x0, // @193 "INVRRDY" 0x49, 0x4e, 0x56, 0x4c, 0x52, 0x44, 0x59, 0x0, // @194 "INVLRDY"
0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x0, // @201 "MISSION" 0x49, 0x4e, 0x56, 0x52, 0x52, 0x44, 0x59, 0x0, // @202 "INVRRDY"
0x52, 0x32, 0x44, 0x50, 0x52, 0x4f, 0x47, 0x0, // @209 "R2DPROG" 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x0, // @210 "MISSION"
0x53, 0x6b, 0x69, 0x64, 0x70, 0x61, 0x64, 0x0, // @217 "Skidpad" 0x52, 0x32, 0x44, 0x50, 0x52, 0x4f, 0x47, 0x0, // @218 "R2DPROG"
0x54, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @225 "TSSTATE" 0x53, 0x6b, 0x69, 0x64, 0x70, 0x61, 0x64, 0x0, // @226 "Skidpad"
0x42, 0x52, 0x41, 0x4b, 0x45, 0x53, 0x0, // @233 "BRAKES" 0x54, 0x53, 0x53, 0x54, 0x41, 0x54, 0x45, 0x0, // @234 "TSSTATE"
0x54, 0x53, 0x56, 0x42, 0x41, 0x54, 0x0, // @240 "TSVBAT" 0x42, 0x52, 0x41, 0x4b, 0x45, 0x53, 0x0, // @242 "BRAKES"
0x54, 0x53, 0x56, 0x56, 0x45, 0x48, 0x0, // @247 "TSVVEH" 0x54, 0x53, 0x56, 0x42, 0x41, 0x54, 0x0, // @249 "TSVBAT"
0x45, 0x52, 0x52, 0x4f, 0x52, 0x0, // @254 "ERROR" 0x54, 0x53, 0x56, 0x56, 0x45, 0x48, 0x0, // @256 "TSVVEH"
0x4c, 0x56, 0x53, 0x4f, 0x43, 0x0, // @260 "LVSOC" 0x45, 0x52, 0x52, 0x4f, 0x52, 0x0, // @263 "ERROR"
0x53, 0x50, 0x45, 0x45, 0x44, 0x0, // @266 "SPEED" 0x4c, 0x56, 0x53, 0x4f, 0x43, 0x0, // @269 "LVSOC"
0x54, 0x53, 0x53, 0x4f, 0x43, 0x0, // @272 "TSSOC" 0x4d, 0x4f, 0x54, 0x4f, 0x52, 0x0, // @275 "MOTOR"
0x42, 0x42, 0x41, 0x4c, 0x0, // @278 "BBAL" 0x53, 0x50, 0x45, 0x45, 0x44, 0x0, // @281 "SPEED"
0x4c, 0x41, 0x50, 0x53, 0x0, // @283 "LAPS" 0x54, 0x53, 0x53, 0x4f, 0x43, 0x0, // @287 "TSSOC"
0x54, 0x4d, 0x41, 0x58, 0x0, // @288 "TMAX" 0x42, 0x42, 0x41, 0x4c, 0x0, // @293 "BBAL"
0x54, 0x54, 0x46, 0x4c, 0x0, // @293 "TTFL" 0x4c, 0x41, 0x50, 0x53, 0x0, // @298 "LAPS"
0x54, 0x54, 0x46, 0x52, 0x0, // @298 "TTFR" 0x54, 0x4d, 0x41, 0x58, 0x0, // @303 "TMAX"
0x54, 0x54, 0x52, 0x4c, 0x0, // @303 "TTRL" 0x54, 0x54, 0x46, 0x4c, 0x0, // @308 "TTFL"
0x54, 0x54, 0x52, 0x52, 0x0, // @308 "TTRR" 0x54, 0x54, 0x46, 0x52, 0x0, // @313 "TTFR"
0x56, 0x4d, 0x49, 0x4e, 0x0, // @313 "VMIN" 0x54, 0x54, 0x52, 0x4c, 0x0, // @318 "TTRL"
0x41, 0x4d, 0x53, 0x0, // @318 "AMS" 0x54, 0x54, 0x52, 0x52, 0x0, // @323 "TTRR"
0x49, 0x4e, 0x56, 0x0, // @322 "INV" 0x56, 0x4d, 0x49, 0x4e, 0x0, // @328 "VMIN"
0x49, 0x54, 0x53, 0x0, // @326 "ITS" 0x41, 0x4d, 0x53, 0x0, // @333 "AMS"
0x4d, 0x4f, 0x54, 0x0, // @330 "MOT" 0x49, 0x4e, 0x56, 0x0, // @337 "INV"
0x50, 0x44, 0x55, 0x0, // @334 "PDU" 0x49, 0x54, 0x53, 0x0, // @341 "ITS"
0x52, 0x32, 0x44, 0x0, // @338 "R2D" 0x50, 0x44, 0x55, 0x0, // @345 "PDU"
0x53, 0x43, 0x53, 0x0, // @342 "SCS" 0x52, 0x32, 0x44, 0x0, // @349 "R2D"
0x53, 0x44, 0x43, 0x0, // @346 "SDC" 0x53, 0x43, 0x53, 0x0, // @353 "SCS"
0x4c, 0x56, 0x0 // @350 "LV" 0x53, 0x44, 0x43, 0x0, // @357 "SDC"
0x4c, 0x56, 0x0 // @361 "LV"
}; };
TEXT_LOCATION_FLASH_PRAGMA TEXT_LOCATION_FLASH_PRAGMA

View File

@ -35,7 +35,6 @@ 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 },
{ 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 }, { 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
{ 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR }, { 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR }, { 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
@ -83,7 +82,6 @@ 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 },
{ 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 }, { 0, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR }, { 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
{ 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR }, { 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR },
@ -109,7 +107,6 @@ 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 },
{ 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 }, { 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
{ 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR }, { 5, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
{ 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR }, { 2, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
@ -157,7 +154,6 @@ 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 },
{ 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 }, { 0, touchgfx::LEFT, touchgfx::TEXT_DIRECTION_LTR },
{ 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR }, { 3, touchgfx::CENTER, touchgfx::TEXT_DIRECTION_LTR },
{ 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR }, { 1, touchgfx::RIGHT, touchgfx::TEXT_DIRECTION_LTR },

View File

@ -5,7 +5,7 @@
#include "touchgfx/hal/Types.hpp" #include "touchgfx/hal/Types.hpp"
#include <gui_generated/containers/DriverViewStatusItemBase.hpp> #include <gui_generated/containers/DriverViewStatusItemBase.hpp>
enum class DriverViewStatusType { TS_R2D, AMS, SDC, SCS, PDU, INV, LV }; enum class DriverViewStatusType { TS_R2D, AMS, SDC, SCS, PDU, INV };
class DriverViewStatusItem : public DriverViewStatusItemBase { class DriverViewStatusItem : public DriverViewStatusItemBase {
public: public:

View File

@ -57,11 +57,6 @@ void DriverViewStatusItem::update() {
bg.setColor(COLOR_OFF); bg.setColor(COLOR_OFF);
} }
break; break;
case DriverViewStatusType::LV:
text.setTypedText(T_LV);
// TODO: Set color based on LV SoC
bg.setColor(COLOR_OFF);
break;
} }
text.invalidate(); text.invalidate();
bg.invalidate(); bg.invalidate();

View File

@ -25,7 +25,6 @@ void DriverViewView::setupScreen() {
statusSCS.setType(DriverViewStatusType::SCS); statusSCS.setType(DriverViewStatusType::SCS);
statusPDU.setType(DriverViewStatusType::PDU); statusPDU.setType(DriverViewStatusType::PDU);
statusINV.setType(DriverViewStatusType::INV); statusINV.setType(DriverViewStatusType::INV);
statusLV.setType(DriverViewStatusType::LV);
fieldTypeSelection.setNumberOfItems(DataFieldType_COUNT); fieldTypeSelection.setNumberOfItems(DataFieldType_COUNT);
// int tireThresholds[4] = {35, 40, 50, 60}; // int tireThresholds[4] = {35, 40, 50, 60};
// tireTempFL.setTempThresholds(tireThresholds); // tireTempFL.setTempThresholds(tireThresholds);
@ -47,9 +46,6 @@ void DriverViewView::setupScreen() {
int motorThresholds[4] = {30, 45, 60, 80}; int motorThresholds[4] = {30, 45, 60, 80};
motorTempL.setTempThresholds(motorThresholds); motorTempL.setTempThresholds(motorThresholds);
motorTempR.setTempThresholds(motorThresholds); motorTempR.setTempThresholds(motorThresholds);
int batThresholds[4] = {30, 40, 50, 55};
batTempL.setTempThresholds(batThresholds);
batTempR.setTempThresholds(batThresholds);
} }
void DriverViewView::tearDownScreen() { DriverViewViewBase::tearDownScreen(); } void DriverViewView::tearDownScreen() { DriverViewViewBase::tearDownScreen(); }
@ -95,8 +91,6 @@ void DriverViewView::setTemps(const Temperatures &temps) {
invTempR.setTemp(roundf(temps.inv_r)); invTempR.setTemp(roundf(temps.inv_r));
motorTempL.setTemp(roundf(temps.mot_l)); motorTempL.setTemp(roundf(temps.mot_l));
motorTempR.setTemp(roundf(temps.mot_r)); motorTempR.setTemp(roundf(temps.mot_r));
batTempL.setTemp(roundf(temps.bat_l));
batTempR.setTemp(roundf(temps.bat_r));
} }
void DriverViewView::setTSSoC(uint8_t soc) { void DriverViewView::setTSSoC(uint8_t soc) {

View File

@ -245,219 +245,136 @@
"CanvasBufferSize": 7200, "CanvasBufferSize": 7200,
"Components": [ "Components": [
{ {
"Type": "Container", "Type": "LineProgress",
"Name": "SoC", "Name": "tsSoC",
"X": 12, "X": 15,
"Y": 125, "Y": 155,
"Width": 152, "Width": 40,
"Height": 180, "Height": 150,
"Components": [ "Color": {
{ "Red": 136,
"Type": "LineProgress", "Green": 255
"Name": "tsSoC", },
"Y": 25, "StartX": 9.0,
"Width": 40, "StartY": 150.0,
"Height": 150, "EndX": 9.0,
"Color": { "LineWidth": 100.0,
"Red": 136, "LineEndingStyle": "Butt",
"Green": 255 "FileNameBackground": "bat_bar_bg.png",
}, "ProgressRangeMax": 100,
"StartX": 9.0, "ProgressInitialValue": 60
"StartY": 150.0, },
"EndX": 9.0, {
"LineWidth": 100.0, "Type": "LineProgress",
"LineEndingStyle": "Butt", "Name": "lvSoC",
"FileNameBackground": "bat_bar_bg.png", "X": 110,
"ProgressRangeMax": 100, "Y": 155,
"ProgressInitialValue": 60 "Width": 40,
}, "Height": 150,
{ "Color": {
"Type": "LineProgress", "Red": 136,
"Name": "lvSoC", "Green": 255
"X": 95, },
"Y": 25, "StartX": 9.0,
"Width": 40, "StartY": 150.0,
"Height": 150, "EndX": 9.0,
"Color": { "LineWidth": 100.0,
"Red": 136, "LineEndingStyle": "Butt",
"Green": 255 "FileNameBackground": "bat_bar_bg.png",
}, "ProgressRangeMax": 100,
"StartX": 9.0, "ProgressInitialValue": 80
"StartY": 150.0, },
"EndX": 9.0, {
"LineWidth": 100.0, "Type": "TextArea",
"LineEndingStyle": "Butt", "Name": "tsSoCLabel",
"FileNameBackground": "bat_bar_bg.png", "X": 15,
"ProgressRangeMax": 100, "Y": 130,
"ProgressInitialValue": 80 "Width": 40,
}, "Height": 25,
{ "TextId": "__SingleUse_PHFD",
"Type": "TextArea", "TextRotation": "0",
"Name": "tsSoCLabel", "Color": {
"Width": 40, "Red": 255,
"Height": 25, "Green": 255,
"TextId": "__SingleUse_PHFD", "Blue": 255
"TextRotation": "0", }
"Color": { },
"Red": 255, {
"Green": 255, "Type": "TextArea",
"Blue": 255 "Name": "lvSoCLabel",
} "X": 110,
}, "Y": 130,
{ "Width": 40,
"Type": "TextArea", "Height": 25,
"Name": "lvSoCLabel", "TextId": "__SingleUse_4OBM",
"X": 95, "TextRotation": "0",
"Width": 40, "Color": {
"Height": 25, "Red": 255,
"TextId": "__SingleUse_4OBM", "Green": 255,
"TextRotation": "0", "Blue": 255
"Color": { }
"Red": 255,
"Green": 255,
"Blue": 255
}
}
]
}, },
{ {
"Type": "Container", "Type": "Container",
"Name": "drivetrainTemps", "Name": "drivetrainTemps",
"X": 316, "X": 315,
"Y": 125, "Y": 130,
"Width": 152, "Width": 150,
"Height": 185, "Height": 175,
"Components": [ "Components": [
{
"Type": "Line",
"Name": "batTempDiv",
"X": 60,
"Y": 124,
"Width": 3,
"Height": 60,
"Color": {
"Red": 255,
"Green": 255,
"Blue": 255
},
"EndY": 320.0,
"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", "Type": "TextArea",
"Name": "batTempLabel", "Name": "motorTempLabel",
"X": 123, "Y": 90,
"Y": 124, "Width": 150,
"Width": 25, "Height": 25,
"Height": 60, "TextId": "__SingleUse_JN2J",
"TextId": "__SingleUse_L1J7", "TextRotation": "0",
"TextRotation": "90",
"Color": { "Color": {
"Red": 255, "Red": 255,
"Green": 255, "Green": 255,
"Blue": 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", "Type": "CustomContainerInstance",
"Name": "motorTempL", "Name": "motorTempL",
"Y": 62, "X": 14,
"Y": 115,
"Width": 60, "Width": 60,
"Height": 60, "Height": 60,
"CustomContainerDefinitionName": "Temperature" "CustomContainerDefinitionName": "Temperature"
}, },
{ {
"Type": "TextArea", "Type": "CustomContainerInstance",
"Name": "motorTempLabel", "Name": "motorTempR",
"X": 123, "X": 77,
"Y": 62, "Y": 115,
"Width": 25, "Width": 60,
"Height": 60, "Height": 60,
"TextId": "__SingleUse_JN2J", "CustomContainerDefinitionName": "Temperature"
"TextRotation": "90",
"Color": {
"Red": 255,
"Green": 255,
"Blue": 255
}
}, },
{ {
"Type": "Line", "Type": "Line",
"Name": "dtDiv1", "Name": "motorTempDiv",
"Y": 60, "X": 74,
"Width": 123, "Y": 115,
"Height": 2, "Width": 3,
"Height": 60,
"Color": { "Color": {
"Red": 255, "Red": 255,
"Green": 255, "Green": 255,
"Blue": 255 "Blue": 255
}, },
"EndX": 123.0, "EndY": 320.0,
"LineWidth": 10.0, "LineWidth": 10.0,
"LineEndingStyle": "Round" "LineEndingStyle": "Round"
}, },
{ {
"Type": "Line", "Type": "Line",
"Name": "invTempDiv", "Name": "invTempDiv",
"X": 60, "X": 74,
"Y": 25,
"Width": 3, "Width": 3,
"Height": 60, "Height": 60,
"Color": { "Color": {
@ -472,7 +389,8 @@
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "invTempR", "Name": "invTempR",
"X": 63, "X": 77,
"Y": 25,
"Width": 60, "Width": 60,
"Height": 60, "Height": 60,
"CustomContainerDefinitionName": "Temperature" "CustomContainerDefinitionName": "Temperature"
@ -480,6 +398,8 @@
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "invTempL", "Name": "invTempL",
"X": 14,
"Y": 25,
"Width": 60, "Width": 60,
"Height": 60, "Height": 60,
"CustomContainerDefinitionName": "Temperature" "CustomContainerDefinitionName": "Temperature"
@ -487,11 +407,10 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "invTempLabel", "Name": "invTempLabel",
"X": 123, "Width": 150,
"Width": 25, "Height": 25,
"Height": 60,
"TextId": "__SingleUse_ZP7N", "TextId": "__SingleUse_ZP7N",
"TextRotation": "90", "TextRotation": "0",
"Color": { "Color": {
"Red": 255, "Red": 255,
"Green": 255, "Green": 255,
@ -503,9 +422,9 @@
{ {
"Type": "Container", "Type": "Container",
"Name": "brakeTemps", "Name": "brakeTemps",
"X": 164, "X": 165,
"Y": 125, "Y": 130,
"Width": 152, "Width": 150,
"Height": 150, "Height": 150,
"Components": [ "Components": [
{ {
@ -594,16 +513,16 @@
{ {
"Type": "Container", "Type": "Container",
"Name": "dataFields", "Name": "dataFields",
"X": 12, "X": 15,
"Y": 43, "Y": 48,
"Width": 456, "Width": 450,
"Height": 257, "Height": 257,
"Components": [ "Components": [
{ {
"Type": "ScrollWheel", "Type": "ScrollWheel",
"Name": "fieldTypeSelection", "Name": "fieldTypeSelection",
"Y": 80, "Y": 80,
"Width": 152, "Width": 150,
"Height": 177, "Height": 177,
"Visible": false, "Visible": false,
"SelectedItemOffset": 94, "SelectedItemOffset": 94,
@ -618,23 +537,23 @@
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "field3", "Name": "field3",
"X": 304, "X": 300,
"Width": 152, "Width": 150,
"Height": 80, "Height": 80,
"CustomContainerDefinitionName": "DriverViewField" "CustomContainerDefinitionName": "DriverViewField"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "field2", "Name": "field2",
"X": 152, "X": 150,
"Width": 152, "Width": 150,
"Height": 80, "Height": 80,
"CustomContainerDefinitionName": "DriverViewField" "CustomContainerDefinitionName": "DriverViewField"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "field1", "Name": "field1",
"Width": 152, "Width": 150,
"Height": 80, "Height": 80,
"CustomContainerDefinitionName": "DriverViewField" "CustomContainerDefinitionName": "DriverViewField"
} }
@ -643,70 +562,62 @@
{ {
"Type": "Container", "Type": "Container",
"Name": "statusBar", "Name": "statusBar",
"X": 12, "X": 15,
"Y": 10, "Y": 15,
"Width": 456, "Width": 450,
"Height": 33, "Height": 33,
"Components": [ "Components": [
{ {
"Type": "ListLayout", "Type": "ListLayout",
"Name": "statusItems", "Name": "statusItems",
"Width": 455, "Width": 450,
"Height": 33, "Height": 33,
"Direction": "East", "Direction": "East",
"Components": [ "Components": [
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusTS_R2D", "Name": "statusTS_R2D",
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusAMS", "Name": "statusAMS",
"X": 65, "X": 75,
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusSDC", "Name": "statusSDC",
"X": 130, "X": 150,
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusSCS", "Name": "statusSCS",
"X": 195, "X": 225,
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusPDU", "Name": "statusPDU",
"X": 260, "X": 300,
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
}, },
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "statusINV", "Name": "statusINV",
"X": 325, "X": 375,
"Width": 65, "Width": 75,
"Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem"
},
{
"Type": "CustomContainerInstance",
"Name": "statusLV",
"X": 390,
"Width": 65,
"Height": 33, "Height": 33,
"CustomContainerDefinitionName": "DriverViewStatusItem" "CustomContainerDefinitionName": "DriverViewStatusItem"
} }
@ -715,7 +626,7 @@
{ {
"Type": "BoxProgress", "Type": "BoxProgress",
"Name": "progressBar", "Name": "progressBar",
"Width": 456, "Width": 450,
"Height": 33, "Height": 33,
"Visible": false, "Visible": false,
"Color": { "Color": {
@ -731,7 +642,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "prechargeLabel", "Name": "prechargeLabel",
"X": 95, "X": 90,
"Y": -2, "Y": -2,
"Width": 269, "Width": 269,
"Height": 37, "Height": 37,
@ -748,7 +659,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "r2dLabel", "Name": "r2dLabel",
"X": 70, "X": 67,
"Y": -2, "Y": -2,
"Width": 317, "Width": 317,
"Height": 37, "Height": 37,
@ -764,7 +675,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "r2dProgressLabel", "Name": "r2dProgressLabel",
"X": 168, "X": 165,
"Y": -2, "Y": -2,
"Width": 219, "Width": 219,
"Height": 37, "Height": 37,
@ -783,9 +694,9 @@
{ {
"Type": "CustomContainerInstance", "Type": "CustomContainerInstance",
"Name": "errorPopup", "Name": "errorPopup",
"X": 12, "X": 15,
"Y": 150, "Y": 155,
"Width": 456, "Width": 450,
"Height": 150, "Height": 150,
"Visible": false, "Visible": false,
"CustomContainerDefinitionName": "ErrorPopup" "CustomContainerDefinitionName": "ErrorPopup"
@ -1111,13 +1022,13 @@
"Name": "DriverViewField", "Name": "DriverViewField",
"X": 80, "X": 80,
"Y": 215, "Y": 215,
"Width": 152, "Width": 150,
"Height": 80, "Height": 80,
"Components": [ "Components": [
{ {
"Type": "BoxWithBorder", "Type": "BoxWithBorder",
"Name": "box", "Name": "box",
"Width": 152, "Width": 150,
"Height": 80, "Height": 80,
"BorderColor": { "BorderColor": {
"Red": 255, "Red": 255,
@ -1129,7 +1040,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "title", "Name": "title",
"Width": 152, "Width": 150,
"Height": 25, "Height": 25,
"TextId": "DriverViewField_Title", "TextId": "DriverViewField_Title",
"TextRotation": "0", "TextRotation": "0",
@ -1144,7 +1055,7 @@
"Type": "TextArea", "Type": "TextArea",
"Name": "value", "Name": "value",
"Y": 20, "Y": 20,
"Width": 152, "Width": 150,
"Height": 57, "Height": 57,
"TextId": "NumberWildcard", "TextId": "NumberWildcard",
"TextRotation": "0", "TextRotation": "0",
@ -1162,13 +1073,13 @@
"Name": "DriverViewFieldSelection", "Name": "DriverViewFieldSelection",
"X": 100, "X": 100,
"Y": 227, "Y": 227,
"Width": 152, "Width": 150,
"Height": 26, "Height": 26,
"Components": [ "Components": [
{ {
"Type": "Box", "Type": "Box",
"Name": "bg", "Name": "bg",
"Width": 152, "Width": 150,
"Height": 25, "Height": 25,
"Color": { "Color": {
"Red": 34, "Red": 34,
@ -1179,7 +1090,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "name", "Name": "name",
"Width": 152, "Width": 150,
"Height": 25, "Height": 25,
"TextId": "DriverViewField_Title", "TextId": "DriverViewField_Title",
"TextRotation": "0", "TextRotation": "0",
@ -1194,7 +1105,7 @@
"Type": "Line", "Type": "Line",
"Name": "line1", "Name": "line1",
"Y": 25, "Y": 25,
"Width": 152, "Width": 150,
"Height": 1, "Height": 1,
"Color": { "Color": {
"Red": 255, "Red": 255,
@ -1222,7 +1133,7 @@
{ {
"Type": "Line", "Type": "Line",
"Name": "line2_1", "Name": "line2_1",
"X": 151, "X": 149,
"Width": 1, "Width": 1,
"Height": 26, "Height": 26,
"Color": { "Color": {
@ -1419,13 +1330,13 @@
"Name": "ErrorPopup", "Name": "ErrorPopup",
"X": -80, "X": -80,
"Y": 165, "Y": 165,
"Width": 456, "Width": 450,
"Height": 150, "Height": 150,
"Components": [ "Components": [
{ {
"Type": "BoxWithBorder", "Type": "BoxWithBorder",
"Name": "bg", "Name": "bg",
"Width": 456, "Width": 450,
"Height": 150, "Height": 150,
"Color": { "Color": {
"Red": 197, "Red": 197,
@ -1442,7 +1353,7 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "title", "Name": "title",
"Width": 456, "Width": 450,
"Height": 49, "Height": 49,
"TextId": "__SingleUse_1NKF", "TextId": "__SingleUse_1NKF",
"TextRotation": "0", "TextRotation": "0",
@ -1455,9 +1366,9 @@
{ {
"Type": "TextArea", "Type": "TextArea",
"Name": "details", "Name": "details",
"X": 17, "X": 15,
"Y": 60, "Y": 60,
"Width": 426, "Width": 420,
"Height": 75, "Height": 75,
"TextId": "__SingleUse_9L8R", "TextId": "__SingleUse_9L8R",
"TextRotation": "0", "TextRotation": "0",
@ -1475,13 +1386,13 @@
"Name": "DriverViewStatusItem", "Name": "DriverViewStatusItem",
"X": 35, "X": 35,
"Y": 115, "Y": 115,
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"Components": [ "Components": [
{ {
"Type": "BoxWithBorder", "Type": "BoxWithBorder",
"Name": "bg", "Name": "bg",
"Width": 65, "Width": 75,
"Height": 33, "Height": 33,
"BorderColor": { "BorderColor": {
"Red": 255, "Red": 255,
@ -1494,7 +1405,7 @@
"Type": "TextArea", "Type": "TextArea",
"Name": "text", "Name": "text",
"Y": 4, "Y": 4,
"Width": 65, "Width": 75,
"Height": 25, "Height": 25,
"TextId": "__SingleUse_F9I5", "TextId": "__SingleUse_F9I5",
"TextRotation": "0", "TextRotation": "0",