brambley9
Not exposed in python, but should work in cpp.
/**
* Sets the maximum transmission rate for the XLink connection on device side,
* using a simple token bucket algorithm. Useful for bandwidth throttling
*
* @param maxRateBytesPerSecond Rate limit in Bytes/second
* @param burstSize Size in Bytes for how much to attempt to send once, 0 = auto
* @param waitUs Time in microseconds to wait for replenishing tokens, 0 = auto
*/
void setXLinkRateLimit(int maxRateBytesPerSecond, int burstSize = 0, int waitUs = 0);
Thanks,
Jaka