summaryrefslogtreecommitdiff
path: root/firmware/target/arm/olympus/mrobe-100/button-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/olympus/mrobe-100/button-target.h')
-rw-r--r--firmware/target/arm/olympus/mrobe-100/button-target.h36
1 files changed, 16 insertions, 20 deletions
diff --git a/firmware/target/arm/olympus/mrobe-100/button-target.h b/firmware/target/arm/olympus/mrobe-100/button-target.h
index 99f17bb09b..c7d9114004 100644
--- a/firmware/target/arm/olympus/mrobe-100/button-target.h
+++ b/firmware/target/arm/olympus/mrobe-100/button-target.h
@@ -5,9 +5,9 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2008 by Mark Arigo 10 * Copyright (C) 2008 by Mark Arigo
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -29,28 +29,24 @@ bool button_hold(void);
29void button_init_device(void); 29void button_init_device(void);
30int button_read_device(void); 30int button_read_device(void);
31 31
32/* Power button is on GPIOA */
33#define BUTTON_POWER 0x80
34#define POWEROFF_BUTTON BUTTON_POWER 32#define POWEROFF_BUTTON BUTTON_POWER
35#define POWEROFF_COUNT 10 33#define POWEROFF_COUNT 10
36 34
37/* Hold button is on GPIOD */
38#define BUTTON_HOLD 0x10
39
40/* FIXME: Until the buttons are figured out, we use the button definitions 35/* FIXME: Until the buttons are figured out, we use the button definitions
41 for the H10 keypad & remote. THESE ARE NOT CORRECT! */ 36 for the H10 keypad & remote. THESE ARE NOT CORRECT! */
42 37
43/* Main unit's buttons */ 38/* Main unit's buttons */
44#define BUTTON_LEFT 0x00000002 39#define BUTTON_POWER 0x00000001
45#define BUTTON_RIGHT 0x00000004 40#define BUTTON_LEFT 0x00000002
46#define BUTTON_REW 0x00000008 41#define BUTTON_RIGHT 0x00000004
47#define BUTTON_PLAY 0x00000010 42#define BUTTON_REW 0x00000008
48#define BUTTON_FF 0x00000020 43#define BUTTON_PLAY 0x00000010
49#define BUTTON_SCROLL_UP 0x00000040 44#define BUTTON_FF 0x00000020
50#define BUTTON_SCROLL_DOWN 0x00000080 45#define BUTTON_SCROLL_UP 0x00000040
51#define BUTTON_MAIN (BUTTON_POWER|BUTTON_O|BUTTON_BACK|BUTTON_REW\ 46#define BUTTON_SCROLL_DOWN 0x00000080
52 |BUTTON_PLAY|BUTTON_FF) 47#define BUTTON_MAIN (BUTTON_POWER|BUTTON_O|BUTTON_BACK|BUTTON_REW\
53 48 |BUTTON_PLAY|BUTTON_FF)
49
54/* Remote control's buttons */ 50/* Remote control's buttons */
55#define BUTTON_RC_REW 0x00080000 51#define BUTTON_RC_REW 0x00080000
56#define BUTTON_RC_PLAY 0x00100000 52#define BUTTON_RC_PLAY 0x00100000