Search found 123 matches

by Gauthier
Wed Oct 07, 2020 1:50 pm
Forum: Path/CAM
Topic: grbl post python
Replies: 5
Views: 1263

Re: grbl post python

it is copied from preprocessor where it IS defined below. You are right! This is probably due to the fact that in the FreeCAD WiKi documentation it is written: Pre- and post-processors work exactly the same way. They just do the contrary: The pre scripts convert from specific GCode to FreeCAD's &qu...
by Gauthier
Sun Oct 04, 2020 8:36 am
Forum: Path/CAM
Topic: grbl post python
Replies: 5
Views: 1263

Re: grbl post python

Hi @drmacro, @sliptonic, Looking at grbl_post.python # *************************************************************************** # * to distinguish python built-in open function from the one declared below if open.__module__ in ['__builtin__', 'io']: pythonopen = open Gauthier might have some insi...
by Gauthier
Mon Jul 27, 2020 8:54 am
Forum: Path/CAM
Topic: GRBL new post processor with drill cycles G81..G83
Replies: 90
Views: 35955

Re: GRBL new post processor with drill cycles G81..G83

Hi @freman, Thanks for this good idea of canned cycle speed optimisation, and sorry for my late response... Since NIST RS274NGC is not the only GCode standard (ISO 6983, DIN 66025, PN-73M-55256 or PN-93/M-55251are other ones), I think this must be a postprocessor optio n, and it shouldn't be activat...
by Gauthier
Wed Jun 24, 2020 6:28 am
Forum: Path/CAM
Topic: EnableExperimentalFeatures
Replies: 14
Views: 3482

Re: EnableExperimentalFeatures

(...) i cant find the option EnableExperimentalFeatures neither. (...) This option doesn't exist by default, as mlampert say, you need to create it: - In the parameter editor (FreeCAD menu "Tools/Edit parameters"), navigate to "BaseApp/Preferences/Mod/Path", then right click on ...
by Gauthier
Thu Apr 30, 2020 5:15 pm
Forum: Install / Compile
Topic: [ Solved] undefined symbol on fresh Debian 10 install
Replies: 6
Views: 1220

Re: undefined symbol on fresh Debian 10 install

Hi, many thanks for replies! By default, debian installed the OpenCascade library in /usr/lib/x86_64-linux-gnu, and FreeCAD in /usr/bin/freecad. Compilation & install of OpenCASCADE from up to date version of opencascade.com put the library in /usr/local/lib. I updated the default FreeCAD deskto...
by Gauthier
Wed Apr 29, 2020 12:10 pm
Forum: Install / Compile
Topic: [ Solved] undefined symbol on fresh Debian 10 install
Replies: 6
Views: 1220

Re: undefined symbol on fresh Debian 10 install

Hi, 7.4 is installed on your system and FreeCAD is built with 7.3 I was actually starting to think of a version problem with OpenCASCADE. In my system, both 7.3 from Debian standard repository and 7.4 compiled by myself from up to date opencascade.com official sources are installed. And probably the...
by Gauthier
Mon Apr 27, 2020 4:25 pm
Forum: Install / Compile
Topic: [ Solved] undefined symbol on fresh Debian 10 install
Replies: 6
Views: 1220

[ Solved] undefined symbol on fresh Debian 10 install

Hi all, Yesterday, I just reinstalled my box with Debian 10 (Stable/Buster), then, I reinstalled FreeCAD with the command: sudo apt install freecad So, by default, it have been installed in Python 2 version :-( So, I have uninstalled it with: sudo apt purge freecad sudo apt autoremove --purge Then, ...
by Gauthier
Fri Apr 17, 2020 12:06 pm
Forum: Path/CAM
Topic: GCode editor performance on big data
Replies: 25
Views: 3358

Re: GCode editor performance on big data

Hi all, ... the default editor often is an editor running in the commandline window. If the EDITOR environment variable is set, ... It's much more complicated than just using the $EDITOR variable for console editor... Yes, the $EDITOR variable may be used for define the editor, but there is other me...
by Gauthier
Fri Apr 17, 2020 5:53 am
Forum: Path/CAM
Topic: GCode editor performance on big data
Replies: 25
Views: 3358

Re: GCode editor performance on big data

Please check, comment or correct. What a good job! I think there's just a little typo in the "Programming your own postprocessor" paragraph: You Wrote: linuxcnc-post.py and it should be linuxcnc_post.py. "_", and not "-". On another subject, I am making good progress o...
by Gauthier
Sun Apr 12, 2020 6:55 am
Forum: Path/CAM
Topic: GCode editor performance on big data
Replies: 25
Views: 3358

Re: GCode editor performance on big data

Hi all, It is a good idea to allow the use of an external editor to view the GCode. I'm going to get down to implementing it... In my opinion, this must be fully configurable while retaining the capacity of the internal editor. It will therefore be necessary to add an "editor" configuratio...