--
You received this message because you are subscribed to the Google Groups "ArduCopter Testers Team" group.
To unsubscribe from this group and stop receiving emails from it, send an email to arducoptertest...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
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.
Sent: Monday, June 17, 2013 2:55 AM
Subject: Re: ArduCopter 3.0-rc6 available -- need an introductory video
I suspect it's actually better not to. Instead, run the calibration without caring about exactly leveling, then fly the autolevel mode (hold stick in arming position for a while)
Gary,Re the possibility to add a feature to disable inertial navigation. NO! :-). If people want to stick with gps-only navigation they can remain on 2.9.1b.Thanks for your help on the wiki. I've done a review and come up with some requests:
- On the Configure Radio Control page:
- In the top image for the channels 1 ~ 8 the descriptions for 6 ~ 8 could be clearer for arducopter. I've included an image with the descriptions improved.
- we should have a description of what simple mode means
- we need more information and a link to the video of the compass dance
- The image for the Hardware Options is out-of-date and doesn't include the Auto Dec checkbox nor the Orientation drop-down
- it's not clear how to get to the next page once you reach the bottom. There's just this somewhat out of place message: Your APM and RC setup is not configured! If you're using an RTF copter, please proceed to Connect Battery. If you're using a DIY kit, please continue to Configure ESCs.
- The FlightModes page :
- only talks about Stabilize and Loiter. We should probably extend it to talk about all 12 flight modes (Acro, Stabilize, AltHold, Auto, Guided, Loiter, RTL, Circle, Position, LAND, OF_Loiter, Toy).
- we should drop the section titled "User definable flight modes". This is very niche information and should probably go into the developers section
-Randy
From: Gary McCray <garyr...@gmail.com>
To: drones-...@googlegroups. com
Cc: ArduCopterTesters <arducopt...@ googlegroups.com>; Randy Mackay <rmac...@yahoo.com>
// X frame set-up
add_motor(AP_MOTORS_MOT_1, 55, AP_MOTORS_MATRIX_YAW_FACTOR_CCW, 1);
add_motor(AP_MOTORS_MOT_2, -125, AP_MOTORS_MATRIX_YAW_FACTOR_CCW, 3);
add_motor(AP_MOTORS_MOT_3, -55, AP_MOTORS_MATRIX_YAW_FACTOR_CW, 4);
add_motor(AP_MOTORS_MOT_4, 125, AP_MOTORS_MATRIX_YAW_FACTOR_CW, 2);
because i realisen my new quadframe is not square distance between the Motors 31 cm long 42 cm width.
as attachment my vibration level on x.y.z , the configuration file and a picture of the Copter
thanks for your help
I don't know where to start....
Daniel,
You're not too specific about what you want me to look at so I just had a general look at your logs:
- You're using a modified version of the code? Not sure what's been added/changed but please remember that the code is very low on CPU time so any expensive additions could negatively affect basic functions.
- I see you have the fence enabled but not the throttle failsafe. I think the thr failsafe is quite a basic feature and if you're safety conscious that's one to turn-on
- Your Pitch and Roll I terms are quite high at 0.26. I hear some people say that our current default of 0.1 is too low so perhaps this is ok. I've never tried as high as 0.26
- The GPS Hdop values are spiking above 3.0 numerous times through the flight.
- I see a few ugly looking desired pitch spikes.
- The logging is more efficient than 2.9.1b but You might want to turn off the INAV dataflash message.
-Randy
From: DanielB <dber...@gmail.com>
To: drones-...@googlegroups. com
Cc: ArduCopterTesters <arducopt...@ googlegroups.com>; Randy Mackay <rmac...@yahoo.com>
Andy,
It looks like you have a motor imbalance. You can see from graphing the values from the MOT dataflash message that motors 3 and 4 are spinning about 20% faster than motors 1 & 2.
This is likely the cause of the uncommanded yaw.
The best solution is to resolve the imbalance. Perhaps it's ESCs that haven't been calibrated or a bad motor or ESC. Another option would be to increase the Rate Yaw I and IMAX values. I suspect you could double the IMAX without any problems. Increasing the Rate Yaw I to be the same as the Rate Yaw P should also be no problem.
-Randy
From: Andy Newman <andy.ne...@gmail.com>
To: drones-...@googlegroups. com
Cc: ArduCopterTesters <arducopt...@ googlegroups.com>; Randy Mackay <rmac...@yahoo.com>
Andy,Sorry, I see that you did try to increase the Yaw Rate I and IMAX. I'm a little surprised that didn't help.What you're seeing when you graph NavYaw vs actual Yaw is that the desired yaw (Nav Yaw) is getting dragged around behind the actual yaw. This is because in the code, we do not allow the Desired yaw to be further than 10 degrees from the actual yaw.Please try these two possible fixes:
- increase Stab Yaw P and Yaw Rate P by 50%
- add this line to your APM_Config.h:
- #define MAX_YAW_OVERSHOOT 2000
A 20% imbalance in your clockwise vs counter-clockwise motors is significant though and I think that should be the focus of trying to fix this.-Randy
From: Randy Mackay <rmac...@yahoo.com>
To: Andy Newman <andy.ne...@gmail.com>; "drones-...@googlegroups. com" <drones-...@googlegroups. com>
Cc: ArduCopterTesters <arducopt...@ googlegroups.com>
Sent: Sunday, June 23, 2013 11:20 AM
Subject: Re: ArduCopter 3.0-rc6 available -- need an introductory video
Andy,
Thanks for testing this out. There's one other user out there who reported the same kind of thing. We think it's likely to do with the stability patch changes but I wouldn't go so far as to say it's a bug but rather that it's less forgiving of yaw imbalances.
Did you try increasing the Yaw Rate I and IMAX?
-Randy
Cc: Andy Newman <andy.ne...@gmail.com>; ArduCopterTesters <arducopt...@ googlegroups.com>; Randy Mackay <rmac...@yahoo.com>
Hi Randy.Thanks for the replys. I have looked through the forum and found that 4 others mention the same problem as me, strangely they all are using the same frame design as me, DJI Clone F450 Flamewheel. It seems there is a design flaw in this type frame that causes the imbalance between CW and CCW motors. I did try shimming one motor on one side to put a bit of tilt on it but this made no difference. This is a very popular frame type so I fear you might be getting a lot more messages when v3.0.0 goes public. I totally agree that searching for a fix for the imbalance is the best option but that might be beyond the general users skill level to fix.I will try your changes and see if that helps with the problem. Is the config.h accessible without compile or do i need to download the source and do it that way? if source then could you point me to the current source, I have never used github and get a bit lost in it.Andy.
Andy.
http://copter.ardupilot.com/wiki/common-gps-how-it-works/
http://copter.ardupilot.com/wiki/gps-failsafe/