Set device_class of twitchy_mouse example to 0

This fixes the mouse on Mac.

Closes #327
This commit is contained in:
Jan Niehusmann 2022-05-16 11:50:43 +00:00 committed by 9names
parent 27509090bf
commit db1b5d36b5

View file

@ -113,7 +113,7 @@ fn main() -> ! {
.manufacturer("Fake company")
.product("Twitchy Mousey")
.serial_number("TEST")
.device_class(0xEF) // misc
.device_class(0)
.build();
unsafe {
// Note (safety): This is safe as interrupts haven't been started yet