Browse Source

Patch Max7219_LED_Set input args

pull/1/head
Scott Lahteine 7 years ago
parent
commit
1ce0fb336b
  1. 2
      Marlin/src/feature/Max7219_Debug_LEDs.cpp

2
Marlin/src/feature/Max7219_Debug_LEDs.cpp

@ -100,7 +100,7 @@ void Max7219(const uint8_t reg, const uint8_t data) {
MS_DELAY();
}
void Max7219_LED_Set(const uint8_t row, const uint8_t col, const bool on) {
void Max7219_LED_Set(const uint8_t col, const uint8_t row, const bool on) {
if (row > 7 || col > 7) {
SERIAL_ECHOPAIR("??? Max7219_LED_Set(", (int)row);
SERIAL_ECHOPAIR(",", (int)col);

Loading…
Cancel
Save