We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453a5a8 commit 75aaa14Copy full SHA for 75aaa14
1 file changed
src/Devlpr.cpp
@@ -25,10 +25,7 @@ void Devlpr::tick()
25
microsSinceEMG += microsDelta;
26
// check if enough time has passed to read EMG
27
if (microsSinceEMG >= MICROS_SCHED_EMG) {
28
- unsigned long myStartMicros = micros();
29
readEMG();
30
- unsigned long myDeltaMicros = micros() - myStartMicros;
31
- Serial.println(myDeltaMicros);
32
// and update micros since
33
microsSinceEMG = 0L;
34
// NOTE just a best effort to run on time
0 commit comments