forked from len0rd/rockbox
button.h cleanup, with the future "button action" thing in mind:
1) Main unit's button defines are from the LSB to the MSB (currently bits 0-9, 0x00000200), remote ones are from the 20th bit (0x00100000) downards to 10th(0x00000400); 2) Removed the BUTTON_REMOTE modifier, replaced with a bitmask of all of the remote buttons (where applicable, otherwise with 0), added a complementary BUTTON_MAIN bitmask; 3) Moved button modifiers: - BUTTON_REPEAT: to bit 26 (0x04000000) - BUTTON_REL: to bit 25 (0x02000000) There are at least 4 bits free on all targets now: 21-24. If we really need more free bits, it's possible to SHR remote buttons 1 bit more (freeing bit 20 too), and to change the SYS_EVENT bit with a bitmask (+2 bits). 4) Bumped up the min. plugin ver. (and sorted the plugin api struct), because the binary plugins with key input won't understand the new values git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9149 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
16f7aa76d0
commit
f53f64a615
3 changed files with 257 additions and 149 deletions
|
@ -179,7 +179,7 @@ static const struct plugin_api rockbox_api = {
|
||||||
button_get_w_tmo,
|
button_get_w_tmo,
|
||||||
button_status,
|
button_status,
|
||||||
button_clear_queue,
|
button_clear_queue,
|
||||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
#ifdef HAS_BUTTON_HOLD
|
||||||
button_hold,
|
button_hold,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -357,6 +357,7 @@ static const struct plugin_api rockbox_api = {
|
||||||
menu_draw,
|
menu_draw,
|
||||||
menu_insert,
|
menu_insert,
|
||||||
menu_set_cursor,
|
menu_set_cursor,
|
||||||
|
set_option,
|
||||||
|
|
||||||
/* power */
|
/* power */
|
||||||
battery_level,
|
battery_level,
|
||||||
|
@ -411,13 +412,6 @@ static const struct plugin_api rockbox_api = {
|
||||||
/* new stuff at the end, sort into place next time
|
/* new stuff at the end, sort into place next time
|
||||||
the API gets incompatible */
|
the API gets incompatible */
|
||||||
|
|
||||||
#if CONFIG_KEYPAD == IRIVER_H300_PAD || CONFIG_KEYPAD == IPOD_4G_PAD
|
|
||||||
/* NOTE: This is already in the plugin api for the H100 - but we put it
|
|
||||||
at the end for other targets to keep the plugin api compatible */
|
|
||||||
button_hold,
|
|
||||||
#endif
|
|
||||||
/* options */
|
|
||||||
set_option,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
int plugin_load(const char* plugin, void* parameter)
|
int plugin_load(const char* plugin, void* parameter)
|
||||||
|
|
|
@ -99,12 +99,12 @@
|
||||||
#define PLUGIN_MAGIC 0x526F634B /* RocK */
|
#define PLUGIN_MAGIC 0x526F634B /* RocK */
|
||||||
|
|
||||||
/* increase this every time the api struct changes */
|
/* increase this every time the api struct changes */
|
||||||
#define PLUGIN_API_VERSION 12
|
#define PLUGIN_API_VERSION 13
|
||||||
|
|
||||||
/* update this to latest version if a change to the api struct breaks
|
/* update this to latest version if a change to the api struct breaks
|
||||||
backwards compatibility (and please take the opportunity to sort in any
|
backwards compatibility (and please take the opportunity to sort in any
|
||||||
new function which are "waiting" at the end of the function table) */
|
new function which are "waiting" at the end of the function table) */
|
||||||
#define PLUGIN_MIN_API_VERSION 11
|
#define PLUGIN_MIN_API_VERSION 13
|
||||||
|
|
||||||
/* plugin return codes */
|
/* plugin return codes */
|
||||||
enum plugin_status {
|
enum plugin_status {
|
||||||
|
@ -229,7 +229,7 @@ struct plugin_api {
|
||||||
long (*button_get_w_tmo)(int ticks);
|
long (*button_get_w_tmo)(int ticks);
|
||||||
int (*button_status)(void);
|
int (*button_status)(void);
|
||||||
void (*button_clear_queue)(void);
|
void (*button_clear_queue)(void);
|
||||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
#ifdef HAS_BUTTON_HOLD
|
||||||
bool (*button_hold)(void);
|
bool (*button_hold)(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -414,6 +414,11 @@ struct plugin_api {
|
||||||
void (*menu_insert)(int menu, int position, char *desc, bool (*function) (void));
|
void (*menu_insert)(int menu, int position, char *desc, bool (*function) (void));
|
||||||
void (*menu_set_cursor)(int menu, int position);
|
void (*menu_set_cursor)(int menu, int position);
|
||||||
|
|
||||||
|
bool (*set_option)(const char* string, void* variable,
|
||||||
|
enum optiontype type, const struct opt_items* options,
|
||||||
|
int numoptions, void (*function)(int));
|
||||||
|
|
||||||
|
|
||||||
/* power */
|
/* power */
|
||||||
int (*battery_level)(void);
|
int (*battery_level)(void);
|
||||||
bool (*battery_level_safe)(void);
|
bool (*battery_level_safe)(void);
|
||||||
|
@ -476,16 +481,6 @@ struct plugin_api {
|
||||||
/* new stuff at the end, sort into place next time
|
/* new stuff at the end, sort into place next time
|
||||||
the API gets incompatible */
|
the API gets incompatible */
|
||||||
|
|
||||||
#if CONFIG_KEYPAD == IRIVER_H300_PAD || CONFIG_KEYPAD == IPOD_4G_PAD
|
|
||||||
/* NOTE: This is already in the plugin api for the H100 - but we put it
|
|
||||||
at the end for other targets to keep the plugin api compatible */
|
|
||||||
bool (*button_hold)(void);
|
|
||||||
#endif
|
|
||||||
/* options */
|
|
||||||
bool (*set_option)(const char* string, void* variable,
|
|
||||||
enum optiontype type, const struct opt_items* options,
|
|
||||||
int numoptions, void (*function)(int));
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* plugin header */
|
/* plugin header */
|
||||||
|
|
|
@ -28,7 +28,8 @@
|
||||||
#define HAS_BUTTON_HOLD
|
#define HAS_BUTTON_HOLD
|
||||||
#define HAS_REMOTE_BUTTON_HOLD
|
#define HAS_REMOTE_BUTTON_HOLD
|
||||||
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
|
||||||
(CONFIG_KEYPAD == IPOD_3G_PAD)
|
(CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
||||||
|
(CONFIG_KEYPAD == IRIVER_IFP7XX_PAD)
|
||||||
#define HAS_BUTTON_HOLD
|
#define HAS_BUTTON_HOLD
|
||||||
#endif
|
#endif
|
||||||
extern struct event_queue button_queue;
|
extern struct event_queue button_queue;
|
||||||
|
@ -49,174 +50,292 @@ bool button_hold(void);
|
||||||
bool remote_button_hold(void);
|
bool remote_button_hold(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
|
||||||
bool button_hold(void);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define BUTTON_NONE 0x0000
|
#define BUTTON_NONE 0x00000000
|
||||||
|
|
||||||
/* Shared button codes */
|
|
||||||
#define BUTTON_LEFT 0x0040
|
|
||||||
#define BUTTON_RIGHT 0x0080
|
|
||||||
|
|
||||||
/* Button modifiers */
|
/* Button modifiers */
|
||||||
#define BUTTON_REMOTE 0x2000
|
#define BUTTON_REL 0x02000000
|
||||||
#define BUTTON_REPEAT 0x4000
|
#define BUTTON_REPEAT 0x04000000
|
||||||
#define BUTTON_REL 0x8000
|
|
||||||
|
|
||||||
/* remote control buttons */
|
|
||||||
#define BUTTON_RC_VOL_UP (0x0008 | BUTTON_REMOTE)
|
|
||||||
#define BUTTON_RC_VOL_DOWN (0x0800 | BUTTON_REMOTE)
|
|
||||||
#define BUTTON_RC_LEFT (BUTTON_LEFT | BUTTON_REMOTE)
|
|
||||||
#define BUTTON_RC_RIGHT (BUTTON_RIGHT| BUTTON_REMOTE)
|
|
||||||
|
|
||||||
#if CONFIG_KEYPAD == IRIVER_H100_PAD
|
/* Target specific button codes */
|
||||||
|
|
||||||
/* iRiver H100 specific button codes */
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD)\
|
||||||
#define BUTTON_SELECT 0x0100
|
|| (CONFIG_KEYPAD == IRIVER_H300_PAD)
|
||||||
#define BUTTON_MODE 0x0200
|
|
||||||
#define BUTTON_REC 0x0400
|
|
||||||
#define BUTTON_ON 0x0001
|
|
||||||
#define BUTTON_OFF 0x0002
|
|
||||||
#define BUTTON_UP 0x0010
|
|
||||||
#define BUTTON_DOWN 0x0020
|
|
||||||
|
|
||||||
#define BUTTON_RC_ON (BUTTON_REMOTE | 0x00010000)
|
/* iRiver H100/H300 specific button codes */
|
||||||
#define BUTTON_RC_STOP (BUTTON_REMOTE | 0x00020000)
|
|
||||||
#define BUTTON_RC_MODE (BUTTON_REMOTE | 0x00040000)
|
|
||||||
#define BUTTON_RC_BITRATE (BUTTON_REMOTE | 0x00200000)
|
|
||||||
#define BUTTON_RC_REC (BUTTON_REMOTE | 0x00400000)
|
|
||||||
#define BUTTON_RC_SOURCE (BUTTON_REMOTE | 0x00800000)
|
|
||||||
#define BUTTON_RC_MENU (BUTTON_REMOTE | 0x01000000)
|
|
||||||
#define BUTTON_RC_FF (BUTTON_REMOTE | 0x02000000)
|
|
||||||
#define BUTTON_RC_REW (BUTTON_REMOTE | 0x04000000)
|
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == IRIVER_H300_PAD
|
/* Main unit's buttons */
|
||||||
|
#define BUTTON_ON 0x00000001
|
||||||
|
#define BUTTON_OFF 0x00000002
|
||||||
|
|
||||||
/* iRiver H300 specific button codes */
|
#define BUTTON_LEFT 0x00000004
|
||||||
#define BUTTON_SELECT 0x0100
|
#define BUTTON_RIGHT 0x00000008
|
||||||
#define BUTTON_MODE 0x0200
|
#define BUTTON_UP 0x00000010
|
||||||
#define BUTTON_REC 0x0400
|
#define BUTTON_DOWN 0x00000020
|
||||||
#define BUTTON_ON 0x0001
|
|
||||||
#define BUTTON_OFF 0x0002
|
|
||||||
#define BUTTON_UP 0x0010
|
|
||||||
#define BUTTON_DOWN 0x0020
|
|
||||||
|
|
||||||
#define BUTTON_RC_ON (BUTTON_REMOTE | 0x00010000)
|
#define BUTTON_REC 0x00000040
|
||||||
#define BUTTON_RC_STOP (BUTTON_REMOTE | 0x00020000)
|
#define BUTTON_MODE 0x00000080
|
||||||
#define BUTTON_RC_MODE (BUTTON_REMOTE | 0x00040000)
|
|
||||||
#define BUTTON_RC_BITRATE (BUTTON_REMOTE | 0x00200000)
|
#define BUTTON_SELECT 0x00000100
|
||||||
#define BUTTON_RC_REC (BUTTON_REMOTE | 0x00400000)
|
|
||||||
#define BUTTON_RC_SOURCE (BUTTON_REMOTE | 0x00800000)
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_OFF|BUTTON_LEFT|BUTTON_RIGHT|\
|
||||||
#define BUTTON_RC_MENU (BUTTON_REMOTE | 0x01000000)
|
BUTTON_UP|BUTTON_DOWN|BUTTON_REC|BUTTON_MODE|BUTTON_SELECT)
|
||||||
#define BUTTON_RC_FF (BUTTON_REMOTE | 0x02000000)
|
|
||||||
#define BUTTON_RC_REW (BUTTON_REMOTE | 0x04000000)
|
/* Remote control's buttons */
|
||||||
|
#define BUTTON_RC_ON 0x00100000
|
||||||
|
#define BUTTON_RC_STOP 0x00080000
|
||||||
|
|
||||||
|
#define BUTTON_RC_REW 0x00040000
|
||||||
|
#define BUTTON_RC_FF 0x00020000
|
||||||
|
#define BUTTON_RC_VOL_UP 0x00010000
|
||||||
|
#define BUTTON_RC_VOL_DOWN 0x00008000
|
||||||
|
|
||||||
|
#define BUTTON_RC_REC 0x00004000
|
||||||
|
#define BUTTON_RC_MODE 0x00002000
|
||||||
|
|
||||||
|
#define BUTTON_RC_MENU 0x00001000
|
||||||
|
|
||||||
|
#define BUTTON_RC_BITRATE 0x00000800
|
||||||
|
#define BUTTON_RC_SOURCE 0x00000400
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE (BUTTON_RC_ON|BUTTON_RC_STOP|BUTTON_RC_REW|BUTTON_RC_FF\
|
||||||
|
|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN|BUTTON_RC_REC\
|
||||||
|
|BUTTON_RC_MODE|BUTTON_RC_MENU|BUTTON_RC_BITRATE\
|
||||||
|
|BUTTON_RC_SOURCE)
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == RECORDER_PAD
|
#elif CONFIG_KEYPAD == RECORDER_PAD
|
||||||
|
|
||||||
/* Recorder specific button codes */
|
/* Recorder specific button codes */
|
||||||
#define BUTTON_ON 0x0001
|
|
||||||
#define BUTTON_OFF 0x0002
|
|
||||||
#define BUTTON_PLAY 0x0004
|
|
||||||
#define BUTTON_UP 0x0010
|
|
||||||
#define BUTTON_DOWN 0x0020
|
|
||||||
#define BUTTON_F1 0x0100
|
|
||||||
#define BUTTON_F2 0x0200
|
|
||||||
#define BUTTON_F3 0x0400
|
|
||||||
|
|
||||||
#define BUTTON_RC_PLAY (BUTTON_PLAY | BUTTON_REMOTE)
|
/* Main unit's buttons */
|
||||||
#define BUTTON_RC_STOP (BUTTON_OFF | BUTTON_REMOTE)
|
#define BUTTON_ON 0x00000001
|
||||||
|
#define BUTTON_OFF 0x00000002
|
||||||
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_PLAY 0x00000040
|
||||||
|
|
||||||
|
#define BUTTON_F1 0x00000080
|
||||||
|
#define BUTTON_F2 0x00000100
|
||||||
|
#define BUTTON_F3 0x00000200
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_OFF|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_UP|BUTTON_DOWN|BUTTON_PLAY\
|
||||||
|
|BUTTON_F1|BUTTON_F2|BUTTON_F3)
|
||||||
|
|
||||||
|
/* Remote control's buttons */
|
||||||
|
#define BUTTON_RC_PLAY 0x00100000
|
||||||
|
#define BUTTON_RC_STOP 0x00080000
|
||||||
|
|
||||||
|
#define BUTTON_RC_LEFT 0x00040000
|
||||||
|
#define BUTTON_RC_RIGHT 0x00020000
|
||||||
|
#define BUTTON_RC_VOL_UP 0x00010000
|
||||||
|
#define BUTTON_RC_VOL_DOWN 0x00008000
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP\
|
||||||
|
|BUTTON_RC_LEFT|BUTTON_RC_RIGHT\
|
||||||
|
|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == PLAYER_PAD
|
#elif CONFIG_KEYPAD == PLAYER_PAD
|
||||||
|
|
||||||
/* Jukebox 6000 and Studio specific button codes */
|
/* Jukebox 6000 and Studio specific button codes */
|
||||||
#define BUTTON_ON 0x0001
|
|
||||||
#define BUTTON_MENU 0x0002
|
|
||||||
#define BUTTON_PLAY 0x0010
|
|
||||||
#define BUTTON_STOP 0x0020
|
|
||||||
|
|
||||||
#define BUTTON_RC_PLAY (BUTTON_PLAY | BUTTON_REMOTE)
|
/* Main unit's buttons */
|
||||||
#define BUTTON_RC_STOP (BUTTON_STOP | BUTTON_REMOTE)
|
#define BUTTON_ON 0x00000001
|
||||||
|
#define BUTTON_STOP 0x00000002
|
||||||
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_PLAY 0x00000010
|
||||||
|
#define BUTTON_MENU 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_STOP|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_PLAY|BUTTON_MENU)
|
||||||
|
|
||||||
|
/* Remote control's buttons */
|
||||||
|
#define BUTTON_RC_PLAY 0x00100000
|
||||||
|
#define BUTTON_RC_STOP 0x00080000
|
||||||
|
|
||||||
|
#define BUTTON_RC_LEFT 0x00040000
|
||||||
|
#define BUTTON_RC_RIGHT 0x00020000
|
||||||
|
#define BUTTON_RC_VOL_UP 0x00010000
|
||||||
|
#define BUTTON_RC_VOL_DOWN 0x00008000
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP\
|
||||||
|
|BUTTON_RC_LEFT|BUTTON_RC_RIGHT\
|
||||||
|
|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
|
||||||
|
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == ONDIO_PAD
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
||||||
|
|
||||||
/* Ondio specific button codes */
|
/* Ondio specific button codes */
|
||||||
#define BUTTON_OFF 0x0002
|
|
||||||
#define BUTTON_UP 0x0010
|
#define BUTTON_OFF 0x00000001
|
||||||
#define BUTTON_DOWN 0x0020
|
#define BUTTON_MENU 0x00000002
|
||||||
#define BUTTON_MENU 0x0100
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_OFF|BUTTON_MENU|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_UP|BUTTON_DOWN)
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE 0
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == GMINI100_PAD
|
#elif CONFIG_KEYPAD == GMINI100_PAD
|
||||||
|
|
||||||
#define BUTTON_ON 0x0001
|
/* Gmini specific button codes */
|
||||||
#define BUTTON_OFF 0x0002
|
|
||||||
#define BUTTON_PLAY 0x0004
|
|
||||||
#define BUTTON_UP 0x0010
|
|
||||||
#define BUTTON_DOWN 0x0020
|
|
||||||
#define BUTTON_MENU 0x0100
|
|
||||||
|
|
||||||
#elif (CONFIG_KEYPAD == IPOD_4G_PAD)
|
#define BUTTON_ON 0x00000001
|
||||||
|
#define BUTTON_OFF 0x00000002
|
||||||
|
|
||||||
/* TODO: These codes should relate to the hardware */
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_PLAY 0x00000040
|
||||||
|
#define BUTTON_MENU 0x00000080
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_OFF|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_UP|BUTTON_DOWN|BUTTON_PLAY|BUTTON_MENU)
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE 0
|
||||||
|
|
||||||
|
#elif ((CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD))
|
||||||
|
|
||||||
|
/* iPod specific button codes */
|
||||||
|
|
||||||
|
#define BUTTON_SELECT 0x00000001
|
||||||
|
#define BUTTON_MENU 0x00000002
|
||||||
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_SCROLL_FWD 0x00000010
|
||||||
|
#define BUTTON_SCROLL_BACK 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_PLAY 0x00000040
|
||||||
|
|
||||||
|
#if CONFIG_KEYPAD == IPOD_3G_PAD
|
||||||
|
#define BUTTON_HOLD 0x00000100
|
||||||
|
/* TODO Does the BUTTON_HOLD need to be here? */
|
||||||
|
#define BUTTON_MAIN (BUTTON_SELECT|BUTTON_MENU\
|
||||||
|
|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_SCROLL_FWD|BUTTON_SCROLL_BACK\
|
||||||
|
|BUTTON_PLAY|BUTTON_HOLD)
|
||||||
|
#else
|
||||||
|
#define BUTTON_MAIN (BUTTON_SELECT|BUTTON_MENU\
|
||||||
|
|BUTTON_LEFT|BUTTON_RIGHT|BUTTON_SCROLL_FWD\
|
||||||
|
|BUTTON_SCROLL_BACK|BUTTON_PLAY)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE 0
|
||||||
|
|
||||||
#define BUTTON_MENU 0x0002
|
|
||||||
#define BUTTON_PLAY 0x0004
|
|
||||||
#define BUTTON_SELECT 0x0008
|
|
||||||
#define BUTTON_SCROLL_FWD 0x0010
|
|
||||||
#define BUTTON_SCROLL_BACK 0x0020
|
|
||||||
/* This is for later
|
/* This is for later
|
||||||
#define BUTTON_SCROLL_TOUCH 0x0100*/
|
#define BUTTON_SCROLL_TOUCH 0x00000200
|
||||||
|
*/
|
||||||
#elif CONFIG_KEYPAD == IPOD_3G_PAD
|
|
||||||
|
|
||||||
/* TODO: These codes should relate to the hardware */
|
|
||||||
|
|
||||||
#define BUTTON_MENU 0x0002
|
|
||||||
#define BUTTON_PLAY 0x0004
|
|
||||||
#define BUTTON_SELECT 0x0008
|
|
||||||
#define BUTTON_SCROLL_FWD 0x0010
|
|
||||||
#define BUTTON_SCROLL_BACK 0x0020
|
|
||||||
#define BUTTON_HOLD 0x0100
|
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
#elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
|
||||||
|
|
||||||
#define BUTTON_PLAY 0x0001
|
/* iriver IFP7XX specific button codes */
|
||||||
#define BUTTON_EQ 0x0002
|
|
||||||
#define BUTTON_MODE 0x0004
|
#define BUTTON_PLAY 0x00000001
|
||||||
#define BUTTON_UP 0x0010
|
#define BUTTON_SELECT 0x00000002
|
||||||
#define BUTTON_DOWN 0x0020
|
|
||||||
#define BUTTON_SELECT 0x0100
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_MODE 0x00000040
|
||||||
|
#define BUTTON_EQ 0x00000080
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_PLAY|BUTTON_SELECT\
|
||||||
|
|BUTTON_LEFT|BUTTON_RIGHT|BUTTON_UP|BUTTON_DOWN\
|
||||||
|
|BUTTON_MODE|BUTTON_EQ)
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE 0
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == IAUDIO_X5_PAD
|
#elif CONFIG_KEYPAD == IAUDIO_X5_PAD
|
||||||
|
|
||||||
/* TODO: These codes should relate to the hardware */
|
/* iaudio X5 specific button codes */
|
||||||
|
|
||||||
|
/* Main unit's buttons */
|
||||||
|
#define BUTTON_POWER 0x00000001
|
||||||
|
#define BUTTON_PLAY 0x00000002
|
||||||
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_REC 0x00000040
|
||||||
|
#define BUTTON_SELECT 0x00000080
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_POWER|BUTTON_PLAY|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_UP|BUTTON_DOWN|BUTTON_REC|BUTTON_SELECT)
|
||||||
|
|
||||||
|
/* Remote control's buttons */
|
||||||
|
#define BUTTON_RC_PLAY 0x00100000
|
||||||
|
|
||||||
|
#define BUTTON_RC_REW 0x00080000
|
||||||
|
#define BUTTON_RC_FF 0x00040000
|
||||||
|
#define BUTTON_RC_VOL_UP 0x00020000
|
||||||
|
#define BUTTON_RC_VOL_DOWN 0x00010000
|
||||||
|
|
||||||
|
#define BUTTON_RC_REC 0x00008000
|
||||||
|
#define BUTTON_RC_MENU 0x00004000
|
||||||
|
|
||||||
|
#define BUTTON_RC_MODE 0x00002000
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN\
|
||||||
|
|BUTTON_RC_REW|BUTTON_RC_FF\
|
||||||
|
|BUTTON_RC_REC|BUTTON_RC_MENU|BUTTON_RC_MODE)
|
||||||
|
|
||||||
#define BUTTON_PLAY 0x0001
|
|
||||||
#define BUTTON_REC 0x0002
|
|
||||||
#define BUTTON_POWER 0x0004
|
|
||||||
#define BUTTON_UP 0x0008
|
|
||||||
#define BUTTON_DOWN 0x0010
|
|
||||||
#define BUTTON_SELECT 0x0020
|
|
||||||
|
|
||||||
#define BUTTON_RC_PLAY (BUTTON_REMOTE | 0x00010000)
|
|
||||||
#define BUTTON_RC_REW (BUTTON_REMOTE | 0x00020000)
|
|
||||||
#define BUTTON_RC_FF (BUTTON_REMOTE | 0x00040000)
|
|
||||||
#define BUTTON_RC_MODE (BUTTON_REMOTE | 0x00080000)
|
|
||||||
#define BUTTON_RC_REC (BUTTON_REMOTE | 0x00100000)
|
|
||||||
#define BUTTON_RC_MENU (BUTTON_REMOTE | 0x00200000)
|
|
||||||
|
|
||||||
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
#elif CONFIG_KEYPAD == GIGABEAT_PAD
|
||||||
|
/* Toshiba Gigabeat specific button codes */
|
||||||
|
|
||||||
/* TODO: These codes should relate to the hardware */
|
#define BUTTON_POWER 0x00000001
|
||||||
|
#define BUTTON_MENU 0x00000002
|
||||||
|
|
||||||
|
#define BUTTON_LEFT 0x00000004
|
||||||
|
#define BUTTON_RIGHT 0x00000008
|
||||||
|
#define BUTTON_UP 0x00000010
|
||||||
|
#define BUTTON_DOWN 0x00000020
|
||||||
|
|
||||||
|
#define BUTTON_VOL_UP 0x00000040
|
||||||
|
#define BUTTON_VOL_DOWN 0x00000080
|
||||||
|
|
||||||
|
#define BUTTON_SELECT 0x00000100
|
||||||
|
#define BUTTON_A 0x00000200
|
||||||
|
|
||||||
|
|
||||||
|
#define BUTTON_MAIN (BUTTON_POWER|BUTTON_MENU|BUTTON_LEFT|BUTTON_RIGHT\
|
||||||
|
|BUTTON_UP|BUTTON_DOWN|BUTTON_VOL_UP|BUTTON_VOL_DOWN\
|
||||||
|
|BUTTON_SELECT|BUTTON_A)
|
||||||
|
|
||||||
|
|
||||||
|
#define BUTTON_REMOTE 0
|
||||||
|
|
||||||
|
#elif 0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Please, add the next Rockbox target's button defines here,
|
||||||
|
* using:
|
||||||
|
* - bits 0 and up: for main unit's buttons
|
||||||
|
* - bits 20 (0x00100000) and downwards for the remote buttons (if applicable)
|
||||||
|
* Don't forget to add BUTTON_MAIN and BUTTON_REMOTE masks
|
||||||
|
* Currently, main buttons on all targets are up to bit 9 (0x00000200),
|
||||||
|
* and remote buttons are down to bit 10 (0x00000400)
|
||||||
|
*/
|
||||||
|
|
||||||
#define BUTTON_POWER 0x0001
|
|
||||||
#define BUTTON_MENU 0x0002
|
|
||||||
#define BUTTON_VOL_UP 0x0008
|
|
||||||
#define BUTTON_VOL_DOWN 0x0010
|
|
||||||
#define BUTTON_A 0x0020
|
|
||||||
#define BUTTON_UP 0x0100
|
|
||||||
#define BUTTON_DOWN 0x0200
|
|
||||||
#define BUTTON_SELECT 0x0400
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* RECORDER/PLAYER/ONDIO/GMINI KEYPAD */
|
#endif /* RECORDER/PLAYER/ONDIO/GMINI KEYPAD */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue