12#ifndef ZEPHYR_INCLUDE_USBD_MSG_H_
13#define ZEPHYR_INCLUDE_USBD_MSG_H_
60static const char *
const usbd_msg_type_list[] = {
66 "New device configuration",
69 "CDC ACM line coding",
70 "CDC ACM control line state",
74 "Number of entries in usbd_msg_type_list is not equal to USBD_MSG_MAX_NUMBER");
100 return usbd_msg_type_list[type];
#define ARRAY_SIZE(array)
Number of elements in the given array.
Definition util.h:127
static const char * usbd_msg_type_string(const enum usbd_msg_type type)
Returns the message type as a constant string.
Definition usbd_msg.h:97
usbd_msg_type
USB device support message types.
Definition usbd_msg.h:32
@ USBD_MSG_RESUME
Device resume message.
Definition usbd_msg.h:38
@ USBD_MSG_UDC_ERROR
Non-correctable UDC error message
Definition usbd_msg.h:46
@ USBD_MSG_VBUS_READY
VBUS ready message (optional)
Definition usbd_msg.h:34
@ USBD_MSG_SUSPEND
Device suspended message.
Definition usbd_msg.h:40
@ USBD_MSG_CDC_ACM_LINE_CODING
CDC ACM Line Coding update.
Definition usbd_msg.h:50
@ USBD_MSG_VBUS_REMOVED
VBUS removed message (optional)
Definition usbd_msg.h:36
@ USBD_MSG_CDC_ACM_CONTROL_LINE_STATE
CDC ACM Line State update.
Definition usbd_msg.h:52
@ USBD_MSG_RESET
Bus reset detected.
Definition usbd_msg.h:42
@ USBD_MSG_STACK_ERROR
Unrecoverable device stack error message
Definition usbd_msg.h:48
@ USBD_MSG_MAX_NUMBER
Maximum number of message types.
Definition usbd_msg.h:54
@ USBD_MSG_CONFIGURATION
Device changed configuration.
Definition usbd_msg.h:44
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
USB device message.
Definition usbd_msg.h:80
enum usbd_msg_type type
Message type.
Definition usbd_msg.h:82
const struct device * dev
Definition usbd_msg.h:86
int status
Definition usbd_msg.h:85