pin.h numbering April 21, 2014 03:38PM |
Registered: 9 years ago Posts: 9 |
// uncomment one of the following lines for RAMPS v1.3 or v1.0, comment both for v1.2 or 1.1 #define RAMPS_V_1_3 // #define RAMPS_V_1_0 #if MOTHERBOARD == 33 || MOTHERBOARD == 34 || MOTHERBOARD == 35 || MOTHERBOARD == 77 || MOTHERBOARD == 67 #define LARGE_FLASH true #if MOTHERBOARD == 77 #define X_STEP_PIN 54 #define X_DIR_PIN 55 #define X_ENABLE_PIN 38 #define X_MIN_PIN 3 #define X_MAX_PIN -1 //2 //Max endstops default to disabled "-1", set to commented value to enable. #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_MIN_PIN 14 #define Y_MAX_PIN -1 //15 #define Z_STEP_PIN 46 #define Z_DIR_PIN 48 #define Z_ENABLE_PIN 63 #define Z_MIN_PIN 18 #define Z_MAX_PIN -1 #define Y2_STEP_PIN 36 #define Y2_DIR_PIN 34 #define Y2_ENABLE_PIN 30 #define Z2_STEP_PIN 36 #define Z2_DIR_PIN 34 #define Z2_ENABLE_PIN 30 #define E0_STEP_PIN 26 #define E0_DIR_PIN 28 #define E0_ENABLE_PIN 24 #define E1_STEP_PIN 36 #define E1_DIR_PIN 34 #define E1_ENABLE_PIN 30 #define SDPOWER -1 #define SDSS 25//53 #define LED_PIN 13 #define BEEPER 33 #else #define X_STEP_PIN 54 #define X_DIR_PIN 55 #define X_ENABLE_PIN 38 #define X_MIN_PIN 3 #define X_MAX_PIN 2 #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_MIN_PIN 14 #define Y_MAX_PIN 15 #define Z_STEP_PIN 46 #define Z_DIR_PIN 48 #define Z_ENABLE_PIN 62 #define Z_MIN_PIN 18 #define Z_MAX_PIN 19 #define Y2_STEP_PIN 36 #define Y2_DIR_PIN 34 #define Y2_ENABLE_PIN 30 #define Z2_STEP_PIN 36 #define Z2_DIR_PIN 34 #define Z2_ENABLE_PIN 30 #define E0_STEP_PIN 26 #define E0_DIR_PIN 28 #define E0_ENABLE_PIN 24 #define E1_STEP_PIN 36 #define E1_DIR_PIN 34 #define E1_ENABLE_PIN 30 #define SDPOWER -1 #define SDSS 53 #define LED_PIN 13 #endif
Re: pin.h numbering April 22, 2014 06:44AM |
Admin Registered: 12 years ago Posts: 6,729 |
Re: pin.h numbering April 22, 2014 10:10AM |
Registered: 9 years ago Posts: 9 |
15:50:56.292 : Reporting endstop status 15:50:56.292 : x_min: open 15:50:56.293 : x_max: open 15:50:56.296 : y_min: open 15:50:56.296 : y_max: open 15:50:56.296 : z_min: open 15:50:56.296 : z_max: open
Re: pin.h numbering April 23, 2014 04:21AM |
Admin Registered: 12 years ago Posts: 6,729 |
Re: pin.h numbering April 29, 2014 09:28AM |
Registered: 8 years ago Posts: 27 |
Quote
laknerdavid
Thank you very much Dust!
I have the following answer:
15:50:56.292 : Reporting endstop status 15:50:56.292 : x_min: open 15:50:56.293 : x_max: open 15:50:56.296 : y_min: open 15:50:56.296 : y_max: open 15:50:56.296 : z_min: open 15:50:56.296 : z_max: open
How did you report the endstop status? What comment did you used in the pronterface so that it can check the status of the endstop?
Does this means both of endstops are active in the firmware? How can I disable the endstops which i don't need?
Thanks forward!
David
Re: pin.h numbering April 29, 2014 02:15PM |
Registered: 9 years ago Posts: 9 |
Quote
Dust
Send a m119 to the printer to confirm.
Re: pin.h numbering April 30, 2014 02:45AM |
Admin Registered: 12 years ago Posts: 6,729 |
Re: pin.h numbering April 30, 2014 07:04AM |
Registered: 9 years ago Posts: 100 |