From e66ddd754fba4171e3fd99c5a1b911ed3f9faa3f Mon Sep 17 00:00:00 2001 From: Mark Arigo Date: Wed, 9 Jan 2008 07:24:43 +0000 Subject: Initial commit for the Olympus m:robe 100 port (PP5020). The LCD driver works. The ADC driver was copied from the H10 port (they can probably be combined later), but the battery readings aren't right and it shuts down. The touch pad buttons do not work. Install the bootloader and rockbox the H10 way. Still lots of work to do. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16030 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/config.h | 16 ++++++++++------ firmware/export/usb.h | 3 ++- 2 files changed, 12 insertions(+), 7 deletions(-) (limited to 'firmware/export') diff --git a/firmware/export/config.h b/firmware/export/config.h index f377697b70..a3c2390f84 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -71,10 +71,11 @@ #define SANSA_C200_PAD 14 #define ELIO_TPJ1022_PAD 15 #define ARCHOS_AV300_PAD 16 -#define MROBE500_PAD 17 -#define GIGABEAT_S_PAD 18 -#define LOGIK_DAX_PAD 19 -#define IAUDIO67_PAD 20 +#define MROBE100_PAD 17 +#define MROBE500_PAD 18 +#define GIGABEAT_S_PAD 19 +#define LOGIK_DAX_PAD 20 +#define IAUDIO67_PAD 21 /* CONFIG_REMOTE_KEYPAD */ #define H100_REMOTE 1 @@ -107,8 +108,9 @@ #define LCD_DSC25 16 /* as used by Archos AV300 */ #define LCD_C200 17 /* as used by Sandisk Sansa c200 */ #define LCD_MROBE500 18 /* as used by Olympus M:Robe 500i */ -#define LCD_LOGIKDAX 19 /* as used by Logik DAX - SSD1815 */ -#define LCD_IAUDIO67 20 /* as used by iAudio 6/7 - unknown */ +#define LCD_MROBE100 19 /* as used by Olympus M:Robe 100 */ +#define LCD_LOGIKDAX 20 /* as used by Logik DAX - SSD1815 */ +#define LCD_IAUDIO67 21 /* as used by iAudio 6/7 - unknown */ /* LCD_PIXELFORMAT */ #define HORIZONTAL_PACKING 1 @@ -221,6 +223,8 @@ #include "config-c200.h" #elif defined(ELIO_TPJ1022) #include "config-tpj1022.h" +#elif defined(MROBE_100) +#include "config-mrobe100.h" #elif defined(MROBE_500) #include "config-mrobe500.h" #elif defined(LOGIK_DAX) diff --git a/firmware/export/usb.h b/firmware/export/usb.h index 0977ff4d7d..c2487f3563 100644 --- a/firmware/export/usb.h +++ b/firmware/export/usb.h @@ -50,7 +50,8 @@ #elif CONFIG_KEYPAD == GIGABEAT_S_PAD #define USBPOWER_BUTTON BUTTON_MENU #define USBPOWER_BTN_IGNORE BUTTON_BACK -#elif CONFIG_KEYPAD == IRIVER_H10_PAD +#elif (CONFIG_KEYPAD == IRIVER_H10_PAD) || \ + (CONFIG_KEYPAD == MROBE100_PAD) #define USBPOWER_BUTTON BUTTON_RIGHT #define USBPOWER_BTN_IGNORE BUTTON_POWER #elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \ -- cgit v1.2.3