You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [new] Added total available planner buffer blocks (15 shown, but
there are 16. one is used by the ring buffer and to execute system
motions) and serial RX buffer bytes. This information is useful for
GUIs to setup and optimize their streaming protocols easily.
[doc] Updated the interface document to reflect the change.
Copy file name to clipboardExpand all lines: doc/markdown/interface.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -408,16 +408,16 @@ Feedback messages provide non-critical information on what Grbl is doing, what i
408
408
- `[VER:]` and `[OPT:]`: Indicates build info data from a `$I` user query. These build info messages are followed by an `ok` to confirm the `$I` was executed, like so:
409
409
410
410
```
411
-
[VER:v1.1d.20161014:Some string]
412
-
[OPT:VL]
411
+
[VER:v1.1f.20170131:Some string]
412
+
[OPT:VL,16,128]
413
413
ok
414
414
```
415
415
416
416
- The first line `[VER:]` contains the build version and date.
417
417
- A string may appear after the second `:` colon. It is a stored EEPROM string a user via a `$I=line` command or OEM can place there for personal use or tracking purposes.
418
-
- The `[OPT:]` line follows immediately after and contains character codes for compile-time options that were either enabled or disabled. The codes are defined below and a CSV file is also provided for quick parsing. This is generally only used for quickly diagnosing firmware bugs or compatibility issues.
418
+
- The `[OPT:]` line follows immediately after and contains character codes for compile-time options that were either enabled or disabled and two values separated by commas, which indicates the total usable planner blocks and serial RX buffer bytes, respectively. The codes are defined below and a CSV file is also provided for quick parsing. This is generally only used for quickly diagnosing firmware bugs or compatibility issues.
419
419
420
-
| `OPT` Code | Setting Description, Units |
420
+
| `OPT` Code | Setting Description, Units |
421
421
|:-------------:|----|
422
422
| **`V`** | Variable spindle enabled |
423
423
| **`N`** | Line numbers enabled |
@@ -439,7 +439,7 @@ Feedback messages provide non-critical information on what Grbl is doing, what i
439
439
| **`E`** | Force sync upon EEPROM write disabled |
440
440
| **`W`** | Force sync upon work coordinate offset change disabled |
- `[echo:]` : Indicates an automated line echo from a command just prior to being parsed and executed. May be enabled only by a config.h option. Often used for debugging communication issues. A typical line echo message is shown below. A separate `ok` will eventually appear to confirm the line has been parsed and executed, but may not be immediate as with any line command containing motions.
0 commit comments