Skip to content

Commit 7fbd9ec

Browse files
authored
🔧 Allow RAMPS FAN1_PIN override (MarlinFirmware#26725)
1 parent 6398902 commit 7fbd9ec

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Marlin/src/pins/ramps/pins_RAMPS.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@
245245
#define HEATER_BED_PIN MOSFET_C_PIN
246246
#endif
247247
#elif FET_ORDER_EFF // Hotend, Fan, Fan
248-
#define FAN1_PIN MOSFET_C_PIN
248+
#ifndef FAN1_PIN
249+
#define FAN1_PIN MOSFET_C_PIN
250+
#endif
249251
#elif DISABLED(FET_ORDER_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE")
250252
#ifndef HEATER_BED_PIN
251253
#define HEATER_BED_PIN MOSFET_C_PIN

0 commit comments

Comments
 (0)