The serial command API enables 3rd party control systems to interact with your RockAIR or RockFLEET device via an RS-232 or RS-485 serial interface.

The main purpose of the Serial API is to provide a method of sending and receiving hexadecimal or binary encoded data through your device. It is designed to be deliberately restrictive, with the overriding principle being that the external control system should not compromise the autonomous tracking capability of the device.

๐Ÿ‘

Enable Serial API mode via the CONNECT app

Connect to your tracker using the CONNECT app and ensure that Serial Mode is set to 'Serial API'.
Follow app menus: Configure>External Data>Serial Mode = Serial API

Serial API Interface

DeviceSerial API SupportSerial Version
RockSTARNON/A
RockFLEET (with appropriate configuration)YESRS232
RS485
RockAIRYESRS232

Interface Wiring

  • RS232 versions are โ€˜3-wireโ€™ with RX, TX and GND signals.
  • RS485 versions are optoisolated, with A, B, Y, Z and GND signals.

Interface Settings

For both serial interfaces we the recommended communication settings:

Serial OptionSettings
Baud Rate19200
Baud rate can be configured via the CONNECT app.
Data Bits8
ParityNone
Stop Bits1
Flow ControlNone

System State

Serial API functionality requires the device to be set to 'Unlimited Power'.

Serial API functionality will be paused in limited power configuration and when deactivated, GPS streaming will be turned off whenever the API is paused.

๐Ÿšง

Serial API can be enabled but not active!

The serial API feature can be enabled but its functionality may not be active on the serial port (paused) depending on system state. Whenever functionality does become active then an unsolicited message will now be issued to the serial port as a prompt for external equipment.

The message will include the current firmware version, for example:- "Version 03.04.19".

Serial API Commands

๐Ÿ‘

Carriage Return

All commands should be followed by an \r Carriage Return

Serial CommandFunction
R7+GPSRequest position data
R7+GPS,HOTCheck/change the GPS Hot setting
R7+GPS,STREAMTurn on GPS position data streaming to serial interface
R7+TRACK,FREQCheck/change the Tracking Frequency of the tracker
R7+[WH|WHP|WHNC|WHNCP]Transmit hex-encoded data with or without positional data and checksum
R7+[WB|WBP|WBNC|WBNCP]Transmit binary data with or without positional data and checksum
R7+[WH|WHP|WHNC|WHNCP],ID=n
or
R7+[WB|WBP|WBNC|WBNCP],ID=n
Sets outbound message ID. Used in combination with send hex or binary data commands.
R7+STATChecks status of outbound message
R7+RHRead inbound message
R7+DDelete inbound message
R7+VERSIONReturns the Firmware Version

Error Messages

Error TypeDescription
ERROR 0Data format error - eg.
- Non-hex payload
- Incorrect checksum provided
- Binary payload timeout
ERROR 1Device deactivated - will not be seen as device is unable to respond in deactivated strate
ERROR 2This error type will be returned in response to any R7+WH.. or R7+WB.. message commands if the database is full.
ERROR 3This error will be returned to indicate rejection of a message command when the submitted ID is a duplicate of one already in the DB and not yet sent.

Whatโ€™s Next