mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Finally submit GUI boost (FS#8668). With this change the CPU is boosted (with a 1 second timeout) on scrollwheel activity in the list, main menu, tree and std context. For now GUI boost is only enabled on scrollwheel targets. The code can easily be enhanced to work with other targets as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30967 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
312b2a2de7
commit
f1ee740f2b
16 changed files with 83 additions and 0 deletions
|
|
@ -78,6 +78,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_1G2G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* define this if the unit uses a scrollwheel for navigation */
|
||||
#define HAVE_SCROLLWHEEL
|
||||
/* define to activate advanced wheel acceleration code */
|
||||
|
|
|
|||
|
|
@ -79,6 +79,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_3G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* define this if the unit uses a scrollwheel for navigation */
|
||||
#define HAVE_SCROLLWHEEL
|
||||
/* define to activate advanced wheel acceleration code */
|
||||
|
|
|
|||
|
|
@ -79,6 +79,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -100,6 +100,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
//#define AB_REPEAT_ENABLE
|
||||
//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
|
||||
|
||||
|
|
|
|||
|
|
@ -66,6 +66,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
#define HAVE_SCROLLWHEEL
|
||||
/* define to activate advanced wheel acceleration code */
|
||||
#define HAVE_WHEEL_ACCELERATION
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -69,6 +69,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -104,6 +104,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
#define AB_REPEAT_ENABLE
|
||||
#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
|
||||
|
||||
|
|
|
|||
|
|
@ -65,6 +65,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD IPOD_4G_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD SANSA_E200_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -76,6 +76,9 @@
|
|||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this if you do software codec */
|
||||
#define CONFIG_CODEC SWCODEC
|
||||
|
||||
|
|
|
|||
|
|
@ -77,6 +77,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD SANSA_FUZE_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -88,6 +88,9 @@
|
|||
|
||||
#define CONFIG_KEYPAD SANSA_FUZE_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@
|
|||
/* The only difference is that the power/hold is on the left instead of right on Fuze */
|
||||
#define CONFIG_KEYPAD SANSA_FUZE_PAD
|
||||
|
||||
/* Define this to have CPU boosted while scrolling in the UI */
|
||||
#define HAVE_GUI_BOOST
|
||||
|
||||
/* Define this to enable morse code input */
|
||||
#define HAVE_MORSE_INPUT
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue