mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-16 06:05:00 -05:00
4ecc3f571e
Works, but very light testing so far
18 lines
448 B
C
18 lines
448 B
C
#ifndef _hiddata_h__
|
|
#define _hiddata_h__
|
|
|
|
#include <stdint.h>
|
|
#include "usb.h"
|
|
|
|
struct hiddata_ops {
|
|
void (*suspendPolling)(uint8_t suspend);
|
|
void (*forceVibration)(uint8_t channel, uint8_t force);
|
|
};
|
|
|
|
uint16_t hiddata_get_report(void *ctx, struct usb_request *rq, const uint8_t **dat);
|
|
uint8_t hiddata_set_report(void *ctx, const struct usb_request *rq, const uint8_t *dat, uint16_t len);
|
|
|
|
void hiddata_doTask(struct hiddata_ops *ops);
|
|
|
|
#endif
|