File tree Expand file tree Collapse file tree 9 files changed +563
-103
lines changed
Components/retro-go/smsplusgx-go
Configs/retro-esp/Emulators/retro-go/smsplusgx-go Expand file tree Collapse file tree 9 files changed +563
-103
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments