| 396 | class AsyncUserCommand : public UserCommand { |
| 397 | public: |
| 398 | AsyncUserCommand(const char* grblName, |
| 399 | const char* name, |
| 400 | Error (*action)(const char*, AuthenticationLevel, Channel&), |
| 401 | bool (*cmdChecker)(), |
| 402 | permissions_t auth = WG) : |
| 403 | UserCommand(grblName, name, action, cmdChecker, auth, false) {} |
| 404 | }; |
| 405 | |
| 406 | // Execute the startup script lines stored in non-volatile storage upon initialization |
nothing calls this directly
no outgoing calls
no test coverage detected