From 22e7bf32b894acc1f9e2820e213f05a57bd4148c Mon Sep 17 00:00:00 2001 From: Mark Arigo Date: Fri, 27 Jun 2008 18:40:25 +0000 Subject: My Devcon 2008 contribution: port for Philips GoGear HDD1630 (PP5022-based). Current status is that the bootloader works to load Rockbox, but dual boot does not work: it freezes after decrypting the OF. When Rockbox boots, it freezes somewhere between showing the logo and the main menu. And there's no driver for the touchpad. So lots of work left. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17809 a1c6a512-1295-4272-9138-f99709370657 --- .../target/arm/philips/hdd1630/button-target.h | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 firmware/target/arm/philips/hdd1630/button-target.h (limited to 'firmware/target/arm/philips/hdd1630/button-target.h') diff --git a/firmware/target/arm/philips/hdd1630/button-target.h b/firmware/target/arm/philips/hdd1630/button-target.h new file mode 100755 index 0000000000..92c584463f --- /dev/null +++ b/firmware/target/arm/philips/hdd1630/button-target.h @@ -0,0 +1,53 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2008 by Mark Arigo + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef _BUTTON_TARGET_H_ +#define _BUTTON_TARGET_H_ + +#include +#include "config.h" + +#define HAS_BUTTON_HOLD + +bool button_hold(void); +void button_init_device(void); +int button_read_device(void); + +/* Main unit's buttons */ +#define BUTTON_POWER 0x00000001 +#define BUTTON_PLAYLIST 0x00000002 +#define BUTTON_MENU 0x00000004 +#define BUTTON_VIEW 0x00000008 +#define BUTTON_VOL_UP 0x00000010 +#define BUTTON_VOL_DOWN 0x00000020 +#define BUTTON_SELECT 0x00000040 +#define BUTTON_LEFT 0x00000080 +#define BUTTON_RIGHT 0x00000100 +#define BUTTON_UP 0x00000200 +#define BUTTON_DOWN 0x00000400 + +#define BUTTON_MAIN 0x00000fff + +/* No Remote control */ +#define BUTTON_REMOTE 0 + +#define POWEROFF_BUTTON BUTTON_POWER +#define POWEROFF_COUNT 10 + +#endif /* _BUTTON_TARGET_H_ */ -- cgit v1.2.3