diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-09-12 15:56:31 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-09-12 15:56:31 +0000 |
| commit | 44e8233134f29f0ba88d43937409058da292ee1d (patch) | |
| tree | fa402e3aaffedf2b53e6936345834ceb33992b5d | |
| parent | 678d662f74676c3d6b28bef7f0717fc356672d52 (diff) | |
| download | rockbox-44e8233134f29f0ba88d43937409058da292ee1d.zip rockbox-44e8233134f29f0ba88d43937409058da292ee1d.tar.gz rockbox-44e8233134f29f0ba88d43937409058da292ee1d.tar.bz2 rockbox-44e8233134f29f0ba88d43937409058da292ee1d.tar.xz | |
Added the power off to x5 remote play button. 3s delay seems confortable and well out of the way of the long press for playback stop.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10934 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/button.c | 2 | ||||
| -rwxr-xr-x | firmware/target/coldfire/iaudio/x5/button-target.h | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c index 5e6f6b4..daad4f1 100644 --- a/firmware/drivers/button.c +++ b/firmware/drivers/button.c @@ -489,6 +489,8 @@ static void button_tick(void) if ((btn == POWEROFF_BUTTON #ifdef BUTTON_RC_STOP || btn == BUTTON_RC_STOP +#elif defined(RC_POWEROFF_BUTTON) + || btn == RC_POWEROFF_BUTTON #endif ) && #if defined(CONFIG_CHARGING) && !defined(HAVE_POWEROFF_WHILE_CHARGING) diff --git a/firmware/target/coldfire/iaudio/x5/button-target.h b/firmware/target/coldfire/iaudio/x5/button-target.h index 998522f..ab6e770 100755 --- a/firmware/target/coldfire/iaudio/x5/button-target.h +++ b/firmware/target/coldfire/iaudio/x5/button-target.h @@ -64,7 +64,8 @@ int button_read_device(void); |BUTTON_RC_REW|BUTTON_RC_FF\ |BUTTON_RC_REC|BUTTON_RC_MENU|BUTTON_RC_MODE) -#define POWEROFF_BUTTON BUTTON_POWER -#define POWEROFF_COUNT 10 +#define POWEROFF_BUTTON BUTTON_POWER +#define RC_POWEROFF_BUTTON BUTTON_RC_PLAY +#define POWEROFF_COUNT 30 #endif /* _BUTTON_TARGET_H_ */ |