bluefnorf: Handle interrupt-based USB comm properly

Use the USB LP ISR instead of polling using a timer.
This commit is contained in:
jaseg 2018-07-14 14:06:44 +02:00
parent 85c3b2d60f
commit 1d92e483b6

View file

@ -37,3 +37,7 @@ int main(void)
i++;
}
}
void hard_fault_handler(void) {
while (23);
}