--
You received this message because you are subscribed to the Google Groups "drones-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to drones-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I’ve had a bit of a look at the SITL set-up wiki page which starts here:
1. http://dev.ardupilot.com/wiki/setting-up-sitl-on-windows/
I think this page is all fine right?
Maybe the problems start after Step #5 when the user is asked to go to this page:
2. http://dev.ardupilot.com/wiki/setting-up-sitl-on-linux/
which then diverts them over to the “Building for APM2.x on Linux with Make”.
3. http://dev.ardupilot.com/wiki/building-the-code-onlinux/
the problem with #3 is that it asks the user to make for PX4 which is obviously weird ‘cuz this page is only for APM2.
To be honest, I’d rather identify and fix what’s wrong with the current wiki page before we accept a set of parallel instructions. I’m happy to add a link to the rcg instructions of course.
Daniel,
I strongly suspect you’re the issue you’re facing with crazy altitudes is because the computer you’re using isn’t powerful enough. Maybe you can make a video of what you’re seeing?
-Randy
--
Arthur,
Ok, great. So after that’s updated we just need some people to try it again.
-Randy
I'm stuck at the #21 in the MOP. tmake complain... tmake error: Template file tmake.conf not found...help1?
>>> Where would I report any problems found?
Re the question above, I think for the moment, just reporting the issues here in the drones-discuss list is best.
-Randy
From: drones-...@googlegroups.com [mailto:drones-...@googlegroups.com] On Behalf Of TheJNJO1000
Sent: July 17, 2014 5:10 PM
To: drones-...@googlegroups.com
Subject: [Bulk] Re: [drones-discuss] SITL the 'easy'(?) way.
--
--
git clone https://github.com/diydrones/ardupilot.git (I have no need for a shared folder in my case.)
and then I continued with sitl_setup.sh
Though the scripts work fine as is, in my local setup, I will enable: echo 'ARMING_CHECK 0' >> ~/ardupilot/Tools/autotest/copter_params.parm to sitl_setup.sh
and sim_start.sh will be modified with a choice to enter an alternate IP-adress (requires restart of SITL to stick), and to load the map module:
#!/bin/bash
#################
#New lines below
IP=10.11.12.13
read -p "IP-adress is $IP. Change? (y/n) " RESP
if [ "$RESP" = "y" ]; then
read -p "Type new IP. (x.x.x.x) " NEWIP
sed -i -e "4c IP="$NEWIP"" sim_start.sh
fi
#New lines above
#################
read -p "Which software do you want to simulate? Copter=c, Plane=p, Rover=r (c/p/r) " RESPM
if [ "$RESPM" = "c" ]; then
cd ardupilot/ArduCopter
read -p "Do you want to reset parameters to default? (y/n) " RESP
if [ "$RESP" = "y" ]; then
sim_vehicle.sh -v ArduCopter -f X -j 2 -w --console --out=$IP:14550 --out=$IP:14551
else
sim_vehicle.sh -v ArduCopter -f X -j 2 --console --map --out=$IP:14550 --out=$IP:14551
fi
fi