* M117: Set LCD Status Message */
| 31 | * M117: Set LCD Status Message |
| 32 | */ |
| 33 | void GcodeSuite::M117() { |
| 34 | |
| 35 | if (parser.has_string()) |
| 36 | ui.set_status_no_expire(parser.string_arg); |
| 37 | else |
| 38 | ui.reset_status(); |
| 39 | |
| 40 | } |
| 41 | |
| 42 | #endif // HAS_STATUS_MESSAGE |
nothing calls this directly
no test coverage detected