新问题
丢失的步骤 #35
注释
|
你有我可以用来重现这个的示例 gcode 文件吗? |
|
它实际上发生在任何代码中,即使在使用 $h 来启动
|
|
只是好奇。您使用的是 v0.8 还是 v0.9?如果是后者, 2013 年 1 月 5 日星期六下午 4:02,rawkstar320 notifications@github.com写道:
|
|
我正在使用 0.8。“官方 master 分支”
|
|
@chamnit The current rate is once a second, is that too frequent for the default setting? |
|
No it definitely shouldn’t. I’ve had the keyboard pressed down and On Jan 5, 2013, at 5:09 PM, Will Winder notifications@github.com wrote: @chamnit https://github.com/chamnit The current rate is once a second, is — |
|
I played with it more and I actually can only get it to “skip” during a homing cycle ($h). Although jogging to an xyz coordinate does sound a little different than usual, but my video couldnt pick it up. Very strange… Here is the video “proof”: GRBL Settings:$0=1280.000 (x, step/mm) |
|
Ah ok. Now I see what’s going on. It’s not a problem with UGS per se. It’s more of a problem with Grbl and it’s homing routine. It doesn’t like to be polled for a status report while homing because it executes the steps serially with the main program, rather than asynchronously with the interrupts. So, when it polls for a status, it pauses the step generation for the 40 or usec to report the status and then continues. I’ll have to push a fix for this. For v0.8, I’ll just check for a system abort rather than the full runtime commands. Hence polling characters will be ignored. UGS will need to either not send polling characters during homing or be ok with no response from Grbl after sending a poll. For v0.9, the plan is to remove the ‘lite’ stepper algorithm in v0.8 and fully integrate homing into the main stepper module. So there shouldn’t be a problem with this in this way. Anyhow, polling shouldn’t be done with a homing routine anyway. Grbl reports back non-sensical information during it. |
|
@rawkstar320 : BTW I ran across your instructables on machinable wax. I think it made it on Lifehacker too. Nice job. What do you use the machinable wax for? Does it have any mechanical use or is it strictly for molds or code proofing? |
|
I thought it might be something like that. I’ll look for the update and see The wax Instructable hit big, I was pretty surprised. I’m using it for a
|
|
行。我发布了更改,希望这能解决您的问题。让我知道任何一种方式。谢谢! 有趣的。我想它也可以用来制作真空模具形状。也就是说,如果蜡不与热塑料片熔化。我一定要试试看。:) |
|
亲爱的,我今天会尝试测试更新(忙忙忙……) 这将取决于您的塑料板,但它可能会工作一次……取决于您正在成型的塑料类型(及其温度)。 |
|
我忘了提供更新,但 GRBL 更新有效。谢谢! |


我一直在玩 UGS v1.05,但遇到了一些奇怪的问题。任何轴上的任何运动似乎都有“溅射”并导致丢失步骤。本质上,电机旋转大约 1 圈,快速暂停,然后继续。这种“溅射”非常一致,彼此之间可能相隔 1 秒。
我对旧式 gcode 发件人没有这个问题,只有新的。我唯一的猜测是新版本可能正在轮询“?” 和其他实时命令过于频繁以至于 arduino 无法跟上?