diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-09-29 11:19:55 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-09-29 11:19:55 +0000 |
| commit | 8b9c64f19db3abf8872b8dd85ea8ee1343f322e3 (patch) | |
| tree | dc6eec9593b29c60280216896736cdc71fee7876 | |
| parent | 58384f03fb0c46eb642d7a8af9c32c0ecd91ad25 (diff) | |
| download | rockbox-8b9c64f19db3abf8872b8dd85ea8ee1343f322e3.zip rockbox-8b9c64f19db3abf8872b8dd85ea8ee1343f322e3.tar.gz rockbox-8b9c64f19db3abf8872b8dd85ea8ee1343f322e3.tar.bz2 rockbox-8b9c64f19db3abf8872b8dd85ea8ee1343f322e3.tar.xz | |
iriver: Idle CPU in the FM radio screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7570 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/radio.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index 895c787..678da80 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -274,6 +274,8 @@ bool radio_screen(void) str(LANG_FM_BUTTONBAR_RECORD)); #endif + cpu_idle_mode(true); + while(!done) { if(search_dir) @@ -622,6 +624,9 @@ bool radio_screen(void) } #endif + + cpu_idle_mode(false); + return have_recorded; } |