Skip to content

Commit 22fdda1

Browse files
committed
Fri 13 Mar 2020 11:10:29 EDT - sega scale hotpatch
1 parent 171a9f8 commit 22fdda1

File tree

9 files changed

+563
-103
lines changed

9 files changed

+563
-103
lines changed
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_YES
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
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
3+
# project subdirectory.
4+
#
5+
6+
PROJECT_NAME := smsplusgx-go
7+
8+
CWD := $(shell cd ../ && (bash -c "dirs +0"))
9+
EXTRA_COMPONENT_DIRS := $(CWD)/components
10+
11+
$(info CWD is $(CWD))
12+
$(info EXTRA_COMPONENT_DIRS is $(EXTRA_COMPONENT_DIRS))
13+
14+
include $(IDF_PATH)/make/project.mk

0 commit comments

Comments
 (0)