summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/button-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/coldfire/iaudio/button-target.h')
-rw-r--r--firmware/target/coldfire/iaudio/button-target.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/firmware/target/coldfire/iaudio/button-target.h b/firmware/target/coldfire/iaudio/button-target.h
new file mode 100644
index 0000000000..af1088dfed
--- /dev/null
+++ b/firmware/target/coldfire/iaudio/button-target.h
@@ -0,0 +1,73 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Linus Nielsen Feltzing
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef _BUTTON_TARGET_H_
20#define _BUTTON_TARGET_H_
21
22#include <stdbool.h>
23#include "config.h"
24
25#define HAS_BUTTON_HOLD
26#define HAS_REMOTE_BUTTON_HOLD
27
28bool button_hold(void);
29bool remote_button_hold(void);
30void button_init_device(void);
31int button_read_device(void);
32void button_enable_scan(bool enable);
33bool button_scan_enabled(void);
34
35/* iaudio X5 specific button codes */
36
37 /* Main unit's buttons */
38#define BUTTON_POWER 0x00000001
39#define BUTTON_REC 0x00000002
40
41#define BUTTON_LEFT 0x00000004
42#define BUTTON_RIGHT 0x00000008
43#define BUTTON_UP 0x00000010
44#define BUTTON_DOWN 0x00000020
45
46#define BUTTON_PLAY 0x00000040
47#define BUTTON_SELECT 0x00000080
48
49#define BUTTON_MAIN (BUTTON_POWER|BUTTON_PLAY|BUTTON_LEFT|BUTTON_RIGHT\
50 |BUTTON_UP|BUTTON_DOWN|BUTTON_REC|BUTTON_SELECT)
51
52 /* Remote control's buttons */
53#define BUTTON_RC_PLAY 0x00100000
54
55#define BUTTON_RC_REW 0x00080000
56#define BUTTON_RC_FF 0x00040000
57#define BUTTON_RC_VOL_UP 0x00020000
58#define BUTTON_RC_VOL_DOWN 0x00010000
59
60#define BUTTON_RC_REC 0x00008000
61#define BUTTON_RC_MENU 0x00004000
62
63#define BUTTON_RC_MODE 0x00002000
64
65#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN\
66 |BUTTON_RC_REW|BUTTON_RC_FF\
67 |BUTTON_RC_REC|BUTTON_RC_MENU|BUTTON_RC_MODE)
68
69#define POWEROFF_BUTTON BUTTON_POWER
70#define RC_POWEROFF_BUTTON BUTTON_RC_PLAY
71#define POWEROFF_COUNT 30
72
73#endif /* _BUTTON_TARGET_H_ */