Add M290 Babystepping

This commit is contained in:
Scott Lahteine
2017-10-25 15:49:34 -05:00
parent ce5f0ec85a
commit bd78ca0ee3
4 changed files with 71 additions and 3 deletions

View File

@ -169,6 +169,7 @@
* M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
* M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
* M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
* M290 - Babystepping (Requires BABYSTEPPING)
* M300 - Play beep sound S<frequency Hz> P<duration ms>
* M301 - Set PID parameters P I and D. (Requires PIDTEMP)
* M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
@ -585,6 +586,10 @@ private:
static void M280();
#endif
#if ENABLED(BABYSTEPPING)
static void M290();
#endif
#if HAS_BUZZER
static void M300();
#endif