File tree 2 files changed +14
-12
lines changed
buildroot/share/PlatformIO/variants/MARLIN_FYSETC_CHEETAH_V20
2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 43
43
#define FLASH_ADDRESS_START 0x8004000
44
44
#endif
45
45
46
+ #define SERVO0_PIN PB1 // BL-TOUCH/PWM
47
+
46
48
//
47
- // Z Probe
49
+ // Limit Switches
48
50
//
49
- #if ENABLED (BLTOUCH )
50
- #error "You need to set jumper to 5v for Bltouch, then comment out this line to proceed."
51
- #define SERVO0_PIN PA0
52
- #elif !defined(Z_MIN_PROBE_PIN )
53
- #define Z_MIN_PROBE_PIN PA0
54
- #endif
51
+ #define X_STOP_PIN PB4 // X-MIN
52
+ #define Y_STOP_PIN PC8 // Y-MIN
53
+ #define Z_STOP_PIN PA0 // Z-MIN
55
54
56
55
//
57
- // Limit Switches
56
+ // Z Probe
58
57
//
59
- #define X_STOP_PIN PB4
60
- #define Y_STOP_PIN PC8
61
- #define Z_STOP_PIN PB1
58
+ #if ENABLED (BLTOUCH )
59
+ #error "You need to set jumper to 5V for BLTouch, then comment out this line to proceed."
60
+ #endif
61
+ #ifndef Z_MIN_PROBE_PIN
62
+ #define Z_MIN_PROBE_PIN PB1 // BL-TOUCH/PWM repurposed
63
+ #endif
62
64
63
65
//
64
66
// Filament runout
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ extern "C" {
95
95
96
96
// Timer Definitions
97
97
#define TIMER_TONE TIM2 // TIMER_TONE must be defined in this file
98
- #define TIMER_SERVO TIM5 // TIMER_SERVO must be defined in this file
98
+ #define TIMER_SERVO TIM3 // TIMER_SERVO must be defined in this file
99
99
#define TIMER_SERIAL TIM11 // TIMER_SERIAL must be defined in this file
100
100
101
101
// UART Definitions
You can’t perform that action at this time.
0 commit comments