BigTreeTech GTR V1.0 / Support 8 extruders, heaters, temp sensors, fans (#16595)
This commit is contained in:
committed by
Scott Lahteine
parent
0d166f9c7d
commit
248b7dfa59
@@ -153,6 +153,24 @@
|
||||
#if !PIN_EXISTS(E5_MS3)
|
||||
#undef E5_MS3_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_MS1)
|
||||
#undef E6_MS1_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_MS2)
|
||||
#undef E6_MS2_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_MS3)
|
||||
#undef E6_MS3_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_MS1)
|
||||
#undef E7_MS1_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_MS2)
|
||||
#undef E7_MS2_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_MS3)
|
||||
#undef E7_MS3_PIN
|
||||
#endif
|
||||
|
||||
#if !PIN_EXISTS(E0_STEP)
|
||||
#undef E0_STEP_PIN
|
||||
@@ -208,6 +226,24 @@
|
||||
#if !PIN_EXISTS(E5_ENABLE)
|
||||
#undef E5_ENABLE_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_STEP)
|
||||
#undef E6_STEP_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_DIR)
|
||||
#undef E6_DIR_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_ENABLE)
|
||||
#undef E6_ENABLE_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_STEP)
|
||||
#undef E7_STEP_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_DIR)
|
||||
#undef E7_DIR_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_ENABLE)
|
||||
#undef E7_ENABLE_PIN
|
||||
#endif
|
||||
|
||||
#if !PIN_EXISTS(X_CS)
|
||||
#undef X_CS_PIN
|
||||
@@ -236,6 +272,12 @@
|
||||
#if !PIN_EXISTS(E5_CS)
|
||||
#undef E5_CS_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E6_CS)
|
||||
#undef E6_CS_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(E7_CS)
|
||||
#undef E7_CS_PIN
|
||||
#endif
|
||||
|
||||
#if !PIN_EXISTS(FAN)
|
||||
#undef FAN_PIN
|
||||
@@ -247,6 +289,21 @@
|
||||
#if !PIN_EXISTS(FAN2)
|
||||
#undef FAN2_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(FAN3)
|
||||
#undef FAN3_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(FAN4)
|
||||
#undef FAN4_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(FAN5)
|
||||
#undef FAN5_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(FAN6)
|
||||
#undef FAN6_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(FAN7)
|
||||
#undef FAN7_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(CONTROLLER_FAN)
|
||||
#undef CONTROLLER_FAN_PIN
|
||||
#endif
|
||||
@@ -279,6 +336,12 @@
|
||||
#if !PIN_EXISTS(HEATER_5)
|
||||
#undef HEATER_5_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(HEATER_6)
|
||||
#undef HEATER_6_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(HEATER_7)
|
||||
#undef HEATER_7_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(HEATER_BED)
|
||||
#undef HEATER_BED_PIN
|
||||
#endif
|
||||
@@ -301,6 +364,12 @@
|
||||
#if !PIN_EXISTS(TEMP_5)
|
||||
#undef TEMP_5_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(TEMP_6)
|
||||
#undef TEMP_6_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(TEMP_7)
|
||||
#undef TEMP_7_PIN
|
||||
#endif
|
||||
#if !PIN_EXISTS(TEMP_BED)
|
||||
#undef TEMP_BED_PIN
|
||||
#endif
|
||||
@@ -363,6 +432,12 @@
|
||||
#if PIN_EXISTS(TEMP_5) && TEMP_5_PIN < NUM_ANALOG_INPUTS
|
||||
REPORT_NAME_ANALOG(__LINE__, TEMP_5_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(TEMP_6) && TEMP_6_PIN < NUM_ANALOG_INPUTS
|
||||
REPORT_NAME_ANALOG(__LINE__, TEMP_6_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(TEMP_7) && TEMP_7_PIN < NUM_ANALOG_INPUTS
|
||||
REPORT_NAME_ANALOG(__LINE__, TEMP_7_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(TEMP_BED) && TEMP_BED_PIN < NUM_ANALOG_INPUTS
|
||||
REPORT_NAME_ANALOG(__LINE__, TEMP_BED_PIN)
|
||||
#endif
|
||||
@@ -686,6 +761,54 @@
|
||||
#if PIN_EXISTS(E5_STEP)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E5_STEP_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_AUTO_FAN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_AUTO_FAN_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_CS)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_CS_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_DIR)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_DIR_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_ENABLE)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_ENABLE_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_MS1)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_MS1_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_MS2)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_MS2_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_MS3)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_MS3_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_STEP)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_STEP_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_AUTO_FAN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_AUTO_FAN_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_CS)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_CS_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_DIR)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_DIR_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_ENABLE)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_ENABLE_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_MS1)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_MS1_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_MS2)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_MS2_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_MS3)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_MS3_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_STEP)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_STEP_PIN)
|
||||
#endif
|
||||
#if defined(ENET_CRS) && ENET_CRS >= 0
|
||||
REPORT_NAME_DIGITAL(__LINE__, ENET_CRS)
|
||||
#endif
|
||||
@@ -765,6 +888,18 @@
|
||||
#if PIN_EXISTS(FAN3)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FAN3_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(FAN4)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FAN4_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(FAN5)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FAN5_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(FAN6)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FAN6_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(FAN7)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FAN7_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(FIL_RUNOUT)
|
||||
REPORT_NAME_DIGITAL(__LINE__, FIL_RUNOUT_PIN)
|
||||
#endif
|
||||
@@ -936,6 +1071,12 @@
|
||||
#if PIN_EXISTS(ORIG_E5_AUTO_FAN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, ORIG_E5_AUTO_FAN_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(ORIG_E6_AUTO_FAN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, ORIG_E6_AUTO_FAN_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(ORIG_E7_AUTO_FAN)
|
||||
REPORT_NAME_DIGITAL(__LINE__, ORIG_E7_AUTO_FAN_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(PHOTOGRAPH)
|
||||
REPORT_NAME_DIGITAL(__LINE__, PHOTOGRAPH_PIN)
|
||||
#endif
|
||||
@@ -1455,6 +1596,18 @@
|
||||
#if PIN_EXISTS(E5_SERIAL_RX)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E5_SERIAL_RX_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_SERIAL_TX)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_SERIAL_TX_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E6_SERIAL_RX)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E6_SERIAL_RX_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_SERIAL_TX)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_SERIAL_TX_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(E7_SERIAL_RX)
|
||||
REPORT_NAME_DIGITAL(__LINE__, E7_SERIAL_RX_PIN)
|
||||
#endif
|
||||
#if PIN_EXISTS(L6470_CHAIN_SCK)
|
||||
REPORT_NAME_DIGITAL(__LINE__, L6470_CHAIN_SCK_PIN)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user