summaryrefslogtreecommitdiff
path: root/firmware/target/sh/archos/player
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/sh/archos/player')
-rwxr-xr-xfirmware/target/sh/archos/player/button-player.c74
-rwxr-xr-xfirmware/target/sh/archos/player/button-target.h56
2 files changed, 130 insertions, 0 deletions
diff --git a/firmware/target/sh/archos/player/button-player.c b/firmware/target/sh/archos/player/button-player.c
new file mode 100755
index 0000000000..fbc940f7de
--- /dev/null
+++ b/firmware/target/sh/archos/player/button-player.c
@@ -0,0 +1,74 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Jens Arnold
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
20#include "config.h"
21#include "system.h"
22#include "button.h"
23#include "backlight.h"
24#include "adc.h"
25
26/*
27 Player hardware button hookup
28 =============================
29
30 Player
31 ------
32 LEFT: AN0
33 MENU: AN1
34 RIGHT: AN2
35 PLAY: AN3
36
37 STOP: PA11
38 ON: PA5
39
40 All buttons are low active
41*/
42
43void button_init_device(void)
44{
45 /* set PA5 and PA11 as input pins */
46 PACR1 &= 0xff3f; /* PA11MD = 00 */
47 PACR2 &= 0xfbff; /* PA5MD = 0 */
48 PAIOR &= ~0x0820; /* Inputs */
49}
50
51int button_read_device(void)
52{
53 int btn = BUTTON_NONE;
54 int data;
55
56 /* buttons are active low */
57 if (adc_read(0) < 0x180)
58 btn = BUTTON_LEFT;
59 if (adc_read(1) < 0x180)
60 btn |= BUTTON_MENU;
61 if (adc_read(2) < 0x180)
62 btn |= BUTTON_RIGHT;
63 if (adc_read(3) < 0x180)
64 btn |= BUTTON_PLAY;
65
66 /* check port A pins for ON and STOP */
67 data = PADR;
68 if ( !(data & 0x0020) )
69 btn |= BUTTON_ON;
70 if ( !(data & 0x0800) )
71 btn |= BUTTON_STOP;
72
73 return btn;
74}
diff --git a/firmware/target/sh/archos/player/button-target.h b/firmware/target/sh/archos/player/button-target.h
new file mode 100755
index 0000000000..c1e0e6646b
--- /dev/null
+++ b/firmware/target/sh/archos/player/button-target.h
@@ -0,0 +1,56 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 by Jens Arnold
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
20#ifndef _BUTTON_TARGET_H_
21#define _BUTTON_TARGET_H_
22
23#include <stdbool.h>
24#include "config.h"
25
26#define HAS_SERIAL_REMOTE
27
28void button_init_device(void);
29int button_read_device(void);
30
31 /* Main unit's buttons */
32#define BUTTON_ON 0x00000001
33#define BUTTON_STOP 0x00000002
34
35#define BUTTON_LEFT 0x00000004
36#define BUTTON_RIGHT 0x00000008
37#define BUTTON_PLAY 0x00000010
38#define BUTTON_MENU 0x00000020
39
40#define BUTTON_MAIN (BUTTON_ON|BUTTON_STOP|BUTTON_LEFT|BUTTON_RIGHT\
41 |BUTTON_PLAY|BUTTON_MENU)
42
43 /* Remote control's buttons */
44#define BUTTON_RC_PLAY 0x00100000
45#define BUTTON_RC_STOP 0x00080000
46
47#define BUTTON_RC_LEFT 0x00040000
48#define BUTTON_RC_RIGHT 0x00020000
49#define BUTTON_RC_VOL_UP 0x00010000
50#define BUTTON_RC_VOL_DOWN 0x00008000
51
52#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP\
53 |BUTTON_RC_LEFT|BUTTON_RC_RIGHT\
54 |BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
55
56#endif /* _BUTTON_TARGET_H_ */