Skip to content
Snippets Groups Projects
Commit 5c741ed3 authored by Roman Bapst's avatar Roman Bapst
Browse files

Merge pull request #3073 from PX4/sitl_startup_script

Sitl startup script
parents 327481d7 1767acd1
No related branches found
No related tags found
No related merge requests found
......@@ -68,12 +68,12 @@ touch rootfs/eeprom/parameters
# Start Java simulator
if [ "$debugger" == "lldb" ]
then
lldb -- mainapp ../../../../$rc_script
lldb -- mainapp ../../../../${rc_script}_${program}
elif [ "$debugger" == "gdb" ]
then
gdb --args mainapp ../../../../$rc_script
gdb --args mainapp ../../../../${rc_script}_${program}
else
./mainapp ../../../../$rc_script
./mainapp ../../../../${rc_script}_${program}
fi
if [ "$3" == "jmavsim" ]
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment