Skip to content

Commit 3ee9bb7

Browse files
author
Eugene Andruszczenko
committed
Thu Jun 4 18:40:44 EDT 2020 - pre merge v2.5
1 parent 830b88f commit 3ee9bb7

File tree

12 files changed

+65
-10
lines changed

12 files changed

+65
-10
lines changed

Assets/retro-esp32/logos/logo3d.gif

1.5 KB
Loading

Firmware/Releases/odroid-go.zip

4.49 KB
Binary file not shown.
15.4 KB
Binary file not shown.

Firmware/Releases/retro-esp.zip

5.18 KB
Binary file not shown.

Firmware/Releases/retro-esp/Retro ESP32.fw

100755100644
14.6 KB
Binary file not shown.

Launchers/.DS_Store

0 Bytes
Binary file not shown.

Launchers/retro-esp32/main/includes/core.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
#include "../sprites/folder.h"
6767
#include "../sprites/icons.h"
6868
#include "../sprites/logo.h"
69+
#include "../sprites/logo3d.h"
6970
#include "../sprites/media.h"
7071
#include "../sprites/speaker.h"
7172
#include "../sprites/toggle.h"

Launchers/retro-esp32/main/includes/definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/*
4343
4444
*/
45-
#define BUILD "Version 2 Build 4 (v.2.4)"
45+
#define BUILD "Version 2 Build 5 (v.2.5)"
4646

4747

4848
#define _GNU_SOURCE

Launchers/retro-esp32/main/main.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2107,6 +2107,7 @@
21072107
//{#pragma region Boot Screens
21082108
void splash() {
21092109
draw_background();
2110+
/*
21102111
int w = 128;
21112112
int h = 18;
21122113
int x = (SCREEN.w/2)-(w/2);
@@ -2119,6 +2120,19 @@
21192120
}
21202121
}
21212122
ili9341_write_frame_rectangleLE(x, y, w, h, buffer);
2123+
*/
2124+
int w = 155;
2125+
int h = 38;
2126+
int x = 96;//(SCREEN.w/2)-(w/2);
2127+
int y = (SCREEN.h/2)-(h/2);
2128+
int i = 0;
2129+
for(int r = 0; r < h; r++) {
2130+
for(int c = 0; c < w; c++) {
2131+
buffer[i] = logo3d[r][c] == 0 ? GUI.bg : logo3d[r][c];
2132+
i++;
2133+
}
2134+
}
2135+
ili9341_write_frame_rectangleLE(x, y, w, h, buffer);
21222136

21232137
/*
21242138
BUILD

Launchers/retro-esp32/main/sprites/logo3d.h

Lines changed: 41 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)