Hello, I'm trying to receive data from two distinct BladeRF boards connected to the same PC using a python application.
When I launch my application on the first interface everything works fine, but as soon as the second instance on the other interface starts receiving (sync_rx), I receive the following error:
In your Python application, try reducing the buffer size used for receiving data from each BladeRF. This will decrease the memory needed for each transfer. Look for functions related to buffer allocation in the BladeRF library you're using.
Ensure your code is efficient and avoids unnecessary memory allocations. Consider using memory-efficient data structures and avoiding copying data excessively.