diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-02-25 13:26:46 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-02-25 13:26:46 +0000 |
commit | 0094b0500c87fa9a8a8ab48e877730a9680915b2 (patch) | |
tree | 3100795c25f436b6871cfcaf0abfb287a26673f2 /firmware/target/arm/as3525/sansa-fuzev2/button-target.h | |
parent | 0eb50d5106a936eeded0d15b46cf39a3d4afd204 (diff) | |
download | rockbox-0094b0500c87fa9a8a8ab48e877730a9680915b2.tar.gz rockbox-0094b0500c87fa9a8a8ab48e877730a9680915b2.zip |
Add Sansa Fuzev2 to the target tree. Bootloader builds, but is completely untested.
Compilation shows a warning for the first argument of the lcd_bitmap() call in show_logo().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24911 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/sansa-fuzev2/button-target.h')
-rw-r--r-- | firmware/target/arm/as3525/sansa-fuzev2/button-target.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/sansa-fuzev2/button-target.h b/firmware/target/arm/as3525/sansa-fuzev2/button-target.h new file mode 100644 index 0000000000..6dcd37460a --- /dev/null +++ b/firmware/target/arm/as3525/sansa-fuzev2/button-target.h | |||
@@ -0,0 +1,63 @@ | |||
1 | /*************************************************************************** | ||
2 | * __________ __ ___. | ||
3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
7 | * \/ \/ \/ \/ \/ | ||
8 | * $Id$ | ||
9 | * | ||
10 | * Copyright (C) 2006 by Barry Wardell | ||
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 | #include "config.h" | ||
27 | |||
28 | #define HAS_BUTTON_HOLD | ||
29 | |||
30 | void button_init_device(void); | ||
31 | bool button_hold(void); | ||
32 | int button_read_device(void); | ||
33 | unsigned short button_read_dbop(void); | ||
34 | /* Sandisk Sansa Fuze button codes */ | ||
35 | |||
36 | /* Main unit's buttons */ | ||
37 | #define BUTTON_HOME 0x00000001 | ||
38 | |||
39 | #define BUTTON_DOWN 0x00000002 | ||
40 | #define BUTTON_RIGHT 0x00000004 | ||
41 | |||
42 | #define BUTTON_LEFT 0x00000008 | ||
43 | #define BUTTON_SELECT 0x00000010 | ||
44 | #define BUTTON_UP 0x00000020 | ||
45 | #define BUTTON_POWER 0x00000040 | ||
46 | |||
47 | #define BUTTON_SCROLL_BACK 0x00000080 | ||
48 | #define BUTTON_SCROLL_FWD 0x00000100 | ||
49 | |||
50 | #define BUTTON_HOLD 0x00000400 | ||
51 | |||
52 | #define BUTTON_MAIN (BUTTON_HOME|BUTTON_DOWN|BUTTON_RIGHT|BUTTON_LEFT \ | ||
53 | |BUTTON_SELECT|BUTTON_UP|BUTTON_POWER \ | ||
54 | |BUTTON_SCROLL_BACK|BUTTON_SCROLL_FWD \ | ||
55 | |BUTTON_HOLD) | ||
56 | |||
57 | /* No Remote control */ | ||
58 | #define BUTTON_REMOTE 0 | ||
59 | |||
60 | #define POWEROFF_BUTTON BUTTON_POWER | ||
61 | #define POWEROFF_COUNT 10 | ||
62 | |||
63 | #endif /* _BUTTON_TARGET_H_ */ | ||