Skip to content

Commit 682d758

Browse files
committed
Tue 29 Oct 2019 07:58:51 EDT - fix for #34
1 parent fcf6301 commit 682d758

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

Components/odroid-go-pcengine-huexpress/pcengine-go/main/main.c

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ extern char *syscard_filename;
2626
#include "../components/odroid/odroid_display.h"
2727
#include "../components/odroid/odroid_sdcard.h"
2828
#include "../components/odroid/odroid_ui.h"
29+
#include "../components/odroid/odroid_ui_choosefile.h"
2930

3031
#include <dirent.h>
3132
#include <stdarg.h>
@@ -38,7 +39,7 @@ extern char *syscard_filename;
3839
#include "../components/odroid/odroid_hud.h"
3940
int ACTION;
4041
#endif
41-
42+
4243
#define NOINLINE __attribute__ ((noinline))
4344

4445
const char* SD_BASE_PATH = "/sd";
@@ -332,7 +333,7 @@ void DoMenuHome(bool save)
332333

333334
#ifdef CONFIG_IN_GAME_MENU_YES
334335
//odroid_display_lock();
335-
//EmuAudio(false);
336+
EmuAudio(false);
336337
hud_menu();
337338
printf("\nACTION:%d\n", ACTION);
338339
switch(ACTION) {
@@ -349,7 +350,7 @@ void DoMenuHome(bool save)
349350
break;
350351
}
351352
ili9341_clear(0);
352-
//EmuAudio(true);
353+
EmuAudio(true);
353354
odroid_display_unlock();
354355
#else
355356
// Clear audio to prevent studdering
@@ -489,7 +490,7 @@ NOINLINE void app_loop(void)
489490
{
490491
printf("up and running\n");
491492
//if (!(*osd_gfx_driver_list[video_driver].init) ())
492-
odroid_ui_debug_enter_loop();
493+
odroid_ui_enter_loop();
493494
RunPCE();
494495
abort();
495496
}

Emulators/handy-go/sdkconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ CONFIG_MONITOR_BAUD=115200
8383
#
8484
# Retro ESP32 Configuration
8585
#
86-
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=
87-
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=y
88-
CONFIG_DEFAULT_MENU_KEY=
89-
CONFIG_COMBO_MENU_KEY=y
86+
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=y
87+
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=
88+
CONFIG_DEFAULT_MENU_KEY=y
89+
CONFIG_COMBO_MENU_KEY=
9090
CONFIG_IN_GAME_MENU_YES=y
9191
CONFIG_IN_GAME_MENU_NO=
9292

Firmware/Releases/odroid-go.zip

951 Bytes
Binary file not shown.
1.16 KB
Binary file not shown.

Launchers/retro-esp32/sdkconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ CONFIG_MONITOR_BAUD=115200
8282
#
8383
# Retro ESP32 Configuration
8484
#
85-
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=
86-
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=y
87-
CONFIG_DEFAULT_MENU_KEY=
88-
CONFIG_COMBO_MENU_KEY=y
85+
CONFIG_LCD_DRIVER_CHIP_ODROID_GO=y
86+
CONFIG_LCD_DRIVER_CHIP_RETRO_ESP32=
87+
CONFIG_DEFAULT_MENU_KEY=y
88+
CONFIG_COMBO_MENU_KEY=
8989

9090
#
9191
# Partition Table

Launchers/retro-esp32/sdkconfig.old

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ CONFIG_FLASH_ENCRYPTION_ENABLED=
3737
#
3838
# Serial flasher config
3939
#
40-
CONFIG_ESPTOOLPY_PORT="/dev/cu.usbserial-A1015RV2"
40+
CONFIG_ESPTOOLPY_PORT="/dev/cu.SLAB_USBtoUART"
4141
CONFIG_ESPTOOLPY_BAUD_115200B=
4242
CONFIG_ESPTOOLPY_BAUD_230400B=
4343
CONFIG_ESPTOOLPY_BAUD_921600B=y

0 commit comments

Comments
 (0)