vlachoudis / bCNC

GRBL CNC command sender, autoleveler and g-code editor
GNU General Public License v2.0
1.54k stars 528 forks source link

bCNC with fluidNC 3.6.6 - Don't work more. #1801

Closed RDS356 closed 1 year ago

RDS356 commented 1 year ago

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

bcncfluidnc

Harvie commented 1 year ago

You have bCNC from git?

RDS356 commented 1 year ago

You have bCNC from git?

Yes, version 0.9.15 phyton 3.8.7.

rschell commented 1 year ago

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

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

rschell commented 1 year ago

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)
RDS356 commented 1 year ago

Solved with new FluidNC version.(3.6.7).