Browse Source

🩹 Fix LPC176x M43 formatting (#22680)

Christian Schuster 2 years ago
parent
commit
7378e7c2db
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/LPC1768/pinsDebug.h

+ 1
- 1
Marlin/src/HAL/LPC1768/pinsDebug.h View File

@@ -35,7 +35,7 @@
35 35
 #define PRINT_ARRAY_NAME(x) do{ sprintf_P(buffer, PSTR("%-" STRINGIFY(MAX_NAME_LENGTH) "s"), pin_array[x].name); SERIAL_ECHO(buffer); }while(0)
36 36
 #define PRINT_PIN(p) do{ sprintf_P(buffer, PSTR("P%d_%02d"), LPC176x::pin_port(p), LPC176x::pin_bit(p)); SERIAL_ECHO(buffer); }while(0)
37 37
 #define PRINT_PIN_ANALOG(p) do{ sprintf_P(buffer, PSTR("_A%d     "), LPC176x::pin_get_adc_channel(pin)); SERIAL_ECHO(buffer); }while(0)
38
-#define MULTI_NAME_PAD 16 // space needed to be pretty if not first name assigned to a pin
38
+#define MULTI_NAME_PAD 17 // space needed to be pretty if not first name assigned to a pin
39 39
 
40 40
 // pins that will cause hang/reset/disconnect in M43 Toggle and Watch utilities
41 41
 #ifndef M43_NEVER_TOUCH

Loading…
Cancel
Save