mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 09:28:58 +00:00
It is useful to run jmavsim separately, for example when debugging mainapp separately, or running some other external tool on mainapp (like heap analysis)
9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#! /bin/bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$SCRIPT_DIR/jMAVSim"
|
|
|
|
ant create_run_jar copy_res
|
|
cd out/production
|
|
java -Djava.ext.dirs= -jar jmavsim_run.jar -udp 127.0.0.1:14560
|