21 lines
288 B
C
21 lines
288 B
C
#ifndef USBDATAHANDLER_H
|
|
#define USBDATAHANDLER_H
|
|
|
|
#include "usbd_cdc_if.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void UsbDataHandler_Start(void);
|
|
|
|
USBD_StatusTypeDef UsbDataHandler_RxCallback(uint8_t* Buf, uint32_t Len);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* USBDATAHANDLER_H */ |