vlachoudis / bCNC

GRBL CNC command sender, autoleveler and g-code editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bCNC with fluidNC 3.6.6 - Don't work more.

RDS356 opened this issue · comments

The latest version of FluidNC don't work more with Bcnc.
The FluidNC 3.6.5 and early works very well.
Any idea ?

bcncfluidnc

You have bCNC from git?

You have bCNC from git?

Yes, version 0.9.15 phyton 3.8.7.

Traceback suggests that the tool field is blank from the G string.

Could change "int(g[1:])" to "int(g[1:] or 0)"

I had gone a step further and only process the T code when the tool is managed by controller:

            # accept value only if tool change managed by grbl
            if CNC.toolPolicy <= 1: CNC.vars["tool"] = int(g[1:] or 0)
commented

Solved with new FluidNC version.(3.6.7).