1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-01 02:46:43 +03:00

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:39:04 -03:00
parent 22288a2932
commit 000c087789

View File

@ -134,7 +134,7 @@ void main(void)
while (1) {
if (in_test_mode) {
i++;
LED = !(i >> 13);
LED = !(i >> 11);
}
usb_poll();
}