summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/mpio/button-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/coldfire/mpio/button-target.h')
-rw-r--r--firmware/target/coldfire/mpio/button-target.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/firmware/target/coldfire/mpio/button-target.h b/firmware/target/coldfire/mpio/button-target.h
index 6cfe758458..b7c31f8c59 100644
--- a/firmware/target/coldfire/mpio/button-target.h
+++ b/firmware/target/coldfire/mpio/button-target.h
@@ -36,30 +36,30 @@ int button_read_device(void);
36/* Main unit's buttons - flags as in original firmware*/ 36/* Main unit's buttons - flags as in original firmware*/
37#define BUTTON_PLAY 0x00000001 37#define BUTTON_PLAY 0x00000001
38 38
39#define BUTTON_PREV 0x00000004 39#define BUTTON_REW 0x00000004
40#define BUTTON_NEXT 0x00000002 40#define BUTTON_FF 0x00000002
41#define BUTTON_VOL_UP 0x00000008 41#define BUTTON_VOL_UP 0x00000008
42#define BUTTON_VOL_DOWN 0x00000010 42#define BUTTON_VOL_DOWN 0x00000010
43#define BUTTON_REC 0x00000020 43#define BUTTON_REC 0x00000020
44#define BUTTON_SELECT 0x00002000 44#define BUTTON_FUNC 0x00002000
45 45
46#define BUTTON_RC_PLAY 0x00010000 46#define BUTTON_RC_PLAY 0x00010000
47 47
48#define BUTTON_RC_PREV 0x00040000 48#define BUTTON_RC_REW 0x00040000
49#define BUTTON_RC_NEXT 0x00020000 49#define BUTTON_RC_FF 0x00020000
50#define BUTTON_RC_VOL_UP 0x00080000 50#define BUTTON_RC_VOL_UP 0x00080000
51#define BUTTON_RC_VOL_DOWN 0x00100000 51#define BUTTON_RC_VOL_DOWN 0x00100000
52#define BUTTON_RC_SELECT 0x20000000 52#define BUTTON_RC_FUNC 0x20000000
53 53
54#define BUTTON_LEFT BUTTON_PREV 54#define BUTTON_LEFT BUTTON_REW
55#define BUTTON_RIGHT BUTTON_NEXT 55#define BUTTON_RIGHT BUTTON_FF
56#define BUTTON_ON BUTTON_PLAY 56#define BUTTON_ON BUTTON_PLAY
57 57
58#define BUTTON_MAIN (BUTTON_PLAY|BUTTON_PREV|BUTTON_NEXT|BUTTON_VOL_UP|\ 58#define BUTTON_MAIN (BUTTON_PLAY|BUTTON_REW|BUTTON_FF|BUTTON_VOL_UP|\
59 BUTTON_VOL_DOWN|BUTTON_REC|BUTTON_SELECT) 59 BUTTON_VOL_DOWN|BUTTON_REC|BUTTON_FUNC)
60 60
61#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_PREV|BUTTON_RC_NEXT|\ 61#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_REW|BUTTON_RC_FF|\
62 BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN|BUTTON_RC_SELECT) 62 BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN|BUTTON_RC_FUNC)
63 63
64#define POWEROFF_BUTTON BUTTON_PLAY 64#define POWEROFF_BUTTON BUTTON_PLAY
65#define RC_POWEROFF_BUTTON BUTTON_RC_PLAY 65#define RC_POWEROFF_BUTTON BUTTON_RC_PLAY