mirror of
https://github.com/ravinrabbid/DonCon2040.git
synced 2025-02-12 08:53:02 +01:00
21 lines
360 B
C
21 lines
360 B
C
|
#ifndef _USB_HID_DRIVER_H_
|
||
|
#define _USB_HID_DRIVER_H_
|
||
|
|
||
|
#include "usb/hid_ps3_driver.h"
|
||
|
#include "usb/hid_ps4_driver.h"
|
||
|
#include "usb/hid_switch_driver.h"
|
||
|
#include "usb/usb_driver.h"
|
||
|
|
||
|
#include "device/usbd_pvt.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern const usbd_class_driver_t hid_app_driver;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // _USB_HID_DRIVER_H_
|