start new makefile, migrate to libpicofe
[picodrive.git] / platform / common / input_pico.h
1 #ifndef INCLUDE_c48097f3ff2a6a9af1cce8fd7a9b3f0c
2 #define INCLUDE_c48097f3ff2a6a9af1cce8fd7a9b3f0c 1
3
4 /* ui events */
5 #define PEVB_VOL_DOWN   30
6 #define PEVB_VOL_UP     29
7 #define PEVB_STATE_LOAD 28
8 #define PEVB_STATE_SAVE 27
9 #define PEVB_SWITCH_RND 26
10 #define PEVB_SSLOT_PREV 25
11 #define PEVB_SSLOT_NEXT 24
12 #define PEVB_MENU       23
13 #define PEVB_FF         22
14 #define PEVB_PICO_PNEXT 21
15 #define PEVB_PICO_PPREV 20
16 #define PEVB_PICO_SWINP 19
17
18 #define PEV_VOL_DOWN    (1 << PEVB_VOL_DOWN)
19 #define PEV_VOL_UP      (1 << PEVB_VOL_UP)
20 #define PEV_STATE_LOAD  (1 << PEVB_STATE_LOAD)
21 #define PEV_STATE_SAVE  (1 << PEVB_STATE_SAVE)
22 #define PEV_SWITCH_RND  (1 << PEVB_SWITCH_RND)
23 #define PEV_SSLOT_PREV  (1 << PEVB_SSLOT_PREV)
24 #define PEV_SSLOT_NEXT  (1 << PEVB_SSLOT_NEXT)
25 #define PEV_MENU        (1 << PEVB_MENU)
26 #define PEV_FF          (1 << PEVB_FF)
27 #define PEV_PICO_PNEXT  (1 << PEVB_PICO_PNEXT)
28 #define PEV_PICO_PPREV  (1 << PEVB_PICO_PPREV)
29 #define PEV_PICO_SWINP  (1 << PEVB_PICO_SWINP)
30
31 #define PEV_MASK 0x7ff80000
32
33 #endif /* INCLUDE_c48097f3ff2a6a9af1cce8fd7a9b3f0c */