Get the time since starting the current layer in seconds
| 500 | |
| 501 | // Get the time since starting the current layer in seconds |
| 502 | float PrintMonitor::GetCurrentLayerTime() const noexcept |
| 503 | { |
| 504 | return (float)(millis64() - lastLayerChangeTime + lastLayerChangeNonPrintingTime - (GetWarmUpDuration() + GetPauseDuration())) * MillisToSeconds; |
| 505 | } |
| 506 | |
| 507 | // End |
no outgoing calls
no test coverage detected