fw/atusb/atusb.c: make the LED flash 1/4 the previous time in test mode

This is purely for esthetical reasons.
This commit is contained in:
Werner Almesberger
2010-11-11 21:40:03 -03:00
parent 22288a2932
commit 000c087789
+1 -1
View File
@@ -134,7 +134,7 @@ void main(void)
while (1) {
if (in_test_mode) {
i++;
LED = !(i >> 13);
LED = !(i >> 11);
}
usb_poll();
}