Hello, I´m building an application to analyze the spectrum and run some machine-learning over the retreived data. To do so, I´m using the RSA_API implementation over Python to communicate with the RSA 306B. The problem I am encountering is the amount of time needed to get the data from the RSA306b. I´ve timed every part of the code and I have concluded that the "bottleneck" is the; IQBLK_GetIQDataDeinterleaved function. It currently takes around 3 seconds to send a vector of 56000000 (i.e. 56e6) IQ samples from the RSA to the python code. Is there a faster way to send this information or is it as fast as it gets; I´ve also tried the; IQBLK_GetIQData function, but I get similar times. Thanks in advance for the help