mirror of
https://github.com/modelec/odo_STM32.git
synced 2026-01-18 16:27:25 +01:00
25 lines
417 B
C
25 lines
417 B
C
/* usbd_cdc_if.h */
|
|
|
|
#ifndef __USBD_CDC_IF_H__
|
|
#define __USBD_CDC_IF_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "usbd_cdc.h"
|
|
|
|
#define APP_RX_DATA_SIZE 2048
|
|
#define APP_TX_DATA_SIZE 2048
|
|
|
|
extern USBD_CDC_ItfTypeDef USBD_Interface_fops_FS;
|
|
|
|
uint8_t CDC_Transmit_FS(uint8_t* Buf, uint16_t Len);
|
|
void USB_CDC_ProcessCommand(const char* command);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __USBD_CDC_IF_H__ */
|