Goby3 3.2.3
2025.05.13
|
These applications are written using the Goby Application framework, but are standalone from any interprocess layer communications.
For useful applications that use the interprocess layer publish/subscribe infrastructure, see the
goby_store_server
is a SQLite-based store-and-forward database for the driver_type: DRIVER_STORE_SERVER
driver (run in gobyd
, goby_intervehicle_portal
, goby_modemdriver
or pAcommsHandler
). It opens a TCP socket and creates an SQLite database. It then handles connections for outbound messages that are written to the database, for later retrieval by the destination client.
It has simple configuration:
A simulator for the RockBLOCK series of Iridium modems. This can be used to simulate SBD messages for the DRIVER_IRIDIUM and DRIVER_IRIDIUM_SHORE drivers.
Configuration:
A primitive dynamics model backs a simple text-based command protocol to create goby_basic_frontseat_simulator
. The point of this simulator is to demonstrate the goby_frontseat_interface
plugin infrastructure and provide a low-fidelity vehicle simulator for testing missions where accurate kinematics is unnecessary.
To run:
It can be connected to using the goby_frontseat_interface_basic_simulator
shell script that runs goby_frontseat_interface
using the libgoby_frontseat_basic_simulator.so
plugin.
A version of goby_liaison
used for running tabs that do not need publish/subscribe communications. This means it doesn't require a running gobyd
. See the goby_liaison page for more details on goby_liaison
. The standalone version cannot meaningfully run Commander or Scope and so is only useful for custom tabs that don't need interprocess communications. See the Jaiabot pre-launch plugin for a use case: https://github.com/jaiarobotics/jaiabot/tree/1.y/src/lib/liaison/prelaunch
Splits a single "primary" serial port into multiple "secondary" pseudoterminals (virtual serial ports). All secondary ports will receive a copy of data read from the primary serial port. All data written to the secondary ports will be multiplexed and sent out the primary serial port, unless 'allow_write: false' is specified for the secondary ports.
This is useful, for example, for sharing a GPS serial feed between multiple applications that need it and all require serial connections. In the GPS case, gpsd
is an alternative option.