Skip to content

Commit

Permalink
Fix Single Hotend error
Browse files Browse the repository at this point in the history
  • Loading branch information
le3tspeak committed Jun 20, 2020
1 parent 2667d9e commit c93eb6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -1718,8 +1718,6 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal
#error "MAX6675_SS_PIN (required for TEMP_SENSOR_0) not defined for this board."
#elif HOTENDS && !HAS_TEMP_HOTEND
#error "TEMP_0_PIN (required for TEMP_SENSOR_0) not defined for this board."
#elif EITHER(HAS_MULTI_HOTEND, HEATERS_PARALLEL) && !HAS_HEATER_1
#error "HEATER_1_PIN not defined for this board."
#endif

#if HAS_MULTI_HOTEND
Expand Down
3 changes: 1 addition & 2 deletions Marlin/src/pins/stm32f1/pins_MKS_ROBIN_NANO.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@

#ifndef __STM32F1__
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
#elif HOTENDS > 2 || E_STEPPERS > 2
#error "MKS Robin nano supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif

#define BOARD_INFO_NAME "MKS Robin nano"
Expand Down Expand Up @@ -232,6 +230,7 @@
#if HOTENDS == 1
#ifndef FAN1_PIN
#define FAN1_PIN PB0
#define HEATER_1_PIN PC3
#endif
#else
#ifndef HEATER_1_PIN
Expand Down

0 comments on commit c93eb6b

Please sign in to comment.