Home
last modified time | relevance | path

Searched refs:phy_rsp (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/tools/rootcanal/test/LL/CON_/PER/
DBV_42_C.py198 phy_rsp = await self.expect_ll(
204 self.assertTrue(phy_rsp.tx_phys != 0)
205 self.assertTrue(phy_rsp.rx_phys != 0)
208 next_phy_c_to_p = req_tx_phys & phy_rsp.rx_phys
209 next_phy_p_to_c = req_rx_phys & phy_rsp.tx_phys
/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dlink_layer_controller.cc556 auto phy_rsp = model::packets::LlPhyRspView::Create(incoming); in IncomingLlPhyRsp() local
557 ASSERT(phy_rsp.IsValid()); in IncomingLlPhyRsp()
571 uint8_t tx_phys = phy_rsp.GetRxPhys() & requested_tx_phys_; in IncomingLlPhyRsp()
572 uint8_t rx_phys = phy_rsp.GetTxPhys() & requested_rx_phys_; in IncomingLlPhyRsp()