Browse Source

Clean up RUMBA pins conditions

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

Loading…
Cancel
Save