-
Notifications
You must be signed in to change notification settings - Fork 293
Sending Data to TinyG using RX Packet Mode
Build 441.xx and later supports packet mode serial transmission. This greatly simplifies communication from the host to TinyG and provides some other advantages.
##Theory of Operation As of 441.xx TinyG supports two types of serial communications - streaming mode and packet mode. ###Streaming Mode Streaming mode is the "classic" way to communicate with the board and the send Gcode. Little has changed:
- Set streaming mode by setting
{rxm:0}
. - The serial receive buffer is 254 bytes (unchanged)
- XON/XOFF flow control and RTS/CTS flow control are supported (unchanged)
- JSON footers are now in the following format
[2,0,27]
- The first element is the footer ID which is now
2
- The second element is status code (unchanged)
- The third element is the number of bytes removed from RX, e.g. 27 (unchanged)
- There is no fourth element. The checksum has been removed.
- The first element is the footer ID which is now
- The
{rx:n}
command returns the number of bytes available in the RX queue
###Packet Mode
Packet mode is a new way to communicate with the board and to send Gcode. Packet mode simplifies host control by pre-parsing serial input into individual lines, then classifying them as data
or control
packets. Gcode lines (blocks) are data packets. Just about everything else is a control packet. Data and control packets are queued independently, with priority given to reading control packets. This enables the host to keep the board "full" with Gcode commands, yet to reserve one or more packet slots for control, therefore jumping the queue for things like feedhold and other real-time operations.
There are 16 packet slots of 80 characters each. (Note: Currently lines longer that 80 characters are truncated. We have not seen Gcode blocks > 80 characters, but that doesn't mean they are not out there. We would expect these lines to be either filled with comments, or to have excessive precision (we have seen some naiive Gcode generators provide 15 digits of decimal precision, which is absurd). We may need to do some more work on this character limit, depending on what we see).
Some details of packet mode:
- Set packet mode by setting
{rxm:1}
- XON/XOFF flow control and RTS/CTS flow control are still supported
- JSON footers are now in the following format
[3,0,14]
- The first element is the footer ID which is
3
- The second element is status code (unchanged)
- The third element is the number of packets free on the board
- There is no fourth element. The checksum has been removed.
- The first element is the footer ID which is
- The
{rx:n}
command returns the number of packet slots available
Note that the number of available (free) slots reported back in the packet report will always be 2 less than the number of free buffers you think you should have, i.e. 14 instead of 16. This is because there is always a buffer FILLING, and there is always a buffer PROCESSING.
####Using Packet Mode from the Host We may refine this, but here's where we are now:
-
Set up serial communications as normal.
-
Select RX packet mode by sending
{rxm:1}
(or{"rxm":1}
if so inclined) -
You must use JSON mode as the available packet count is returned in the JSON header.
-
It's a good idea for the host to have its own independent data and control queues (channels). Send Gcode down the data channel and everything else down the control channel. This way you can always inject a control command in the middle of a Gcode job.
-
Set up the sender to read from your Gcode "file". Send a line, then look at the available slots. Keep sending as long as there is at least 1 slot free, but always keep at least 1 slot free for commands. Naturally, if you get a control, send it right way.
-
Use
{rx:n}
if you need to find out the number of available slots
####A Few Things To Be Aware Of
-
Each (non-null) request line sent generates a response - an
{r:...}
response line. Since the system is now counting packets (and not bytes) the number of packet slots available will go up by exactly 1 for each request. -
Status reports
{sr:...}
, exception reports{er:...}
and single character commands!, %, ~, ^x
do not affect the packet slot count. -
Blank lines are not processed and don't take up a packet slot.
- A blank line is defined as 0 or more whitespace characters terminate with a CR or an LF (or both).
- This means that if lines are terminated with both CR and LF, the actual line is processed, but the trailing LF (or CR) is ignored. This therefore only takes a single packet slot.
- It also means that if the host sends a CR or LF by itself and expects that to be counted as a packet slot then the hosts slot counter will probably be off.
Getting Started Pages
- Home
- What is TinyG?
- Getting Started
- Connecting TinyG
- Configuring TinyG
- Sending Gcode Files
- Flashing TinyG
- Chilipeppr
Reference Pages
- TinyG Help Page
- TinyG Tuning
- TinyG Command Line
- TinyG JSON
- Gcode Support
- Homing and Limits
- Inch and MM Units
- Alarms and Exceptions
- Coordinate Systems
- Status Codes
- Status Reports
- Power Management
- Feedhold and Resume
- Licensing
- TinyG v8 Data Sheet
Discussion Topics
- Test-Drive-TinyG
- Jerk Controlled Motion
- Gcode Parsing
- Shapeoko Setup
- OX CNC TinyG Guide
- Creating Gcode Files
- Milling With Noisy Spindles
- Stepper Motors and Power Supplies
- Text Wrappers and Transaction IDs
- Using External Drivers
- TinyG Projects
Chilipeppr
- Chilipeppr
- Chilipeppr Advanced Usage
- Chilipeppr Archive and Restore Parameters
- ChiliPeppr PCB Auto Level
- Automatic Z Homing When Milling PCBs
Troubleshooting
Developer Pages