Searched refs:packet_data (Results 1 – 1 of 1) sorted by relevance
| /edtt-latest/src/components/ |
| D | bsim_device.py | 154 def __device_tx(self, ch_idx, phy, aa, transmit_time, packet_data): argument 157 …airtime = math.ceil(((2 if phy == '2M' else 1) + 4 + len(packet_data))*8/(2 if phy == '2M' else 1)) 162 …t_time, transmit_time + airtime, TIME_NEVER, TIME_NEVER, aa, modulation, freq, 0, len(packet_data)) 164 os.write(self.ff_dtp, packet_data) 179 def tx(self, ch_idx, phy, aa, transmit_time, packet_data): argument 182 … self.command_queue.put_nowait((P2G4_MSG_TX, [ch_idx, phy, aa, transmit_time, packet_data]))
|