summaryrefslogtreecommitdiff
path: root/firmware/target/arm/rk27xx/ihifi/button-ihifi.c
diff options
context:
space:
mode:
authorAndrew Ryabinin <ryabinin.a.a@gmail.com>2013-11-16 18:21:00 +0400
committerAndrew Ryabinin <ryabinin.a.a@gmail.com>2013-12-16 00:45:18 +0400
commit5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960 (patch)
tree4b9c567df8a5aefb46ace938a034988b7fdb045d /firmware/target/arm/rk27xx/ihifi/button-ihifi.c
parent04c59b8a15f96812081ea8730337825af679fbce (diff)
downloadrockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.tar.gz
rockbox-5b5f0755d6d7fd9e3fdfdb479caeb7fafd0a9960.zip
Introduce IHIFI760/960 targets.
Change-Id: Ie36e48742c0ed9aa3fd6f49aa034a11d2492327c
Diffstat (limited to 'firmware/target/arm/rk27xx/ihifi/button-ihifi.c')
-rw-r--r--firmware/target/arm/rk27xx/ihifi/button-ihifi.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/firmware/target/arm/rk27xx/ihifi/button-ihifi.c b/firmware/target/arm/rk27xx/ihifi/button-ihifi.c
new file mode 100644
index 0000000000..6477400255
--- /dev/null
+++ b/firmware/target/arm/rk27xx/ihifi/button-ihifi.c
@@ -0,0 +1,53 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2013 Andrew Ryabinin
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "config.h"
23#include "system.h"
24#include "button.h"
25#include "adc.h"
26#include "backlight.h"
27
28void button_init_device(void) {
29 /* setup button gpio as input */
30 GPIO_PCCON &= ~(POWEROFF_BUTTON);
31}
32
33int button_read_device(void) {
34 int adc_val = adc_read(ADC_BUTTONS);
35 int gpio_btn = GPIO_PCDR & BUTTON_PLAY;
36
37 if (adc_val < 270) {
38 if (adc_val < 110) { /* 0 - 109 */
39 return BUTTON_RETURN | gpio_btn;
40 } else { /* 110 - 269 */
41 return BUTTON_MENU |gpio_btn;
42 }
43 } else {
44 if (adc_val < 420) { /* 270 - 419 */
45 return BUTTON_BWD | gpio_btn;
46 } else if (adc_val < 580) { /* 420 - 579 */
47 return BUTTON_FWD | gpio_btn;
48 }
49 }
50 return gpio_btn;
51}
52
53