small fixes

This commit is contained in:
Conor Patrick
2019-11-20 11:14:41 -05:00
parent d80369f19e
commit a70e5cb112
3 changed files with 4 additions and 7 deletions

View File

@@ -175,8 +175,7 @@ int usbhid_recv(uint8_t * msg)
return l;
}
// Send 64 byte USB HID message
static void _usbhid_send(uint8_t * msg)
void usbhid_send(uint8_t * msg)
{
if (use_udp)
{
@@ -191,10 +190,6 @@ static void _usbhid_send(uint8_t * msg)
}
}
}
void usbhid_send(uint8_t * msg)
{
_usbhid_send(msg);
}