Merge pull request #38 from dacarley/silently-ignore-codes

Silence warnings about unsupported G61, G61.1, G64
This commit is contained in:
OneFinityCNC
2021-03-17 00:32:53 -04:00
committed by GitHub

View File

@@ -4,8 +4,8 @@ cd /mnt/host
scons -j 8 -C cbang disable_local="re2 libevent" scons -j 8 -C cbang disable_local="re2 libevent"
export CBANG_HOME="/mnt/host/cbang" export CBANG_HOME="/mnt/host/cbang"
perl -i -0pe 's/case 610: setPathMode.*;/case 610: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp perl -i -0pe 's/case 610: setPathMode.*;/case 610: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp
perl -i -0pe 's/case 611: setPathMode.*;/case 611: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp perl -i -0pe 's/case 611: setPathMode.*;/case 611: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp
perl -i -0pe 's/case 640: {[^}]+}/case 640: implemented = false; break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp perl -i -0pe 's/case 640: {[^}]+}/case 640: break;/gm' /mnt/host/camotics/src/gcode/ControllerImpl.cpp
scons -j 8 -C camotics gplan.so with_gui=0 with_tpl=0 scons -j 8 -C camotics gplan.so with_gui=0 with_tpl=0