Recover a saved state
| 1861 | |
| 1862 | // Recover a saved state |
| 1863 | void GCodes::Pop(GCodeBuffer& gb, bool withinSameFile) noexcept |
| 1864 | { |
| 1865 | if (!gb.PopState(withinSameFile)) |
| 1866 | { |
| 1867 | platform.MessageF(ErrorMessage, "Pop(): stack underflow on %s\n", gb.GetChannel().ToString()); |
| 1868 | } |
| 1869 | reprap.InputsUpdated(); |
| 1870 | } |
| 1871 | |
| 1872 | // Set up the feed rate of a move for the Move class |
| 1873 | // ms.moveType, ms.isCoordinated, ms.linearAxesMentioned and ms.rotationalAxesMentioned must be set up before calling this |
no test coverage detected