Skip to Content
CommandsGeneralBuffersIntroduction

Text Capture Buffers

Capture buffers are tools for receiving strings of different formats and from various sources. This process allows building triggers and user reports, in addition to facilitating integration with external devices.

The system has 8 buffers (00-07), each capable of storing up to 150 characters.


Main Applications

ApplicationDescription
Peripheral integrationData capture from RFID readers, sensors, scales
IdentificationStorage of customer, cargo or driver codes
Custom reportsInclusion of external data in position messages
AutomationTriggers based on captured data

Available Commands


Typical Workflow

  1. 📡 Capture: A peripheral (RFID, scale, reader) sends data to the serial port
  2. 📦 Buffer: CXXB captures and stores in buffer XB 00-07
  3. Trigger: The corresponding trigger is activated (XB00+, XB01+, etc.)
  4. 📤 Report: The trigger sends a UC report with the buffer content
  5. 🖥️ Platform: The server receives and processes the captured data

Capture Triggers

Each buffer generates its own trigger when it receives data:

BufferTriggerTypical Use
XB00XB00+Customer/cargo code
XB01XB01+Route identification
XB02XB02+Driver data
XB03-XB07XB03+ - XB07+Custom uses

Advanced Configuration

For automatic capture from serial ports, use the CXXB command:


Limitations

XB buffers are volatile - they are lost when the device restarts. For persistent storage, use user variables (UV command).

ParameterLimit
Number of buffers8 (00-07)
Maximum length per buffer150 characters
PersistenceVolatile (lost on restart)

See Also

Last updated