Browse Source

Clean up RUMBA pins conditions

Scott Lahteine 9 years ago
parent
commit
c30b7693e0
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      Marlin/pins_RUMBA.h

+ 8
- 8
Marlin/pins_RUMBA.h View File

@@ -48,36 +48,36 @@
48 48
 #define PS_ON_PIN          45
49 49
 #define KILL_PIN           46
50 50
 
51
-#if (TEMP_SENSOR_0==0)
51
+#if TEMP_SENSOR_0 == 0
52 52
   #define TEMP_0_PIN           -1
53 53
   #define HEATER_0_PIN         -1
54 54
 #else
55 55
   #define HEATER_0_PIN          2   // EXTRUDER 1
56
-  #if (TEMP_SENSOR_0==-1)
56
+  #if TEMP_SENSOR_0 == -1
57 57
     #define TEMP_0_PIN          6   // ANALOG NUMBERING - connector *K1* on RUMBA thermocouple ADD ON is used
58 58
   #else
59 59
     #define TEMP_0_PIN         15   // ANALOG NUMBERING - default connector for thermistor *T0* on rumba board is used
60 60
   #endif
61 61
 #endif
62 62
 
63
-#if (TEMP_SENSOR_1==0)
63
+#if TEMP_SENSOR_1 == 0
64 64
   #define TEMP_1_PIN           -1
65 65
   #define HEATER_1_PIN         -1
66 66
 #else
67 67
   #define HEATER_1_PIN          3   // EXTRUDER 2
68
-  #if (TEMP_SENSOR_1==-1)
68
+  #if TEMP_SENSOR_1 == -1
69 69
     #define TEMP_1_PIN          5   // ANALOG NUMBERING - connector *K2* on RUMBA thermocouple ADD ON is used
70 70
   #else
71 71
     #define TEMP_1_PIN         14   // ANALOG NUMBERING - default connector for thermistor *T1* on rumba board is used
72 72
   #endif
73 73
 #endif
74 74
 
75
-#if (TEMP_SENSOR_2==0)
75
+#if TEMP_SENSOR_2 == 0
76 76
   #define TEMP_2_PIN          -1
77 77
   #define HEATER_2_PIN        -1
78 78
 #else
79 79
   #define HEATER_2_PIN         6    // EXTRUDER 3
80
-  #if (TEMP_SENSOR_2==-1)
80
+  #if TEMP_SENSOR_2 == -1
81 81
     #define TEMP_2_PIN         7    // ANALOG NUMBERING - connector *K3* on RUMBA thermocouple ADD ON is used <-- this can not be used when TEMP_SENSOR_BED is defined as thermocouple
82 82
   #else
83 83
     #define TEMP_2_PIN         13   // ANALOG NUMBERING - default connector for thermistor *T2* on rumba board is used
@@ -87,12 +87,12 @@
87 87
 //optional for extruder 4 or chamber: #define TEMP_X_PIN         12   // ANALOG NUMBERING - default connector for thermistor *T3* on rumba board is used
88 88
 //optional FAN1 can be used as 4th heater output: #define HEATER_3_PIN       8    // EXTRUDER 4
89 89
 
90
-#if (TEMP_SENSOR_BED==0)
90
+#if TEMP_SENSOR_BED == 0
91 91
   #define TEMP_BED_PIN        -1
92 92
   #define HEATER_BED_PIN      -1
93 93
 #else
94 94
   #define HEATER_BED_PIN       9    // BED
95
-  #if (TEMP_SENSOR_BED==-1)
95
+  #if TEMP_SENSOR_BED == -1
96 96
     #define TEMP_BED_PIN       7    // ANALOG NUMBERING - connector *K3* on RUMBA thermocouple ADD ON is used <-- this can not be used when TEMP_SENSOR_2 is defined as thermocouple
97 97
   #else
98 98
     #define TEMP_BED_PIN      11    // ANALOG NUMBERING - default connector for thermistor *THB* on rumba board is used

Loading…
Cancel
Save