You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
/*
|
|
* Copyright (c) 2022, sakumisu
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef USBH_CDC_ACM_H
|
|
#define USBH_CDC_ACM_H
|
|
|
|
#include "usb_cdc.h"
|
|
|
|
struct usbh_cdc_acm {
|
|
struct usbh_hubport *hport;
|
|
struct usb_endpoint_descriptor *bulkin; /* Bulk IN endpoint */
|
|
struct usb_endpoint_descriptor *bulkout; /* Bulk OUT endpoint */
|
|
#ifdef CONFIG_USBHOST_CDC_ACM_NOTIFY
|
|
struct usb_endpoint_descriptor *intin; /* INTR IN endpoint (optional) */
|
|
#endif
|
|
struct usbh_urb bulkout_urb;
|
|
struct usbh_urb bulkin_urb;
|
|
#ifdef CONFIG_USBHOST_CDC_ACM_NOTIFY
|
|
struct usbh_urb intin_urb;
|
|
#endif
|
|
|
|
struct cdc_line_coding linecoding;
|
|
|
|
uint8_t intf;
|
|
uint8_t minor;
|
|
|
|
void *user_data;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int usbh_cdc_acm_set_line_coding(struct usbh_cdc_acm *cdc_acm_class, struct cdc_line_coding *line_coding);
|
|
int usbh_cdc_acm_get_line_coding(struct usbh_cdc_acm *cdc_acm_class, struct cdc_line_coding *line_coding);
|
|
int usbh_cdc_acm_set_line_state(struct usbh_cdc_acm *cdc_acm_class, bool dtr, bool rts);
|
|
|
|
int usbh_cdc_acm_bulk_in_transfer(struct usbh_cdc_acm *cdc_acm_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout);
|
|
int usbh_cdc_acm_bulk_out_transfer(struct usbh_cdc_acm *cdc_acm_class, uint8_t *buffer, uint32_t buflen, uint32_t timeout);
|
|
|
|
void usbh_cdc_acm_run(struct usbh_cdc_acm *cdc_acm_class);
|
|
void usbh_cdc_acm_stop(struct usbh_cdc_acm *cdc_acm_class);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* USBH_CDC_ACM_H */
|
|
|