..
This commit is contained in:
parent
3401959e68
commit
75be491f28
1 changed files with 3 additions and 3 deletions
|
@ -411,10 +411,10 @@ void loop(void) {
|
||||||
if( (STATS_PLOTS_EVERY_MS > 0) &&
|
if( (STATS_PLOTS_EVERY_MS > 0) &&
|
||||||
((millis() -stats_last_plotted) > STATS_PLOTS_EVERY_MS))
|
((millis() -stats_last_plotted) > STATS_PLOTS_EVERY_MS))
|
||||||
{
|
{
|
||||||
Serial.println("mean_time_offset-current_time_offset & looptime");
|
Serial.println("mean_time_offset-current_time_offset");
|
||||||
Serial.print((signed long)(mean_time_offset - current_time_offset));
|
Serial.print((signed long)(mean_time_offset - current_time_offset));
|
||||||
Serial.print(" ");
|
//Serial.print(" ");
|
||||||
Serial.println(millis()- startloop_ms);
|
//Serial.println(millis()- startloop_ms);
|
||||||
stats_last_plotted = millis();
|
stats_last_plotted = millis();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue