1This is a postprocessing utility which converts the phy dumps in csv format
2to pcap files.
3This way the BLE traffic can be analyzed by Wireshark and other tools.
4
5To merge the TX activity from all devices into a single pcap trace do:
6
7$ dump_post_process/csv2pcap -o mytrace.pcap results/<sim_id>/d_2G4*.Tx.csv
8
9Replace paths as necessary.
10
11Alternatively one can merge RX and TX activity from a single device
12to get a trace as seen by that device:
13
14$ dump_post_process/csv2pcap -o mytrace.pcap results/<sim_id>/d_2G4_00.{Rx,Tx}.csv
15
16However be careful not to merge Rx and Tx files from different devices
17or you'll get duplicated records.
18