-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
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
Bad printing of circles from PC #11622
Comments
It's a known limitation for "higher-resolution" circles (too short segments) on 8bit hardware and Marlin, especially when printing via USB. The situation is better with an SD card (I never figured out why, the serial line is hardly taxed), but only slightly. Using 32bit boards might be better, but other issue threads here seem to indicate Marlin in general has issues with many small segments regarding acceleration/jerk. It seems we're still pretty far from an ideal single-step segment resolution. (TL;DR - use lower resolution STL) |
Yes but this use to work, that start to happend suddenly I think it is not because updating merlin |
Can you post the following information:
|
Slicing software is Repetier 2.1.3 I also have a problem with shifting layer when I print from SD card with this version of marlin. |
In terms of missed steps, what stepper drivers does that board have and do you have them correctly defined in your configuration file? |
This is a completely unofficial, unrecommended test, but could you add the following: #if ENABLED(STUTTER_FIX)
OCR1A = (OCR1A < (TCNT1 +16)) ? (TCNT1 + 16) : OCR1A;
#endif To line 1408 (or thereabouts) of stepper.cpp in the marlin repo, then recompile and flash for your board. // If there is a current block
if (current_block) {
**insert code here** then, in Configuration.h add: #define STUTTER_FIX so that you can control it. It's a timer overflow hack, and adding it to my branch has alleviated the stuttering I was seeing |
I have regular Nema 17 stepper motors, which works ok with original marlin, but not with latest, where I have constant layer shifting |
MiddleMan5 |
Hi, I am facing the same problem. |
Can it be a problem settings on PC for port? |
I found that it happened only if when I use cura. If I export to the gcode, and use Printrun to print the model, everything seems fine. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Description
When I print from SD card printer prints nice round smooth circles. But when I print the same from PC, printing is slow and printing circles have many short pauses after that circles are really bad, with alot of bumps.
I have downloaded marlin bugfix 1.1.x today and uploaded it.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: