Quellcode durchsuchen

Make M7219 I more robust and nice to look at

Make M2719 initialize the Max7219 registers and then run the initialization pattern (if one is specified).
Roxy-3D vor 5 Jahren
Ursprung
Commit
60f1376798
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3
    1
      Marlin/src/gcode/feature/leds/M7219.cpp

+ 3
- 1
Marlin/src/gcode/feature/leds/M7219.cpp Datei anzeigen

@@ -42,8 +42,10 @@
42 42
  *               rows or columns depending upon rotation)
43 43
  */
44 44
 void GcodeSuite::M7219() {
45
-  if (parser.seen('I'))
45
+  if (parser.seen('I')) {
46 46
     Max7219_Clear();
47
+    Max7219_init();
48
+  }
47 49
 
48 50
   if (parser.seen('F'))
49 51
     for (uint8_t x = 0; x < MAX7219_X_LEDS; x++)

Laden…
Abbrechen
Speichern