Home
last modified time | relevance | path

Searched refs:header_ie (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Dradio.c1372 struct ieee802154_header_ie header_ie = in otPlatRadioEnableCsl() local
1388 config.ack_ie.header_ie = aCslPeriod > 0 ? &header_ie : NULL; in otPlatRadioEnableCsl()
1436 uint8_t header_ie[OT_IE_HEADER_SIZE + OT_THREAD_IE_SIZE + OT_CST_IE_SIZE] = { 0 }; in otPlatRadioEnableCst() local
1451 header_ie[index++] = OT_THREAD_IE_SIZE + OT_CST_IE_SIZE; in otPlatRadioEnableCst()
1452 header_ie[index++] = 0; in otPlatRadioEnableCst()
1453 sys_put_le24(THREAD_IE_VENDOR_OUI, &header_ie[index]); in otPlatRadioEnableCst()
1455 header_ie[index++] = THREAD_IE_SUBTYPE_CST; in otPlatRadioEnableCst()
1458 sys_put_le16(aCstPeriod, &header_ie[index]); in otPlatRadioEnableCst()
1461 config.ack_ie.header_ie = aCstPeriod > 0 ? (struct ieee802154_header_ie *)header_ie : NULL; in otPlatRadioEnableCst()
1610 config.ack_ie.header_ie = (struct ieee802154_header_ie *)header_ie_buf; in otPlatRadioConfigureEnhAckProbing()
/Zephyr-latest/drivers/ieee802154/
Dieee802154_nrf5.c956 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()
/Zephyr-latest/include/zephyr/net/
Dieee802154_radio.h1243 struct ieee802154_header_ie *header_ie; member