From b1e16d21615397802930d66905d60fc6fee25b3d Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 6 Jul 2008 12:14:13 +0000 Subject: Repair charging screen on archos. usb_detect() doesn't return a boolean since 2007-09-04. Fixed same problem in the m:robe 500 bootloader and in bootbox. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17955 a1c6a512-1295-4272-9138-f99709370657 --- flash/bootbox/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'flash') diff --git a/flash/bootbox/main.c b/flash/bootbox/main.c index 037ffb0..96020c3 100644 --- a/flash/bootbox/main.c +++ b/flash/bootbox/main.c @@ -115,7 +115,7 @@ void charging_screen(void) break; /* start */ else { - if (usb_detect()) + if (usb_detect() == USB_INSERTED) break; else if (!charger_inserted()) power_off(); /* charger removed: power down */ @@ -192,7 +192,7 @@ void main(void) //disk_init(); usb_start_monitoring(); - while (usb_detect()) + while (usb_detect() == USB_INSERTED) { /* enter USB mode early, before trying to mount */ if (button_get_w_tmo(HZ/10) == SYS_USB_CONNECTED) { -- cgit v1.1