diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-03-05 00:04:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-05 00:04:00 +0000 |
| commit | 8876018d25c6a56cce118482c1372bbff344cb23 (patch) | |
| tree | a66dca10bf92674c655b9862fd366ecc77bba76a /apps/debug_menu.c | |
| parent | ee07215d506def8d3483f4adf6e1d4ae51c10c52 (diff) | |
| download | rockbox-8876018d25c6a56cce118482c1372bbff344cb23.zip rockbox-8876018d25c6a56cce118482c1372bbff344cb23.tar.gz rockbox-8876018d25c6a56cce118482c1372bbff344cb23.tar.bz2 rockbox-8876018d25c6a56cce118482c1372bbff344cb23.tar.xz | |
Bring up the M5 port to a working stage: Extended numerous explicit checks for IAUDIO_X5 to also check for IAUDIO_M5, moved code around the target tree, added preliminary background for the sim.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12610 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index d6c5ef4..531ac10 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1077,7 +1077,7 @@ bool dbg_ports(void) snprintf(buf, sizeof(buf), "ADC_BUTTONS: %02x", adc_buttons); #endif lcd_puts(0, line++, buf); -#ifdef IAUDIO_X5 +#if defined(IAUDIO_X5) || defined(IAUDIO_M5) snprintf(buf, sizeof(buf), "ADC_REMOTE (%c): %02x", remote_detect() ? '+' : '-', adc_remote); #else @@ -1953,7 +1953,7 @@ static bool dbg_save_roms(void) fd = creat("/internal_rom_000000-1FFFFF.bin"); #elif defined(IRIVER_H300_SERIES) fd = creat("/internal_rom_000000-3FFFFF.bin"); -#elif defined(IAUDIO_X5) +#elif defined(IAUDIO_X5) || defined(IAUDIO_M5) fd = creat("/internal_rom_000000-3FFFFF.bin"); #endif if(fd >= 0) |