
Elias Groot
Software Lead, Project Administrator
Debugging and Tuning
Debugging is the process of receiving data captured from a service's write stream and sending it to a roverctl-web
instance.
Tuning is the process of modifying a service's variables during its runtime. Values can be tuned remotely from roverctl
, which we call Over-the-Air (OtA) tuning. Tuning is not the same as modifying service.yaml parameters and tuned values are not persisted among service restarts.
Requirements
To allow for debugging and tuning, various components of the ASE framework work together:
- The Rover pipeline must have the transceiver service enabled
- This service is enabled by default when you enable debug mode in
roverctl
- This service is enabled by default when you enable debug mode in
- A proxy webRTC server must be set up to take data from the
transceiver
running on the car, and pass it on to one or moreroverctl-web
clients- This is enabled by default when you start up
roverctl
with the--debug
flag
- This is enabled by default when you start up
roverd
must inject a bootspec into thetransceiver
's runtime with as inputs the outputs of all other enabled services in the pipeline- All enabled services must receive the
tuning
object in their bootspec. This describes where they can listen to tuning updates.
Communication Pattern
When tuning and debugging is enabled, tuning state messages are sent as follows:
Debugging
Data flows from a Rover to a client (e.g. a laptop)
- A service outputs a sensor output message on one of its write streams
- The
transceiver
service captures this message, encapsulates it in debug metadata and forwards it to theroverctl
webRTC proxy - The
roverctl
webRTC proxy forwards the message to all connectedroverctl-web
clients - The
roverctl-web
client plots or shows the data in the web interface, depending on its format
Tuning
Data flows from a client (e.g. a laptop) to a Rover
- The
roverctl-web
client creates a tuning state message and sends it to theroverctl
webRTC proxy - The
roverctl
webRTC proxy forwards the message to to thetransceiver
service running on the Rover - The
transceiver
service forwards the tuning state to all services over itstuning
write stream - All services parse the tuning state (done by the roverlib) and update the internal variables if applicable
In a service.yaml configuration
field, it is possible to specify whether or not a value is tunable
. It is up to the service to discard or accept new tuning states based on this property. The transceiver will forward any tuning state, even if a field is considered not to be tunable.
Conventions
To make tuning and debugging work, the following conventions are in place:
- Any service with name (not alias!)
transceiver
will be treated differently byroverd
. When generating the bootspec,roverd
will inject all outputs from other services as the inputs for the transceiver service - Services can use the
tuning
field in the bootspec to determine whether thetransceiver
service is enabled and set up a read stream if so. On this read stream they will receive tuning state messages which are parsed and managed by the roverlib - Only rovercom protobuf outputs can be debugged. Other output messages will be discarded. (For example if you are sending raw bytes for service communication)
- A webRTC proxy can only have one connected
transceiver
service, but multiple connectedroverctl-web
clients (one-to-many from the Rover perspective)