We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PlanSequence.jar is a small java application that connects to a vehicle over TCP and executes a list of plans, sequentially.
To generate a runnable jar file under the dist/ folder of IMCJava simply run:
ant PlanSequence.jar
The vehicle must have a TCP Server that publishes PlanControlState, VehicleState and Abort messages.
The program accepts a series of arguments as follows:
java -jar dist/PlanSequence.jar --port=<port> --host=<host> --plans=<plans>
Example:
java -jar dist/PlanSequence.jar --port=6002 --host=127.0.0.1 --plans=plan1,plan2,plan3