Searched refs:ack_fpb (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/include/zephyr/net/ |
D | ieee802154_pkt.h | 75 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()
|
D | ieee802154_radio.h | 1154 } ack_fpb; member
|
/Zephyr-latest/modules/openthread/platform/ |
D | radio.c | 1114 .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/ |
D | radio_test.c | 410 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/ |
D | ieee802154_nrf5.h | 21 bool ack_fpb; /* FPB value in ACK sent for the received frame. */ member
|
D | ieee802154_nrf5.c | 202 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()
|