Process a GCode command from the 12864 LCD returning true if the command was accepted
| 5755 | |
| 5756 | // Process a GCode command from the 12864 LCD returning true if the command was accepted |
| 5757 | bool GCodes::ProcessCommandFromLcd(const char *_ecv_array cmd) noexcept |
| 5758 | { |
| 5759 | if (LcdGCode()->IsCompletelyIdle()) |
| 5760 | { |
| 5761 | LcdGCode()->PutAndDecode(cmd); |
| 5762 | return true; |
| 5763 | } |
| 5764 | return false; |
| 5765 | } |
| 5766 | |
| 5767 | int GCodes::GetHeaterNumber(unsigned int itemNumber) const noexcept |
| 5768 | { |
no test coverage detected