Home
last modified time | relevance | path

Searched full:bos (Results 1 – 24 of 24) sorted by relevance

/Zephyr-latest/include/zephyr/usb/
Dbos.h15 * @defgroup usb_bos USB BOS support
22 /** Root BOS Descriptor */
36 /** BOS USB 2.0 extension capability descriptor */
44 /** BOS platform capability descriptor */
Dusbd.h18 #include <zephyr/usb/bos.h>
147 * USBD BOS Device Capability descriptor data
161 * directly part of a structure, such as string or BOS capability descriptors.
168 struct usbd_bos_desc_data bos; member
292 /** slist to manage descriptors like string, BOS */
656 * @brief Define BOS Device Capability descriptor node
658 * The application defines a BOS capability descriptor node for descriptors
667 .bos = { \
691 * @brief Define BOS Device Capability descriptor node with vendor request
693 * This macro defines a BOS descriptor, usually a platform capability, with a
[all …]
Dusb_device.h452 * @brief Helper macro to place the BOS compatibility descriptor
459 * @brief Register BOS capability descriptor
461 * This function should be used by the application to register BOS capability
464 * @param[in] hdr Pointer to BOS capability descriptor
/Zephyr-latest/tests/subsys/usb/bos/
Dtestcase.yaml2 usb.bos:
6 - bos
DCMakeLists.txt5 project(bos) project
/Zephyr-latest/tests/subsys/usb/bos/src/
Dtest_bos.c15 #include <zephyr/usb/bos.h>
21 * Compare old style USB BOS definition with section aligned
29 struct usb_bos_descriptor bos; member
35 .bos = {
103 struct usb_bos_descriptor bos; member
224 memcpy(&webusb_bos_descriptor_2.bos, in ZTEST()
225 &webusb_bos_descriptor.bos, in ZTEST()
/Zephyr-latest/subsys/usb/device/
Dbos.c14 #include <zephyr/usb/bos.h>
58 LOG_DBG("Read BOS descriptor"); in usb_handle_bos()
DCMakeLists.txt15 zephyr_sources_ifdef(CONFIG_USB_DEVICE_BOS bos.c)
DKconfig120 bool "USB Binary Device Object Store (BOS)"
Dusb_device.c75 #include <zephyr/usb/bos.h>
/Zephyr-latest/doc/connectivity/usb/device/api/
Dusb_device_bos.rst3 Binary Device Object Store (BOS) support API
/Zephyr-latest/samples/subsys/usb/webusb-next/src/
Dmain.c18 * There are three BOS descriptors used in the sample, a USB 2.0 EXTENSION from
/Zephyr-latest/subsys/usb/device_next/
Dusbd_desc.c146 if (desc_nd->bos.utype == USBD_DUT_BOS_VREQ) { in usbd_add_descriptor()
147 ret = usbd_device_register_vreq(uds_ctx, desc_nd->bos.vreq_nd); in usbd_add_descriptor()
Dusbd_ch9.c727 struct usb_bos_descriptor bos; in sreq_get_desc_bos() local
748 desc_fill_bos_root(uds_ctx, &bos); in sreq_get_desc_bos()
749 len = MIN(net_buf_tailroom(buf), MIN(setup->wLength, bos.wTotalLength)); in sreq_get_desc_bos()
752 setup->wLength, bos.bLength, bos.wTotalLength, net_buf_tailroom(buf)); in sreq_get_desc_bos()
754 net_buf_add_mem(buf, &bos, MIN(len, bos.bLength)); in sreq_get_desc_bos()
756 len -= MIN(len, sizeof(bos)); in sreq_get_desc_bos()
/Zephyr-latest/samples/subsys/usb/webusb-next/
DREADME.rst10 This sample demonstrates how to use the Binary Device Object Store (BOS),
/Zephyr-latest/samples/subsys/dap/src/
Dmain.c11 #include <zephyr/usb/bos.h>
355 /* Add MS OS 2.0 BOS descriptor to BOS structure */ in main()
/Zephyr-latest/samples/subsys/usb/common/
Dsample_usbd_init.c11 #include <zephyr/usb/bos.h>
/Zephyr-latest/doc/connectivity/usb/device/
Dusb_device.rst383 Binary Device Object Store (BOS) support
386 BOS handling can be enabled with Kconfig option :kconfig:option:`CONFIG_USB_DEVICE_BOS`.
390 BOS descriptor and handled by the stack.
/Zephyr-latest/samples/subsys/usb/webusb/src/
Dmain.c23 #include <zephyr/usb/bos.h>
/Zephyr-latest/doc/releases/
Drelease-notes-1.13.rst466 * :github:`8732` - tests/subsys/usb/bos/ fails randomly
Drelease-notes-2.5.rst1299 * :github:`30330` - tests/subsys/usb/bos/usb.bos fails with native_posix and llvm/clang
Drelease-notes-2.2.rst662 * Windows OS compatibility: Set USB version to 2.1 when using BOS descriptor
Drelease-notes-2.3.rst842 * :github:`25351` - test:mimxrt1050_evk:tests/subsys/usb/bos/: run failure
Drelease-notes-3.7.rst1606 * Added notification support and initial BOS support