Browse Source

Remove things that aren't pins from pinsDebug_list.h

Scott Lahteine 7 years ago
parent
commit
88141ca717
1 changed files with 8 additions and 38 deletions
  1. 8
    38
      Marlin/pinsDebug_list.h

+ 8
- 38
Marlin/pinsDebug_list.h View File

@@ -20,12 +20,15 @@
20 20
  *
21 21
  */
22 22
 
23
- // Please update this list when adding new pins to Marlin.
24
- // The order doesn't matter.
25
- // Following this pattern is a must.
26
- // If the new pin name is over 28 characters long then pinsDebug.h will need to be modified.
23
+// Please update this list when adding new pins to Marlin.
24
+// The order doesn't matter.
25
+// Following this pattern is a must.
26
+// If the new pin name is over 28 characters long then pinsDebug.h will need to be modified.
27
+
28
+// Pin list updated from 18 FEB 2017 RCBugfix branch   - max length of pin name is 24
29
+
30
+#line 0 // set __LINE__ to a known value for both passes
27 31
 
28
-  // Pin list updated from 18 FEB 2017 RCBugfix branch   - max length of pin name is 24
29 32
 #if defined(__FD) && __FD >= 0
30 33
   REPORT_NAME_DIGITAL(__FD, __LINE__ )
31 34
 #endif
@@ -224,18 +227,6 @@
224 227
 #if PIN_EXISTS(E4_STEP)
225 228
   REPORT_NAME_DIGITAL(E4_STEP_PIN, __LINE__ )
226 229
 #endif
227
-#if defined(encrot0) && encrot0 >= 0
228
-  REPORT_NAME_DIGITAL(encrot0, __LINE__ )
229
-#endif
230
-#if defined(encrot1) && encrot1 >= 0
231
-  REPORT_NAME_DIGITAL(encrot1, __LINE__ )
232
-#endif
233
-#if defined(encrot2) && encrot2 >= 0
234
-  REPORT_NAME_DIGITAL(encrot2, __LINE__ )
235
-#endif
236
-#if defined(encrot3) && encrot3 >= 0
237
-  REPORT_NAME_DIGITAL(encrot3, __LINE__ )
238
-#endif
239 230
 #if defined(EXT_AUX_A0) && EXT_AUX_A0 >= 0 && EXT_AUX_A0 < NUM_ANALOG_INPUTS
240 231
   REPORT_NAME_ANALOG(EXT_AUX_A0, __LINE__ )
241 232
 #endif
@@ -317,9 +308,6 @@
317 308
 #if PIN_EXISTS(FILWIDTH) && FILWIDTH_PIN < NUM_ANALOG_INPUTS
318 309
   REPORT_NAME_ANALOG(FILWIDTH_PIN, __LINE__ )
319 310
 #endif
320
-#if defined(GEN7_VERSION) && GEN7_VERSION >= 0
321
-  REPORT_NAME_DIGITAL(GEN7_VERSION, __LINE__ )
322
-#endif
323 311
 #if PIN_EXISTS(HEATER_0)
324 312
   REPORT_NAME_DIGITAL(HEATER_0_PIN, __LINE__ )
325 313
 #endif
@@ -422,9 +410,6 @@
422 410
 #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
423 411
   REPORT_NAME_DIGITAL(MOTOR_CURRENT_PWM_Z_PIN, __LINE__ )
424 412
 #endif
425
-#if defined(NUM_TLCS) && NUM_TLCS >= 0
426
-  REPORT_NAME_DIGITAL(NUM_TLCS, __LINE__ )
427
-#endif
428 413
 #if PIN_EXISTS(ORIG_E0_AUTO_FAN)
429 414
   REPORT_NAME_DIGITAL(ORIG_E0_AUTO_FAN_PIN, __LINE__ )
430 415
 #endif
@@ -545,15 +530,9 @@
545 530
 #if PIN_EXISTS(SS)
546 531
   REPORT_NAME_DIGITAL(SS_PIN, __LINE__ )
547 532
 #endif
548
-#if defined(STAT_LED_BLUE) && STAT_LED_BLUE >= 0
549
-  REPORT_NAME_DIGITAL(STAT_LED_BLUE, __LINE__ )
550
-#endif
551 533
 #if PIN_EXISTS(STAT_LED_BLUE)
552 534
   REPORT_NAME_DIGITAL(STAT_LED_BLUE_PIN, __LINE__ )
553 535
 #endif
554
-#if defined(STAT_LED_RED) && STAT_LED_RED >= 0
555
-  REPORT_NAME_DIGITAL(STAT_LED_RED, __LINE__ )
556
-#endif
557 536
 #if PIN_EXISTS(STAT_LED_RED)
558 537
   REPORT_NAME_DIGITAL(STAT_LED_RED_PIN, __LINE__ )
559 538
 #endif
@@ -599,21 +578,12 @@
599 578
 #if PIN_EXISTS(THERMO_SCK)
600 579
   REPORT_NAME_DIGITAL(THERMO_SCK_PIN, __LINE__ )
601 580
 #endif
602
-#if defined(TLC_BLANK_BIT) && TLC_BLANK_BIT >= 0
603
-  REPORT_NAME_DIGITAL(TLC_BLANK_BIT, __LINE__ )
604
-#endif
605 581
 #if PIN_EXISTS(TLC_BLANK)
606 582
   REPORT_NAME_DIGITAL(TLC_BLANK_PIN, __LINE__ )
607 583
 #endif
608
-#if defined(TLC_CLOCK_BIT) && TLC_CLOCK_BIT >= 0
609
-  REPORT_NAME_DIGITAL(TLC_CLOCK_BIT, __LINE__ )
610
-#endif
611 584
 #if PIN_EXISTS(TLC_CLOCK)
612 585
   REPORT_NAME_DIGITAL(TLC_CLOCK_PIN, __LINE__ )
613 586
 #endif
614
-#if defined(TLC_DATA_BIT) && TLC_DATA_BIT >= 0
615
-  REPORT_NAME_DIGITAL(TLC_DATA_BIT, __LINE__ )
616
-#endif
617 587
 #if PIN_EXISTS(TLC_DATA)
618 588
   REPORT_NAME_DIGITAL(TLC_DATA_PIN, __LINE__ )
619 589
 #endif

Loading…
Cancel
Save