Simplified version of DoFileMacro, see below
| 3365 | |
| 3366 | // Simplified version of DoFileMacro, see below |
| 3367 | bool GCodes::DoFileMacro(GCodeBuffer& gb, const char *_ecv_array fileName, bool reportMissing, int codeRunning) noexcept |
| 3368 | { |
| 3369 | VariableSet emptyVars; |
| 3370 | return DoFileMacro(gb, fileName, reportMissing, codeRunning, emptyVars); |
| 3371 | } |
| 3372 | |
| 3373 | bool GCodes::DoFileMacroWithParameters(GCodeBuffer& gb, const char *_ecv_array fileName, bool reportMissing, int codeRunning) THROWS(GCodeException) |
| 3374 | { |
nothing calls this directly
no test coverage detected