We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e653816 commit afa6411Copy full SHA for afa6411
doc/connectivity/usb/device_next/api/usbd.rst
@@ -9,3 +9,5 @@ API reference
9
*************
10
11
.. doxygengroup:: usbd_api
12
+
13
+.. doxygengroup:: usbd_msg_api
include/zephyr/usb/usbd_msg.h
@@ -52,7 +52,9 @@ enum usbd_msg_type {
52
USBD_MSG_MAX_NUMBER,
53
};
54
55
-
+/**
56
+ * @cond INTERNAL_HIDDEN
57
+ */
58
static const char *const usbd_msg_type_list[] = {
59
"VBUS ready",
60
"VBUS removed",
@@ -67,6 +69,7 @@ static const char *const usbd_msg_type_list[] = {
67
69
68
70
BUILD_ASSERT(ARRAY_SIZE(usbd_msg_type_list) == USBD_MSG_MAX_NUMBER,
71
"Number of entries in usbd_msg_type_list is not equal to USBD_MSG_MAX_NUMBER");
72
+/** @endcond */
73
74
/**
75
* @brief USB device message
0 commit comments