Home
last modified time | relevance | path

Searched refs:octet (Results 1 – 20 of 20) sorted by relevance

/Zephyr-latest/scripts/build/
Dgen_cfb_font_header.py37 for octet in range(0, int(width / 8)):
40 col = octet * 8 + bit
50 for octet in range(0, int(height / 8)):
53 row = octet * 8 + bit
/Zephyr-latest/samples/bluetooth/pbp_public_broadcast_source/
DKconfig18 This is the 3-octet broadcast ID advertised if static broadcast IDs are enabled.
/Zephyr-latest/samples/bluetooth/cap_initiator/
DKconfig45 This is the 3-octet broadcast ID advertised if static broadcast IDs are enabled.
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dlll_chan.c259 uint8_t octet; in chan_sel_remap_index() local
262 octet = *chan_map; in chan_sel_remap_index()
270 if (octet & BIT(0)) { in chan_sel_remap_index()
273 octet >>= 1; in chan_sel_remap_index()
/Zephyr-latest/soc/espressif/esp32s2/
DKconfig.mac15 They are generated sequentially by adding 0, and 1 (respectively) to the final octet of
/Zephyr-latest/doc/connectivity/bluetooth/api/
Dhci.txt23 The Supported Commands is a 64 octet bit field. If a bit is set to 1, then this
60 are represented as an 8 octet bit mask. For each feature a single bit is
885 | | 1 octet integer format to be set to |
916 | | and pair formatted as a 1 octet |
1009 | | as a 1 octet signed integer at which |
1070 code of all vendor events shall be 0xFF. The subevent code is the first octet
1375 Channel_Index: Size: 1 octet
1397 RSSI_Antenna_ID: Size: 1 octet
1404 CTE_Type: Size: 1 octet
1420 Slot_Durations: Size: 1 octet
[all …]
/Zephyr-latest/drivers/bluetooth/hci/
Dhci_ambiq.c37 #define BT_FEAT_SET_BIT(feat, octet, bit) (feat[octet] |= BIT(bit)) argument
/Zephyr-latest/samples/bluetooth/bap_broadcast_source/
DKconfig60 This is the 3-octet broadcast ID advertised if static broadcast IDs are enabled.
/Zephyr-latest/soc/espressif/esp32/
DKconfig.mac15 to the final octet of the base MAC address. If the number of universal MAC addresses is two,
/Zephyr-latest/soc/espressif/esp32s3/
DKconfig.mac15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.
/Zephyr-latest/soc/espressif/esp32c2/
DKconfig.mac15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.
/Zephyr-latest/soc/espressif/esp32c3/
DKconfig.mac15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.
/Zephyr-latest/soc/espressif/esp32c6/
DKconfig.mac15 sequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.
/Zephyr-latest/subsys/net/lib/dhcpv4/
DKconfig128 pool have the lowest address octet incremented.
/Zephyr-latest/drivers/modem/
DKconfig.hl7800219 of octet 3 of the Extended DRX parameters information element.
Dsimcom-sim7080.c1982 uint8_t octet = mdm_pdu_read_byte(pdu, index++); in mdm_decode_pdu() local
1985 buf |= (octet << fill_level); in mdm_decode_pdu()
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dmcp.rst339 parameter has one search control item. The length field (first octet)
341 included.) The type field (second octet) is 0x04 (search for a group
/Zephyr-latest/doc/connectivity/bluetooth/shell/host/
Dgap.rst156 part C, 11). In this example, the first octet is the size of the data (the data and one octet for
/Zephyr-latest/include/zephyr/bluetooth/
Dhci_types.h139 #define BT_CMD_TEST(cmd, octet, bit) (cmd[octet] & BIT(bit)) argument
142 #define BT_FEAT_TEST(feat, page, octet, bit) (feat[page][octet] & BIT(bit)) argument
/Zephyr-latest/drivers/wifi/infineon/
Dairoc_wifi.c394 whd_mac_addr.octet[i] = config->filter.mac_address.addr[i]; in airoc_set_config()