-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Write tor acceletation registers not possible. #333
Comments
@tlachmann hi 👋 it looks like the write functionality was not implemented. @3d-gussner I think we forgot to update the documentation. |
Hmm... that is really a bad outcome, when at the end the wirte is taken from the documentation and not enbable the capability... |
Your request to slow it down the acceleration with large spool is in my opinion a good argument for it.to make it write-able. But others may want to increase the accelerations and cause issues. We will discuss if that register should also be write-able. |
Actually, it is possible to make these registers writable, but at some code size cost. And since currently the axis limits are compile-time constants:
making them a runtime variables may cause the FW run out of scope of the CPU. That was the main reason why setting accelerations was not implemented yet. @gudnimg if you want, you can try some optimization magic |
Maybe you could make it able to have a range of accela
And if you limit the acceleration by a range from n to n? The only thing I could imagine, what make sense is to half or quarter the acceleration (only idea, have no expiereince how fast or slow the acceleratiuon then is) to soften accelerate the filament but then have a higher loading speed... Greets Thorsten |
Writiing to the following register does not work:
0x0eh 14 | Pulley_acceleration |
0x0fh 15 | Selector_acceleration |
0x10h 16 | Idler_acceleration |
I tried via terminal:
Read stock value:
Send: M707 A0x0e
Recv: MMU Register value: 800
Recv: ResetRetryAttempts
Recv: ok
Write Mod value:
Send: M708 A0x0e X400
Recv: ResetRetryAttempts
Recv: ok
verify Mod value:
Send: M707 A0x0e
Recv: MMU Register value: 800
Recv: ResetRetryAttempts
Recv: ok
No Value cange!
I tried to write as decimal,hex (unsigned/signed) with and without Postfix "h"
Writing to other registers like bowden length, cut lentgh, iRun currents and feedrates works.
Change Cut length works:
read:
Send: M707 A0x23
Recv: MMU Register value: 8
Recv: ResetRetryAttempts
Recv: ok
write:
Send: M708 A0x23 X15
Recv: ResetRetryAttempts
Recv: ok
verify:
Send: M707 A0x23
Recv: MMU Register value: 15
Recv: ResetRetryAttempts
Recv: ok
Change pulley load rate also works:
read:
Send: M707 A0x11
Recv: MMU Register value: 130
Recv: ResetRetryAttempts
Recv: ok
write
Send: M708 A0x11 X140
Recv: ResetRetryAttempts
Recv: ok
verify
Send: M707 A0x11
Recv: MMU Register value: 140
Recv: ResetRetryAttempts
Recv: ok
Changeing acceleration needs to work, cause the pulley acceleration with 800 is with large spools somtimes so hard that the filament will be grinded by the spinning pulley wheel.
The text was updated successfully, but these errors were encountered: