You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
opentrackpadcontroller/lib/usb_device/src/usb_device.cpp

19 lines
228 B
C++

#include "usb_device.h"
#include "usbd_hid_custom_if.h"
USB_Device::USB_Device(void)
{
}
void USB_Device::begin(void)
{
HID_Custom_Init();
}
void USB_Device::end(void)
{
HID_Custom_DeInit();
}