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

@ -254,6 +254,7 @@
*
* ************ Custom codes - This can change to suit future G-code regulations
* M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
* M997 - Perform in-application firmware update
* M999 - Restart after being stopped by error
*
* "T" Codes
@ -858,6 +859,10 @@ private:
static void M951();
#endif
#if ENABLED(PLATFORM_M997_SUPPORT)
static void M997();
#endif
static void M999();
#if ENABLED(POWER_LOSS_RECOVERY)