-
Notifications
You must be signed in to change notification settings - Fork 26
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
AW Somehow hoses first layer speed on huge conversions. #135
Comments
It will be a while before I can free the printer to be able to include the terminal output for the first layer, as requested. |
This one is important to me, as I do a LOT of huge files, and AW not only helps the stuttering, it reduces filesize so that OctoPrint's gcode tab can display them (this one won't display as it's 266.3 Mb, whereas the AW conversion is only 107.8 Mb and WILL display) |
Ok. After you capture the terminal output, try switching the maximum radius to 1000mm, re-weld, and try the first layer again. If that fixes it, I may need to rethink my defaults. So, My guess as to what the issue is still stands: The gcode is overflowing the buffer. This MIGHT be happening on G2/G3 that have all of the possible parameters (X, Y, Z, E and F), and are of a very large radius. For example, here's a monster command I found in your gcode:
I could be jumping the gun a bit, since I'm not sure what's going on yet. This might be solvable with some changes to the firmware defines, but the default settings should work for most ppl, so I'll adjust that too if my suggestion helps. |
Will do, as I said, it will be a while. I want to use the same file, so I need to use the same printer, the other one(s) are set up with different sized nozzles, retracts, etc., so I want apples to apples, not apples to rusty shelf brackets. |
Let me pull up the firmware build files and see if I can find the maximum gcode length. Any idea what it's called (I suspect something such as MAX_GCODE_LENGTH or something similar)? |
Here it is in the current marlin 2 implementation. |
OK, mine's set at the default of 96, and that command you quoted was only 58, so that's apparently not it.
|
on my CR10 my first layer speed is insane on my CR10s its okay somethings is definately off with the CR10 |
I kept trying to slow it down in the Settings for the first layer and it won't stop going superfast on the SKIRTS |
Hmm. Maybe try resetting eeprom? |
I'm not using the default firmware, are you? If different firmwares are still doing it, then it's probably not the printer. |
on my CR10S I'm using the same firmware its updated I added a EZABL just like the CR10 but the older 10 is acting strange |
I'll give that a shot and report back |
@djlightflighter, can you post the gcode that you are talking about (preferably the original and welded file)? I still haven't found a gcode error for the original issue, and if I could it would be extremely helpful. If the gcode is correct, but the printer doesn't respond to them as expected, this would appear to be a downstream problem. If the gcode is incorrect, at least I can fix it myself. Thanks! |
Latest version (from the version you put out in that other thread [#138]) prints this same file fine. Strange, did you tweak anything else? |
@KenLucke, actually yes. There was an issue with gcode files that had blank lines inside of segments that would later be turned into arcs. I received an issue from another user that clearly had problems, and after some research figured out what the issue was. There were actually 2 problems. There was a bug in my circular buffer code that was delivering the wrong element in some cases, and I needed to skip any blank lines that appeared within an arc command. Solving both issues fixed that issue, so perhaps that fixed yours as well. It's very strange that I couldn't see any problems with the gcode you posted here (and I dug in deep). I suspect two commands must have gotten swapped, and the change was hard to see. That also points to problems with simplify's speed visualization. Anyway, I'm going to try to push another RC for both repos (command line/lib + plugin) today if possible. I really need to get this out, lol! Also, THANK YOU for your support @KenLucke! I did a little dance when I got an email from you :) |
@KenLucke, can you create a separate issue for this and include the terminal output for the first layer? I'm looking at the file right now in simplify 3d, and the first layer looks like it should be printing at between 300 and 1170mm/min:
It could be that some overrun happened since G2/G3 can be longer commands than G0/G1 (I have seen this before, but thought it was solved), and the max gcode length in your firmware may have kicked in.
Originally posted by @FormerLurker in #134 (comment)
The text was updated successfully, but these errors were encountered: