Add M997 support and simple implementation for LPC176x (#13281)

This commit is contained in:
Chris Pepper
2019-03-02 02:11:50 +00:00
committed by Scott Lahteine
parent fa236e9718
commit b0553d2d97
5 changed files with 50 additions and 0 deletions

View File

@ -723,6 +723,10 @@ void GcodeSuite::process_parsed_command(
case 422: M422(); break; // M422: Set Z Stepper automatic alignment position using probe
#endif
#if ENABLED(PLATFORM_M997_SUPPORT)
case 997: M997(); break; // M997: Perform in-application firmware update
#endif
case 999: M999(); break; // M999: Restart after being Stopped
#if ENABLED(POWER_LOSS_RECOVERY)