Searched refs:byte1 (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | avrcp_internal.h | 63 uint8_t byte1; /** [7:3]: Subunit_type, [2:0]: Subunit_ID */ member 74 #define BT_AVRCP_HDR_GET_SUBUNIT_ID(hdr) FIELD_GET(GENMASK(2, 0), ((hdr)->byte1)) 80 #define BT_AVRCP_HDR_GET_SUBUNIT_TYPE(hdr) FIELD_GET(GENMASK(7, 3), ((hdr)->byte1)) 91 (hdr)->byte1 = (((hdr)->byte1) & ~GENMASK(2, 0)) | FIELD_PREP(GENMASK(2, 0), (subunit_id)) 98 (hdr)->byte1 = (((hdr)->byte1) & ~GENMASK(7, 3)) | FIELD_PREP(GENMASK(7, 3), (subunit_type))
|
/Zephyr-latest/samples/drivers/smbus/ |
D | README.rst | 62 Usage: block_write <device> <addr> <cmd> [<byte1>, ...]
|