Searched refs:header_ie (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/modules/openthread/platform/ |
D | radio.c | 1388 struct ieee802154_header_ie header_ie = in otPlatRadioEnableCsl() local 1404 config.ack_ie.header_ie = aCslPeriod > 0 ? &header_ie : NULL; in otPlatRadioEnableCsl() 1452 uint8_t header_ie[OT_IE_HEADER_SIZE + OT_THREAD_IE_SIZE + OT_CST_IE_SIZE] = { 0 }; in otPlatRadioEnableCst() local 1467 header_ie[index++] = OT_THREAD_IE_SIZE + OT_CST_IE_SIZE; in otPlatRadioEnableCst() 1468 header_ie[index++] = 0; in otPlatRadioEnableCst() 1469 sys_put_le24(THREAD_IE_VENDOR_OUI, &header_ie[index]); in otPlatRadioEnableCst() 1471 header_ie[index++] = THREAD_IE_SUBTYPE_CST; in otPlatRadioEnableCst() 1474 sys_put_le16(aCstPeriod, &header_ie[index]); in otPlatRadioEnableCst() 1477 config.ack_ie.header_ie = aCstPeriod > 0 ? (struct ieee802154_header_ie *)header_ie : NULL; in otPlatRadioEnableCst() 1626 config.ack_ie.header_ie = (struct ieee802154_header_ie *)header_ie_buf; in otPlatRadioConfigureEnhAckProbing()
|
/Zephyr-latest/drivers/ieee802154/ |
D | ieee802154_nrf5.c | 956 if (config->ack_ie.header_ie == NULL || config->ack_ie.header_ie->length == 0) { in nrf5_configure() 963 element_id = ieee802154_header_ie_get_element_id(config->ack_ie.header_ie); in nrf5_configure() 970 memcmp(config->ack_ie.header_ie->content.vendor_specific.vendor_oui, in nrf5_configure() 983 short_addr_le, false, config->ack_ie.header_ie, in nrf5_configure() 984 config->ack_ie.header_ie->length + in nrf5_configure() 988 nrf_802154_ack_data_set(ext_addr_le, true, config->ack_ie.header_ie, in nrf5_configure() 989 config->ack_ie.header_ie->length + in nrf5_configure()
|
D | ieee802154_mcxw.c | 652 uint8_t *header_ie_buf = (uint8_t *)(config->ack_ie.header_ie); in mcxw_configure_enh_ack_probing() 663 memcpy(msg.msgData.AckIeData.data, config->ack_ie.header_ie, in mcxw_configure_enh_ack_probing() 664 config->ack_ie.header_ie->length); in mcxw_configure_enh_ack_probing()
|
/Zephyr-latest/include/zephyr/net/ |
D | ieee802154_radio.h | 1243 struct ieee802154_header_ie *header_ie; member
|