mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Reverted the recording timer commit, as it has at least 2 major problems. (1) It uses the user timer, which interferes e.g. with backlight fading on H1x0 (and potentially other targets). Using the user timer here is a waste, as the required timing lies in the range of seconds to days. A tick task would be sufficient. (2) It draws to the LCD from within an ISR. This must not be done unless there's a mechanism to ensure it doesn't interfere with the main thread's drawing, otherwise garbage might be displayed and LCD updates might stop working.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10991 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7ef47ed876
commit
fa9dee01bc
8 changed files with 10 additions and 470 deletions
|
|
@ -44,12 +44,6 @@ enum icons_5x8 {
|
|||
Icon5x8Last
|
||||
};
|
||||
|
||||
enum icons_7x7 {
|
||||
Icon_Timer,
|
||||
Icon_Blank,
|
||||
Icon7x7Last
|
||||
};
|
||||
|
||||
enum icons_6x8 {
|
||||
Icon_Audio,
|
||||
Icon_Folder,
|
||||
|
|
@ -123,7 +117,6 @@ enum icons_18x8 {
|
|||
#endif
|
||||
|
||||
extern const unsigned char bitmap_icons_5x8[Icon5x8Last][5];
|
||||
extern const unsigned char bitmap_icons_7x7[Icon7x7Last][7];
|
||||
extern const unsigned char bitmap_icons_6x8[Icon6x8Last][6];
|
||||
extern const unsigned char bitmap_icons_7x8[Icon7x8Last][7];
|
||||
#if CONFIG_CODEC == SWCODEC
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue