We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed I had under extrusion issues with the e-step value of 764.
I was undextruding by 2 centimetes.
Though e-step testing I had to change the estep value to 899.9.
which brough the extrison back in alignment.
Not really an issue, just leaving the ticket for those who may come behind me.
I can see where the value is being set in configuration.h
#if WITH_TMC && WITH_BMG #define DEFAULT_AXIS_STEPS_PER_UNIT { 160, 160, 800, 830 } #elif WITH_TMC && WITH_TITAN **#define DEFAULT_AXIS_STEPS_PER_UNIT { 160, 160, 800, 764 }** #elif WITH_TMC && !WITH_TITAN && !WITH_BMG #define DEFAULT_AXIS_STEPS_PER_UNIT { 160, 160, 800, 186 } #elif WITH_TITAN && !WITH_TMC #if defined(T2_LEADSCREW) #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 1600, 420 } #else #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 420 } #endif #else #if defined(T2_LEADSCREW) #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 1600, 93 } #else #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 93 } #endif #endif
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed I had under extrusion issues with the e-step value of 764.
I was undextruding by 2 centimetes.
Though e-step testing I had to change the estep value to 899.9.
which brough the extrison back in alignment.
Not really an issue, just leaving the ticket for those who may come behind me.
I can see where the value is being set in configuration.h
The text was updated successfully, but these errors were encountered: