Remove Usb{Keyboard,Mouse}Init()

This commit is contained in:
László Monda
2016-02-26 11:18:07 +01:00
parent 1ffb45795a
commit af46f730a4
4 changed files with 21 additions and 33 deletions

View File

@@ -10,12 +10,16 @@
typedef struct _usb_device_composite_struct {
usb_device_handle deviceHandle;
class_handle_t hidMouseHandle;
class_handle_t hidKeyboardHandle;
class_handle_t mouseHandle;
class_handle_t keyboardHandle;
uint8_t speed;
uint8_t attach;
uint8_t currentConfiguration;
uint8_t currentInterfaceAlternateSetting[USB_COMPOSITE_INTERFACE_COUNT];
} usb_device_composite_struct_t;
// Variables:
extern usb_device_composite_struct_t UsbCompositeDevice;
#endif