Skip to content

Commit f9b5b11

Browse files
Tue 13 Aug 2019 16:28:46 EDT
1 parent de824e6 commit f9b5b11

File tree

22 files changed

+2367
-246
lines changed

22 files changed

+2367
-246
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Build folder
44
**/build/*
5+
**/Firmware/Bins/*
6+
**/Firmware/Release/Retro ESP32.fw
57

68
# Prerequisites
79
*.d
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
menu "Retro ESP32 Configuration"
2+
choice LCD_DRIVER_CHIP
3+
prompt "LCD Driver Chip"
4+
default LCD_DRIVER_CHIP_ODROID_GO
5+
help
6+
LCD Screen Driver
7+
8+
config LCD_DRIVER_CHIP_ODROID_GO
9+
bool "Odroid Go - 2.4\" [ILI9341]"
10+
11+
config LCD_DRIVER_CHIP_RETRO_ESP32
12+
bool "Retro ESP32 - 2.6\" [ILI9342]"
13+
14+
endchoice
15+
16+
choice MENU_HOT_KEYS
17+
prompt "MENU Key Options"
18+
default DEFAULT_MENU_KEY
19+
help
20+
Select Hot Key (Menu Button)
21+
22+
config DEFAULT_MENU_KEY
23+
bool "Odroid Go MENU Button"
24+
25+
config COMBO_MENU_KEY
26+
bool "START + SELECT as MENU button"
27+
28+
endchoice
29+
30+
choice IN_GAME_MENU
31+
prompt "In Game Menu"
32+
default IN_GAME_MENU_NO
33+
help
34+
Use Retro ESP32 - In Game Menu
35+
36+
config IN_GAME_MENU_YES
37+
bool "YES"
38+
39+
config IN_GAME_MENU_NO
40+
bool "NO"
41+
42+
endchoice
43+
endmenu

0 commit comments

Comments
 (0)