summaryrefslogtreecommitdiff
path: root/apps/recorder/icons.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-09-18 12:41:12 +0000
committerJens Arnold <amiconn@rockbox.org>2006-09-18 12:41:12 +0000
commitfa9dee01bc70a56cb602f66776a43939c8293f6f (patch)
treecde60a608aa0f16f51c28099f784d85b832dc862 /apps/recorder/icons.h
parent7ef47ed87614d6100b491b2c0eb9f75d1fdc1f01 (diff)
downloadrockbox-fa9dee01bc70a56cb602f66776a43939c8293f6f.tar.gz
rockbox-fa9dee01bc70a56cb602f66776a43939c8293f6f.zip
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
Diffstat (limited to 'apps/recorder/icons.h')
-rw-r--r--apps/recorder/icons.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index c68b281852..b4310aa90a 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -44,12 +44,6 @@ enum icons_5x8 {
44 Icon5x8Last 44 Icon5x8Last
45}; 45};
46 46
47enum icons_7x7 {
48 Icon_Timer,
49 Icon_Blank,
50 Icon7x7Last
51};
52
53enum icons_6x8 { 47enum icons_6x8 {
54 Icon_Audio, 48 Icon_Audio,
55 Icon_Folder, 49 Icon_Folder,
@@ -123,7 +117,6 @@ enum icons_18x8 {
123#endif 117#endif
124 118
125extern const unsigned char bitmap_icons_5x8[Icon5x8Last][5]; 119extern const unsigned char bitmap_icons_5x8[Icon5x8Last][5];
126extern const unsigned char bitmap_icons_7x7[Icon7x7Last][7];
127extern const unsigned char bitmap_icons_6x8[Icon6x8Last][6]; 120extern const unsigned char bitmap_icons_6x8[Icon6x8Last][6];
128extern const unsigned char bitmap_icons_7x8[Icon7x8Last][7]; 121extern const unsigned char bitmap_icons_7x8[Icon7x8Last][7];
129#if CONFIG_CODEC == SWCODEC 122#if CONFIG_CODEC == SWCODEC