1094 Commits (0e54613632967303b5b035951fd8ee9e9aa05efa)

Author SHA1 Message Date
rmackay9 ad9a8acbab ArduCopter - test.pde - changed references "motor_armed" to "motors.armed()" as part of move to AP_Motors library. 13 years ago
rmackay9 1d086c83f0 ArduCopter - system.pde - changed references to "motor_armed" to "motors.armed()" as part of the move to use AP_Motors library. 13 years ago
rmackay9 4aa40bdf10 ArduCopter - setup.pde - changed cli for helicopter to call the new AP_Motors class's parameters instead of the global parameters. 13 years ago
rmackay9 473126581d ArduCopter - radio.pde - changed motor initialisation to set update rate, frame orientation, min and max throttle to AP_Motors class. 13 years ago
rmackay9 905a445391 ArduCopter - motors.pde - changed references to "motor_armed" to "motors.armed()" because we've moved to using the AP_Motors class. 13 years ago
rmackay9 aa54458dcf ArduCopter - leds.pde - changed refrences to "motor_armed" to "motors.armed()" 13 years ago
rmackay9 7df17e9b3b ArduCopter - removed references to MOT_1 etc as these are now within the AP_Motors class (i.e. MOT_1 has become AP_MOTORS_MOT_1) 13 years ago
rmackay9 ee308ea06c ArduCopter - increased firmware version to 118. Removed nearly all heli parameters as these are all created by the AP_MotorHeli class now. 13 years ago
rmackay9 8402a3d837 ArduCopter - Log.pde - changed MOT output to dataflash to take values from AP_Motors class's motor_out array instead of the global motor_out array. 13 years ago
rmackay9 e5710958bc ArduCopter - GCS_Mavlink.pde - changed output to ground station to use new AP_Motor's class motors array inplace of the global "motor_out" array. 13 years ago
rmackay9 aa4085183c ArduCopter - Attitude.pde - moved heli_get_angle_boost from heli.pde (which will be removed) to Attitude.pde. In fact we should combine heli_get_angle_boost and the regular get_angle_boost. 13 years ago
rmackay9 54a0709759 ArduCopter - add includes for new AP_Motors classes. 13 years ago
Andrew Tridgell c0a54762c6 MAVLink: port the new adaptive flow control to ArduCopter 13 years ago
rmackay9 75d7308fb4 ArduCopter - CH6 tuning - changed Roll/Pitch Rate D tuning to use the user supplied tuning range instead of the range / 100. 13 years ago
Andrew Tridgell e0bb7e2777 MAVLink: don't waste 100 bytes of bandwidth sending 1 byte of information 13 years ago
Andrew Tridgell 7634f541b9 ACM: use set_blocking_writes(false) when we arm motors 13 years ago
Andrew Tridgell b4107d35e8 MAVLink: raise the serial transmit buffer size to 256 bytes 13 years ago
Andrew Tridgell 0bc604f030 ACM: removed FORCE_AUTOMATIC_DECLINATION_UPDATE 13 years ago
Adam M Rivera 51b70e4d36 ArduCopter: Changed implementation of configuration value for automatic declination. There is now a FORCE_AUTOMATIC_DECLINATION_UPDATE that when enabled will update the declination on every GPS 3D fix regardless of whether or not the user saved a value to the EEPROM. By default the declination will only be set by the automatic declination routine if the user has not saved a declination to the EEPROM. 13 years ago
rmackay9 0efb0e5b4d ArduCopter - added CH6_STABILIZE_KD tuning value 13 years ago
rmackay9 599cea21bb Added multiple new tuning parameters to the inflight channel 6 tuning feature: 13 years ago
Andrew Tridgell 34506b170f Mavlink: fixed warnings about limits on int32 values 13 years ago
Andrew Tridgell e0c9ab5a29 ACM: fixed heli build 13 years ago
Andrew Tridgell 47f9dfd125 ACM: fixed the build on the 1280 13 years ago
Andrew Tridgell e956e21e7d ACM: enable the new compass offset nulling in ACM 13 years ago
rmackay9 1f4cfb9333 ArduCopter - added PID log type. Implemented for Yaw stabilize and rate controllers. 13 years ago
rmackay9 67cf7b9eed ArduCopter - updated firmware version to 2.5.3 13 years ago
rmackay9 63b96c0153 ArduCopter - altitude hold - ensure throttle_avg is initialised from g.throttle_cruise parameter 13 years ago
rmackay9 89576a281a ArduCopter - updated to firmware version to 2.5.2 to avoid confusion with post 2.5.1 versions posted to downloads area 13 years ago
Robert Lefebvre 84d8414a2e Fix Auto_Trim to allow it to actually be called when setup on Ch7 pulldown menu in MP. 13 years ago
Jason Short e2560c5865 Throttle_hold was in APM_Config - which is ignored by the Mission planner Hex generator 13 years ago
rmackay9 ad4a2aa9f3 ArduCopter - motors_quad.pde - corrected test sequence for + configuration 13 years ago
rmackay9 66c4f752e3 ArduCopter - navigation - corrected comment in check_missed_wp function to clarify that you've passed the waypoint when the direction to the way point is more than 100 degrees off (not 10 degrees off) from your original bearing towards the waypoint 13 years ago
rmackay9 1dd554c333 ArduCopter - updated version to 2.5.1 13 years ago
rmackay9 0773a25b5d ArduCopter - increased default THROTTLE_CRUISE to 450 13 years ago
rmackay9 22315cd41a ArduCopter - Navigation.pde - corrected comment re wp_distance and get_distance to clarify that they are in cm (not meters!) 13 years ago
Andrew Tridgell 458d55e5bc MAVLink: constrain variable changes to the datatype range 13 years ago
Andrew Tridgell 547b4ed55b AHRS: adapt ArduCopter for new AHRS framework 13 years ago
Jason Short c5344a2a85 ACM: Arducopter.pde - Added a constraint to the NO_NAV mode to be similar to the Loiter and rate nav modes. 13 years ago
Jason Short a0717f082e ACM: Attitude.pde - consolidated wind I term resets 13 years ago
Jason Short fe7ca98701 ACM: system.pde - removed reset_nav_I() to consolidate the wind control reset. 13 years ago
rmackay9 9841cb0335 ArduCopter - small change to ensure both roll and pitch commands are zero before switching out of loiter_override (loiter override becomes true when roll+pitch command is greater than 5 degrees and switches back to false when both become zero) 13 years ago
rmackay9 dc92da818c ArduCopter - remove reference to AUTO_RESET_LOITER that is not used anymore 13 years ago
rmackay9 91b2b48fd8 ArduCopter - bug fix to calc_XY_velocity (was using uninitialised last_longitutde and last_latitude for speed calculations) 13 years ago
Jason Short 491af02d8a ACM: Lowered gains from flight tests today with 3DR Quad 13 years ago
Jason Short 427dacba70 ACM: Smoother Speed calcs 13 years ago
Jason Short 3038da1dc3 ACM: Softer Loiter Gains 13 years ago
Jason Short 48a0c9a818 ACM: Small fix to nav_throttle to prevent too fast of a landing. 13 years ago
Jason Short 6201bdb8a7 ACM: Fixed comment 13 years ago
Jason Short 1c0b28c956 Fixed Scaling bug in Sonar mixing 13 years ago