Group for users of the original ArduPilot, both thermopile and ArduIMU versions
Manual for Ardupilot Mega 1.0/1.4
Hi, I have a couple of the older APM boards. I stopped flying for a few years and kind of lost touch with them.Trying to get back into the hobby now and I've discovered that all the instructions for the old boards are no longer available! The boards do seem to be working and can be connected to Mission Planner. Could someone please assist by directing me to where the relevant legacy manual can be viewed/downloaded?Thanks so much...
Read more…
Comments
Just a guess, but could the throttle off endpoint be below the lost signal threshold?
i had mine do that too i think my switch was making the ap think it was going into rth or auto rather than stabilize i reloaded the ap code and it fixed it i dont remember if i made changes or not also tho
Any ideas? Checked radio, it's good.
Right on Brian! sounds like you were having the same problems i use to have before i got the settings correct i know that the binary switch setting for output was one of my problems and also the baud rates throughout the various location in the code
when you swich to stabilize does the imu movements move the servos in responce to your movements? it took a few loads of different settings to get mine to do it
Well I have made some good progress. I've used a combination of the new board and shield and new IMU. I can now engage the AP and remain able to nudge the controls so nothing is lost, I also have movement from the servos when the ap is engaged and the IMU is moved (YES!) Earlier today, I tested using just the Thermo sensor and got a lock from the ublox and just minutes a go I moved my mock-up and all lights went blue indicating a lock, but it was lost just as quickly as it arrived. Hopefully I can get a better lock from work...
Brian, I've never specifically told the software "no IR". I believe choosing IMU as the GPS type tells the software what to use by :
#if GPS_PROTOCOL == 3
// We are using the IMU
// ---------------------
decode_gps();
#elif GPS_PROTOCOL == 5
// this is the sim
// ---------------
read_sim_sensors();
#else
// We are using FMA sensors
// ------------------------
read_XY_sensors();
// if we are using a Z sensor, read that in too
// --------------------------------------------
#if ENABLE_Z_SENSOR == 1
read_z_sensor();
#endif
#endif
First it looks for the IMU, nope, Sim, nope, must be thermopiles.