Skip to content

Commit

Permalink
fix neatening
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jul 21, 2021
1 parent 67d7e4f commit cdce2a6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Marlin/src/pins/stm32f4/pins_BTT_SKR_PRO_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,15 @@

#ifdef TEMP_SENSOR_PROBE && !defined(TEMP_PROBE_PIN)
#if TEMP_SENSOR_PROBE_IS_AD8495 || TEMP_SENSOR_PROBE == 20
#if HOTENDS >= 2
#if HOTENDS == 2
#define TEMP_PROBE_PIN PF10
#elif HOTENDS < 2
#define TEMP_PROBE_PIN PF9
#endif
#else
#if HOTENDS == 2
#define TEMP_PROBE_PIN TEMP_2_PIN
#else
#elif HOTENDS < 2
#define TEMP_PROBE_PIN TEMP_1_PIN
#endif
#endif
Expand Down

0 comments on commit cdce2a6

Please sign in to comment.