BMWE
BMWE
Hi, Few weeks ago I've made some test: Using USBPcap and I've used to capture RS232 and RS422 data. I've used RS to USB convertor. For RS232, the data was...
``` import multiprocessing as mp import pyshark import pandas as pd import time def get_data(display_filter, df): cap = pyshark.LiveCapture(interface='1', display_filter=display_filter, debug=True) for packet1 in cap.sniff_continuously(packet_count=10): print(display_filter) print(len(packet1)) if __name__ ==...
I've just installed PothosSDR-2021.02.28-vc16-x64 on my win 10 (ver 20H2) 64 bit. Python installed as well ``` >python Python 3.9.4 (tags/v3.9.4:1f2e308, Apr 4 2021, 13:27:16) [MSC v.1928 64 bit (AMD64)]...