summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-02-27 22:08:58 +0000
committerAidan MacDonald <amachronic@protonmail.com>2021-03-28 00:01:37 +0000
commit3ec66893e377b088c1284d2d23adb2aeea6d7965 (patch)
treeb647717f83ad56b15dc42cfdef5d04d68cd9bd6b /firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h
parent83fcbedc65f4b9ae7e491ecf6f07c0af4b245f74 (diff)
downloadrockbox-3ec66893e377b088c1284d2d23adb2aeea6d7965.tar.gz
rockbox-3ec66893e377b088c1284d2d23adb2aeea6d7965.zip
New port: FiiO M3K on bare metal
Change-Id: I7517e7d5459e129dcfc9465c6fbd708619888fbe
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h')
-rw-r--r--firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h b/firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h
new file mode 100644
index 0000000000..f75a43242d
--- /dev/null
+++ b/firmware/target/mips/ingenic_x1000/fiiom3k/button-target.h
@@ -0,0 +1,54 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2021 Aidan MacDonald
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#ifndef __BUTTON_TARGET_H__
23#define __BUTTON_TARGET_H__
24
25#include <stdbool.h>
26
27#define BUTTON_POWER 0x00000001
28#define BUTTON_PLAY 0x00000002
29#define BUTTON_VOL_UP 0x00000004
30#define BUTTON_VOL_DOWN 0x00000008
31#define BUTTON_UP 0x00000010
32#define BUTTON_DOWN 0x00000020
33#define BUTTON_LEFT 0x00000040
34#define BUTTON_RIGHT 0x00000080
35#define BUTTON_SELECT 0x00000100
36#define BUTTON_BACK 0x00000200
37#define BUTTON_MENU 0x00000400
38#define BUTTON_SCROLL_FWD 0x00000800
39#define BUTTON_SCROLL_BACK 0x00001000
40
41#define BUTTON_MAIN (BUTTON_POWER|BUTTON_VOL_UP|BUTTON_VOL_DOWN|\
42 BUTTON_PLAY|BUTTON_TOUCHPAD)
43
44#define BUTTON_TOUCHPAD (BUTTON_UP|BUTTON_DOWN|BUTTON_LEFT|BUTTON_RIGHT|\
45 BUTTON_SELECT|BUTTON_BACK|BUTTON_MENU|\
46 BUTTON_SCROLL_FWD|BUTTON_SCROLL_BACK)
47
48#define POWEROFF_BUTTON BUTTON_POWER
49#define POWEROFF_COUNT 30
50
51extern void touchpad_set_sensitivity(int level);
52extern void touchpad_enable_device(bool en);
53
54#endif /* __BUTTON_TARGET_H__ */