Browse Source

Merge pull request #5271 from esenapaj/Fix-for-the-PR-#5267

Fix for thePR #5267 (Introduce a +1234.56 format for over 999 steps/mm)
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
38466b1d2f
  1. 2
      Marlin/utility.cpp

2
Marlin/utility.cpp

@ -35,7 +35,7 @@ void safe_delay(millis_t ms) {
#if ENABLED(ULTRA_LCD)
char conv[8];
char conv[9];
#define DIGIT(n) ('0' + (n))
#define DIGIMOD(n, f) DIGIT((n)/(f) % 10)

Loading…
Cancel
Save