acm.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2018 Mesotic SAS
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
40 #include <stdint.h>
41 #include "usb/cdc.h"
42 #include "usb/usbus.h"
43 #include "tsrb.h"
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
58 #ifdef CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE_EXP
59 #define CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE (1<<CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE_EXP)
60 #endif
61 #ifndef CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE
62 #define CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE (128)
63 #endif
64 
68 #if IS_ACTIVE(CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE_8)
69 #define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE (8)
70 #elif IS_ACTIVE(CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE_16)
71 #define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE (16)
72 #elif IS_ACTIVE(CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE_32)
73 #define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE (32)
74 #elif IS_ACTIVE(CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE_64)
75 #define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE (64)
76 #endif
77 
78 #ifndef CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE
79 #define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE (64)
80 #endif
86 #define USBUS_CDC_ACM_INT_EP_SIZE (8)
87 
91 #define USBUS_CDC_ACM_EP_IN_REQUIRED_NUMOF 2
92 
96 #define USBUS_CDC_ACM_EP_OUT_REQUIRED_NUMOF 1
97 
101 typedef enum {
106 
112 
117 
127 typedef void (*usbus_cdcacm_cb_t)(usbus_cdcacm_device_t *cdcacm,
128  uint8_t *data, size_t len);
129 
145  uint32_t baud, uint8_t bits,
146  uint8_t parity, uint8_t stop);
147 
160  size_t occupied;
169 
174 };
175 
188  usbus_cdcacm_coding_cb_t coding_cb,
189  uint8_t *buf, size_t len);
190 
201  const uint8_t *buf, size_t len);
202 
209 
219  usbus_cdcacm_coding_cb_t coding_cb);
220 
221 #ifdef __cplusplus
222 }
223 #endif
224 
Definition for USB CDC interfaces.
#define usbdev_ep_buf_t
Instantiation type for usbdev endpoint buffers.
Definition: usbdev.h:126
#define CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE
USB CDC ACM bulk endpoint size.
Definition: acm.h:79
#define CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE
Buffer size for STDIN and STDOUT data to and from USB when using the USBUS_CDC_ACM_STDIO module.
Definition: acm.h:62
usbus_cdcacm_line_state_t
CDC ACM line state as reported by the host computer.
Definition: acm.h:101
void(* usbus_cdcacm_cb_t)(usbus_cdcacm_device_t *cdcacm, uint8_t *data, size_t len)
CDC ACM data callback.
Definition: acm.h:127
void usbus_cdc_acm_init(usbus_t *usbus, usbus_cdcacm_device_t *cdcacm, usbus_cdcacm_cb_t cb, usbus_cdcacm_coding_cb_t coding_cb, uint8_t *buf, size_t len)
Initialize an USBUS CDC ACM interface.
void usbus_cdc_acm_set_coding_cb(usbus_cdcacm_device_t *cdcacm, usbus_cdcacm_coding_cb_t coding_cb)
Set the callback for control settings.
size_t usbus_cdc_acm_submit(usbus_cdcacm_device_t *cdcacm, const uint8_t *buf, size_t len)
Submit bytes to the CDC ACM handler.
void usbus_cdc_acm_flush(usbus_cdcacm_device_t *cdcacm)
Flush the buffer to the USB host.
int(* usbus_cdcacm_coding_cb_t)(usbus_cdcacm_device_t *cdcacm, uint32_t baud, uint8_t bits, uint8_t parity, uint8_t stop)
CDC ACM line coding callback.
Definition: acm.h:144
@ USBUS_CDC_ACM_LINE_STATE_DISCONNECTED
No DTE connected.
Definition: acm.h:105
@ USBUS_CDC_ACM_LINE_STATE_DTE
DTE (e.g.
Definition: acm.h:110
event structure
Definition: event.h:142
thread-safe ringbuffer struct
Definition: tsrb.h:35
USB CDC ACM line coding setup content.
Definition: cdc.h:278
USBUS CDC ACM context struct.
Definition: acm.h:151
usbus_cdcacm_coding_cb_t coding_cb
Callback for ACM coding changes.
Definition: acm.h:157
tsrb_t tsrb
TSRB for data to the host
Definition: acm.h:158
usbus_t * usbus
USBUS reference
Definition: acm.h:159
event_t flush
device2host forced flush event
Definition: acm.h:162
usbus_cdcacm_line_state_t state
Current line state
Definition: acm.h:161
usbus_handler_t handler_ctrl
control handler
Definition: acm.h:152
usb_req_cdcacm_coding_t coding
Current coding configuration
Definition: acm.h:163
usbus_interface_t iface_ctrl
CDC control interface
Definition: acm.h:153
size_t occupied
Number of bytes for the host
Definition: acm.h:160
usbus_interface_t iface_data
CDC data interface
Definition: acm.h:154
usbdev_ep_buf_t out_buf[CONFIG_USBUS_CDC_ACM_BULK_EP_SIZE]
Host to device data buffer.
Definition: acm.h:168
usbus_cdcacm_cb_t cb
Callback for data handlers
Definition: acm.h:156
usbus_descr_gen_t cdcacm_descr
CDC descriptor generator
Definition: acm.h:155
usbdev_ep_buf_t in_buf[CONFIG_USBUS_CDC_ACM_STDIO_BUF_SIZE]
Device to host data buffer.
Definition: acm.h:173
USBUS descriptor generator.
Definition: usbus.h:294
USBUS handler struct.
Definition: usbus.h:432
USBUS interface.
Definition: usbus.h:349
USBUS context struct.
Definition: usbus.h:444
Thread-safe ringbuffer interface definition.
USBUS basic interface.