Home
last modified time | relevance | path

Searched refs:ack_fpb (Results 1 – 6 of 6) sorted by relevance

/Zephyr-latest/include/zephyr/net/
Dieee802154_pkt.h75 uint8_t ack_fpb : 1; /* Frame Pending Bit was set in the ACK */ member
206 return net_pkt_cb_ieee802154(pkt)->ack_fpb; in net_pkt_ieee802154_ack_fpb()
211 net_pkt_cb_ieee802154(pkt)->ack_fpb = fpb; in net_pkt_set_ieee802154_ack_fpb()
Dieee802154_radio.h1154 } ack_fpb; member
/Zephyr-latest/modules/openthread/platform/
Dradio.c1114 .ack_fpb.enabled = true, in otPlatRadioAddSrcMatchShortEntry()
1115 .ack_fpb.addr = short_address, in otPlatRadioAddSrcMatchShortEntry()
1116 .ack_fpb.extended = false in otPlatRadioAddSrcMatchShortEntry()
1135 .ack_fpb.enabled = true, in otPlatRadioAddSrcMatchExtEntry()
1136 .ack_fpb.addr = (uint8_t *)aExtAddress->m8, in otPlatRadioAddSrcMatchExtEntry()
1137 .ack_fpb.extended = true in otPlatRadioAddSrcMatchExtEntry()
1155 .ack_fpb.enabled = false, in otPlatRadioClearSrcMatchShortEntry()
1156 .ack_fpb.addr = short_address, in otPlatRadioClearSrcMatchShortEntry()
1157 .ack_fpb.extended = false in otPlatRadioClearSrcMatchShortEntry()
1176 .ack_fpb.enabled = false, in otPlatRadioClearSrcMatchExtEntry()
[all …]
/Zephyr-latest/tests/subsys/openthread/
Dradio_test.c410 zassert_equal(custom_configure_match_mock_expected_config.ack_fpb.extended, in custom_configure_match_mock()
411 config->ack_fpb.extended, NULL); in custom_configure_match_mock()
412 zassert_equal(custom_configure_match_mock_expected_config.ack_fpb.enabled, in custom_configure_match_mock()
413 config->ack_fpb.enabled, NULL); in custom_configure_match_mock()
414 if (custom_configure_match_mock_expected_config.ack_fpb.addr == NULL) { in custom_configure_match_mock()
415 zassert_is_null(config->ack_fpb.addr, NULL); in custom_configure_match_mock()
417 zassert_mem_equal(custom_configure_match_mock_expected_config.ack_fpb.addr, in custom_configure_match_mock()
418 config->ack_fpb.addr, in custom_configure_match_mock()
419 (config->ack_fpb.extended) ? sizeof(otExtAddress) : 2, in custom_configure_match_mock()
441 custom_configure_match_mock_expected_config.ack_fpb.extended = extended; in set_expected_match_values()
[all …]
/Zephyr-latest/drivers/ieee802154/
Dieee802154_nrf5.h21 bool ack_fpb; /* FPB value in ACK sent for the received frame. */ member
Dieee802154_nrf5.c202 net_pkt_set_ieee802154_ack_fpb(pkt, rx_frame->ack_fpb); in nrf5_rx_thread()
887 if (config->ack_fpb.enabled) { in nrf5_configure()
889 config->ack_fpb.addr, in nrf5_configure()
890 config->ack_fpb.extended)) { in nrf5_configure()
897 if (config->ack_fpb.addr != NULL) { in nrf5_configure()
899 config->ack_fpb.addr, in nrf5_configure()
900 config->ack_fpb.extended)) { in nrf5_configure()
905 config->ack_fpb.extended); in nrf5_configure()
1121 nrf5_data.rx_frames[i].ack_fpb = nrf5_data.last_frame_ack_fpb; in nrf_802154_received_timestamp_raw()