|
@@ -447,8 +447,9 @@ static void reinitSCSI()
|
|
|
// Error if there are 0 image files
|
|
// Error if there are 0 image files
|
|
|
if (scsiDiskCheckAnyImagesConfigured())
|
|
if (scsiDiskCheckAnyImagesConfigured())
|
|
|
{
|
|
{
|
|
|
- // Ok, there is an image
|
|
|
|
|
- blinkStatus(BLINK_STATUS_OK);
|
|
|
|
|
|
|
+ // Ok, there is an image, turn LED on for the time it takes to perform init
|
|
|
|
|
+ LED_ON();
|
|
|
|
|
+ delay(100);
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
@@ -524,6 +525,9 @@ extern "C" void zuluscsi_setup(void)
|
|
|
azplatform_disable_led();
|
|
azplatform_disable_led();
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ // Counterpart for the LED_ON in reinitSCSI().
|
|
|
|
|
+ LED_OFF();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
extern "C" void zuluscsi_main_loop(void)
|
|
extern "C" void zuluscsi_main_loop(void)
|