summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/drivers/button.c2
-rwxr-xr-xfirmware/target/coldfire/iaudio/x5/button-target.h5
2 files changed, 5 insertions, 2 deletions
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index 5e6f6b4827..daad4f17de 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -489,6 +489,8 @@ static void button_tick(void)
489 if ((btn == POWEROFF_BUTTON 489 if ((btn == POWEROFF_BUTTON
490#ifdef BUTTON_RC_STOP 490#ifdef BUTTON_RC_STOP
491 || btn == BUTTON_RC_STOP 491 || btn == BUTTON_RC_STOP
492#elif defined(RC_POWEROFF_BUTTON)
493 || btn == RC_POWEROFF_BUTTON
492#endif 494#endif
493 ) && 495 ) &&
494#if defined(CONFIG_CHARGING) && !defined(HAVE_POWEROFF_WHILE_CHARGING) 496#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 998522fe15..ab6e770ed3 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);
64 |BUTTON_RC_REW|BUTTON_RC_FF\ 64 |BUTTON_RC_REW|BUTTON_RC_FF\
65 |BUTTON_RC_REC|BUTTON_RC_MENU|BUTTON_RC_MODE) 65 |BUTTON_RC_REC|BUTTON_RC_MENU|BUTTON_RC_MODE)
66 66
67#define POWEROFF_BUTTON BUTTON_POWER 67#define POWEROFF_BUTTON BUTTON_POWER
68#define POWEROFF_COUNT 10 68#define RC_POWEROFF_BUTTON BUTTON_RC_PLAY
69#define POWEROFF_COUNT 30
69 70
70#endif /* _BUTTON_TARGET_H_ */ 71#endif /* _BUTTON_TARGET_H_ */