Fix no-USB build of the stock firwmare

This commit is contained in:
Ondrej Jirman 2023-02-17 14:01:33 +01:00
parent 4b3d885b61
commit 61e90842de
1 changed files with 6 additions and 0 deletions

View File

@ -1897,6 +1897,12 @@ static void usb_init(void)
P0_EIE2 |= BIT(2);
}
#else
void usb_interrupt(void) __interrupt(IRQ_USB) __using(1)
{
}
#endif
static void usb_disable(void)