We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f42f970 commit 690c0d8Copy full SHA for 690c0d8
1 file changed
OpenBCI_GUI/W_Networking.pde
@@ -2070,7 +2070,8 @@ class Stream extends Thread {
2070
newDataFromBuffer[i] = w_networking.markerDataBufferToSend[i];
2071
}
2072
2073
-
+ /*
2074
+ // Check sampling rate for every networking protocol for this data type
2075
if (sampleRateClock == 0) sampleRateClock = millis();
2076
samplesSent = samplesSent + nPointsPerUpdate;
2077
if (millis() > sampleRateClock + sampleRateClockInterval) {
@@ -2084,6 +2085,7 @@ class Stream extends Thread {
2084
2085
sampleRateClock = 0;
2086
samplesSent = 0;
2087
2088
+ */
2089
2090
if (this.protocol.equals("UDP")) {
2091
0 commit comments