diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-02-19 14:45:34 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-02-19 14:45:34 +0000 |
| commit | 7e1d36f35b7757c7d3482d973370e71a9dfc9504 (patch) | |
| tree | a5f1dc299f7e64f2478e38392e257a7cbc67d66f /apps | |
| parent | 2e429ff76221e2d39a35d8875c6a3add76191519 (diff) | |
| download | rockbox-7e1d36f35b7757c7d3482d973370e71a9dfc9504.zip rockbox-7e1d36f35b7757c7d3482d973370e71a9dfc9504.tar.gz rockbox-7e1d36f35b7757c7d3482d973370e71a9dfc9504.tar.bz2 rockbox-7e1d36f35b7757c7d3482d973370e71a9dfc9504.tar.xz | |
Ondio: disk activity indication in USB mode, too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6020 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/screens.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/screens.c b/apps/screens.c index 10f9dd2..145d2bb 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -111,6 +111,9 @@ void usb_screen(void) usb_display_info(); while(usb_wait_for_disconnect_w_tmo(&button_queue, HZ)) { if(usb_inserted()) { +#ifdef HAVE_MMC /* USB-MMC bridge can report activity */ + led(mmc_usb_active(HZ)); +#endif status_draw(false); } } |