BIGTREETECH SKR v1.3 - Reuse Unused PINS September 08, 2019 10:54PM |
Registered: 13 years ago Posts: 367 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 15, 2019 03:22AM |
Admin Registered: 11 years ago Posts: 3,096 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 24, 2019 01:45AM |
Registered: 7 years ago Posts: 14 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 24, 2019 02:26AM |
Admin Registered: 13 years ago Posts: 7,147 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 24, 2019 03:22AM |
Registered: 7 years ago Posts: 14 |
Quote
Dust
With your configuration you seem to have used all the IO pins that are easy to reuse.
No mention of a LCD but I presume you have one...
Two option
1) You can de-solder the pull up resistor on a unused end stops pins and then use that pin.
2) you can de-solder the resistor that joins TX and RX on ax axis that isn't used them, you can use these IO pins.
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 24, 2019 04:20AM |
Admin Registered: 13 years ago Posts: 7,147 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 24, 2019 04:38AM |
Registered: 7 years ago Posts: 14 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 29, 2019 05:41AM |
Registered: 7 years ago Posts: 14 |
// Servos
//
#ifndef SERVO0_PIN
#define SERVO0_PIN P2_00
#endif
#ifndef SERVO1_PIN
#define SERVO1_PIN P1_28
#endif
//
// Z Probe (when not Z_MIN_PIN)
//
#ifndef Z_MIN_PROBE_PIN
#define Z_MIN_PROBE_PIN P1_24
#endif
//
// Filament Runout Sensor
//
#ifndef FIL_RUNOUT_PIN
//#define FIL_RUNOUT_PIN P1_28(Undefined this, since it is the same pin)
#endif
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 29, 2019 06:04AM |
Admin Registered: 13 years ago Posts: 7,147 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 29, 2019 06:25AM |
Registered: 7 years ago Posts: 14 |
Re: BIGTREETECH SKR v1.3 - Reuse Unused PINS November 29, 2019 11:19AM |
Admin Registered: 11 years ago Posts: 3,096 |