Replies: 4 comments 2 replies
-
No, the GRBL protocol does not support comments which would otherwise cause the controller to error out, it is therefore not optional and enabled by default.
I had the ambition to add some new features to the console such as colors (#2043) and folding (group multiple lines into one). A feature for filtering might be a good idea as well to add to that list. |
Beta Was this translation helpful? Give feedback.
-
re. grbl comments- then perhaps I'm confusing the the linkage of Comment Remover option with grbl comments no longer being seen in the Console log stream; in previous UGS releases (going back 6 months or more), I recall seeing grbl comments in the Console log stream, that was useful to me. As noted with the Console log filter field now available (right click in log), grbl comments can be filtered there if undesired. So are you saying that previously those grbl comments were visible in the Console log but not actually sent to grbl ? Or they were being sent and that caused some problems ? re. adding the Console filter regexp as a saved option, thank you. |
Beta Was this translation helpful? Give feedback.
-
@breiler , re. OP #2 request...
perhaps some confusion here, what I meant to suggest is a UGS launch/exit cycle persistent save of the regexp filter string field that already exists for the console log. I was just suggesting to implement a list of filter strings as a Controller Option. As it is now, the strings are only persistent during the current invocation of UGS in this filter dialogue. I use Console Log filters frequently to analyze the job during runtime as well as post runtime. Extremely useful. I save my Console Log filter streams now in the Controller Options window as disable regexp strings for gcode, only because it's more convenient that putting them in an external text file. |
Beta Was this translation helpful? Give feedback.
-
@breiler - just checking if you're considering adding an option to save the Console filter expression ? Its very handy. It could also implement the filtering of gcode comments for those that don't want them. I prefer gcode comments. But either way, everyone is happy :)
|
Beta Was this translation helpful? Give feedback.
-
I noticed in Controller Options that a saved regular expression is applied to Comment Remover. Two questions here:
Here is a regexp that Breiler assisted me in writing. I find it very useful for the Console streaming.
regexp will filter out "ok **" and jogging cmds and ">>> white space" from the Console streaming log.
^(?!ok\s*$)(?!>>> \$J=.*$)(?!>>>\s*$)
Beta Was this translation helpful? Give feedback.
All reactions