What firmware are you running?
3DPrinting
3DPrinting is a place where makers of all skill levels and walks of life can learn about and discuss 3D printing and development of 3D printed parts and devices.
The r/functionalprint community is now located at: [email protected] or [email protected]
There are CAD communities available at: [email protected] or [email protected]
Rules
-
No bigotry - including racism, sexism, ableism, homophobia, transphobia, or xenophobia. Code of Conduct.
-
Be respectful, especially when disagreeing. Everyone should feel welcome here.
-
No porn (NSFW prints are acceptable but must be marked NSFW)
-
No Ads / Spamming / Guerrilla Marketing
-
Do not create links to reddit
-
If you see an issue please flag it
-
No guns
-
No injury gore posts
If you need an easy way to host pictures, https://catbox.moe may be an option. Be ethical about what you post and donate if you are able or use this a lot. It is just an individual hosting content, not a company. The image embedding syntax for Lemmy is ![](URL)
Moderation policy: Light, mostly invisible
It's running a version of marlin 2.xx, but it's a build made by anycubic themselves, so I'm not sure about the specific version it's based on or the detailed config.
I was hoping you’re on Klipper 😅 not sure what to do honestly, but idk if it’s worth troubling yourself with 5mm haha
Turns out SW end-stops got enabled by a FW update i did. I just disabled them, and now I can move beyond the bed size.
Good to hear :)
Its an issue since my custom g-code to wipe the nozzle before a print (which has worked just fine BTW) now tries to wipe the nozzle on the bed area, but the Z-setpoint is 1mm below bed surface (the Z-position of the wiping-pad at the back), so it kind of destroys both nozzle and bed.
You can try to disable software End-Stops with this gcode:
M211 S0
Be aware though, if you do that, there is nothing preventing your printer from trying to move beyond the hardware limits and possibly destroying itself. You can enable the end-stops again with:
M211 S1
Yeah i figured that out shortly after posting, they had been enabled by a FW update. Honestly the SW endstops should be closer to the edge of the physical limit of the axes and not just the edge of the bed, but since it's a FW config done by anycubic I don't have control of those parameters.
Maybe some setting to do with the size of the extruder? What happens if you increase the size of your bed?
A FW update had enabled SW end-stops, i just disabled them and now it works.
Thank you for posting your solution.