summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2021-05-23 17:30:58 +0100
committerAidan MacDonald <amachronic@protonmail.com>2021-07-13 22:01:33 +0100
commit4c60bc9e681865fcfc149775a1ed7ccd2613d5bf (patch)
tree99f8d91af2c171cf3843f0c14d41a20d9dc29c4f /firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h
parent3abb7c5dd5be2ec6744bfc0a80967b20f1b59e30 (diff)
downloadrockbox-4c60bc9e681865fcfc149775a1ed7ccd2613d5bf.tar.gz
rockbox-4c60bc9e681865fcfc149775a1ed7ccd2613d5bf.zip
New port: Shanling Q1 native
- Audio playback works - Touchscreen and buttons work - Bootloader works and is capable of dual boot - Plugins are working - Cabbiev2 theme has been ported - Stable for general usage Thanks to Marc Aarts for porting Cabbiev2 and plugin bitmaps. There's a few minor known issues: - Bootloader must be installed manually using 'usbboot' as there is no support in jztool yet. - Keymaps may be lacking, need further testing and feedback. - Some plugins may not be fully adapted to the screen size and could benefit from further tweaking. - LCD shows abnormal effects under some circumstances: for example, after viewing a mostly black screen an afterimage appears briefly when going back to a brightly-lit screen. Sudden power-off without proper shutdown of the backlight causes a "dissolving" effect. - CW2015 battery reporting driver is buggy, and disabled for now. Battery reporting is currently voltage-based using the AXP192. Change-Id: I635e83f02a880192c5a82cb0861ad3a61c137c3a
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h')
-rw-r--r--firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h b/firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h
new file mode 100644
index 0000000000..905d148afa
--- /dev/null
+++ b/firmware/target/mips/ingenic_x1000/shanlingq1/button-target.h
@@ -0,0 +1,56 @@
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/* physical buttons */
28#define BUTTON_POWER 0x00000001
29#define BUTTON_VOL_UP 0x00000002 /* up = wheel clockwise */
30#define BUTTON_VOL_DOWN 0x00000004
31#define BUTTON_PLAY 0x00000008 /* circle */
32#define BUTTON_NEXT 0x00000010 /* down */
33#define BUTTON_PREV 0x00000020 /* up */
34
35/* compatibility hacks */
36#define BUTTON_LEFT BUTTON_MIDLEFT
37#define BUTTON_RIGHT BUTTON_MIDRIGHT
38
39/* touchscreen "buttons" */
40#define BUTTON_TOPLEFT 0x00000040
41#define BUTTON_TOPMIDDLE 0x00000080
42#define BUTTON_TOPRIGHT 0x00000100
43#define BUTTON_MIDLEFT 0x00000200
44#define BUTTON_CENTER 0x00000400
45#define BUTTON_MIDRIGHT 0x00000800
46#define BUTTON_BOTTOMLEFT 0x00001000
47#define BUTTON_BOTTOMMIDDLE 0x00002000
48#define BUTTON_BOTTOMRIGHT 0x00004000
49
50#define BUTTON_MAIN (BUTTON_POWER|BUTTON_VOL_UP|BUTTON_VOL_DOWN|\
51 BUTTON_PLAY|BUTTON_NEXT|BUTTON_PREV)
52
53#define POWEROFF_BUTTON BUTTON_POWER
54#define POWEROFF_COUNT 30
55
56#endif /* __BUTTON_TARGET_H__ */