Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 23, 2014 02:35AM |
Registered: 9 years ago Posts: 89 |
to trueQuote
configuration.h - 0.91 Rev 8
#define MAX_HARDWARE_ENDSTOP_Z false
Quote
configuration.h - 0.91 Rev 8
#define ENDSTOP_PULLUP_X_MIN true
#define ENDSTOP_PULLUP_Y_MIN true
#define ENDSTOP_PULLUP_Z_MIN true
#define ENDSTOP_PULLUP_X_MAX true
#define ENDSTOP_PULLUP_Y_MAX true
#define ENDSTOP_PULLUP_Z_MAX true
#define ENDSTOP_X_MIN_INVERTING false
#define ENDSTOP_Y_MIN_INVERTING false
#define ENDSTOP_Z_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_X false
#define MIN_HARDWARE_ENDSTOP_Y false
#define MIN_HARDWARE_ENDSTOP_Z false
#define ENDSTOP_X_MAX_INVERTING false
#define ENDSTOP_Y_MAX_INVERTING false
#define ENDSTOP_Z_MAX_INVERTING false
#define MAX_HARDWARE_ENDSTOP_X true
#define MAX_HARDWARE_ENDSTOP_Y true
#define MAX_HARDWARE_ENDSTOP_Z true // <-- problem!!
Re: Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 23, 2014 01:36PM |
Registered: 9 years ago Posts: 469 |
Re: Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 23, 2014 04:35PM |
Registered: 9 years ago Posts: 89 |
Re: Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 23, 2014 05:49PM |
Registered: 9 years ago Posts: 157 |
Re: Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 27, 2014 03:51AM |
Registered: 9 years ago Posts: 89 |
Quote
3D-ES
That is a strange problem...
If I understand correct, you can compile the firmware without errors with both true and false,
but when you try to upload the binary it always fails with true and always succeeds with false?!
As far as I know, there is no connection between that setting and the upload mechanism...
The upload process is not interested in the meaning of the file, it only transfers 1's and 0's.
I *think* that you can even upload a binary that only contains zeroes, without errors.
But I have been wrong lots of times before, I would love to be corrected on this problem
Do you have a second USB cable that you can try?
Do you have a second PC / laptop that you can try it on?
Re: Can't upload the Firmware when MAX_HARDWARE_ENDSTOP_Z is changed to true October 27, 2014 07:10PM |
Registered: 9 years ago Posts: 89 |