* M155: Set temperature auto-report interval. M155 S */
| 31 | * M155: Set temperature auto-report interval. M155 S<seconds> |
| 32 | */ |
| 33 | void GcodeSuite::M155() { |
| 34 | |
| 35 | if (parser.seenval('S')) |
| 36 | thermalManager.auto_reporter.set_interval(parser.value_byte()); |
| 37 | |
| 38 | } |
| 39 | |
| 40 | #endif // AUTO_REPORT_TEMPERATURES |
nothing calls this directly
no test coverage detected