Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
usbd_msg.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_USBD_MSG_H_
13#define ZEPHYR_INCLUDE_USBD_MSG_H_
14
15#include <stdint.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
56
60static const char *const usbd_msg_type_list[] = {
61 "VBUS ready",
62 "VBUS removed",
63 "Device resumed",
64 "Device suspended",
65 "Bus reset",
66 "New device configuration",
67 "Controller error",
68 "Stack error",
69 "CDC ACM line coding",
70 "CDC ACM control line state",
71};
72
73BUILD_ASSERT(ARRAY_SIZE(usbd_msg_type_list) == USBD_MSG_MAX_NUMBER,
74 "Number of entries in usbd_msg_type_list is not equal to USBD_MSG_MAX_NUMBER");
80struct usbd_msg {
84 union {
85 int status;
86 const struct device *dev;
87 };
88};
89
97static inline const char *usbd_msg_type_string(const enum usbd_msg_type type)
98{
99 if (type >= 0 && type < USBD_MSG_MAX_NUMBER) {
100 return usbd_msg_type_list[type];
101 }
102
103 return "?";
104}
105
110#ifdef __cplusplus
111}
112#endif
113
114#endif /* ZEPHYR_INCLUDE_USBD_MSG_H_ */
#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