diff --git a/ArduSub/ReleaseNotes.txt b/ArduSub/ReleaseNotes.txt index 8ae9bba6d5..f83c0b1ee0 100644 --- a/ArduSub/ReleaseNotes.txt +++ b/ArduSub/ReleaseNotes.txt @@ -69,7 +69,7 @@ Other changes: - Implement battery failsafe - Implement relay joystick button functions - Add joystick button functions to control servos -- Add joystick button function to toggle between foward/lateral input and roll/pitch input +- Add joystick button function to toggle between forward/lateral input and roll/pitch input - Remove BASE_RESET and BASE_PRESS baro parameters. Barometer reset is now done via mavlink cmd. - Implement parameter reset to defaults via mavlink cmd. - Fixed bug with camera tilt smoothing conflicting with RC_OVERRIDE messages @@ -327,7 +327,7 @@ Changes from 3.3-rc3 b) H_COLYAW param can be float 8) Small Improvements / Bug Fixes: a) reduced spline overshoot after very long track followed by very short track - b) log entire mission to dataflash whenver it's uploaded + b) log entire mission to dataflash whenever it's uploaded c) altitude reported if vehicle takes off before GPS lock d) high speed logging of IMU e) STOP flight mode renamed to BRAKE and aux switch option added @@ -481,7 +481,7 @@ Changes from 3.2-rc7 3) sensor health flags sent to GCS only after initialisation to remove false alerts 4) suppress bad terrain data alerts 5) Bug Fix: - a)PX4 dataflash RAM useage reduced to 8k so it works again + a)PX4 dataflash RAM usage reduced to 8k so it works again ------------------------------------------------------------------ ArduCopter 3.2-rc7 04-Sep-2014 Changes from 3.2-rc6 @@ -708,7 +708,7 @@ ArduCopter 3.1-rc6 16-Nov-2013 Improvements over 3.1-rc5 1) Heli improvements: a) support for direct drive tails (uses TAIL_TYPE and TAIL_SPEED parameters) - b) smooth main rotor ramp-up for those without external govenor (RSC_RAMP_TIME) + b) smooth main rotor ramp-up for those without external governor (RSC_RAMP_TIME) c) internal estimate of rotor speed configurable with RSC_RUNUP_TIME parameter to ensure rotor at top speed before starting missions d) LAND_COL_MIN collective position used when landed (reduces chance copter will push too hard into the ground when landing or before starting missions) e) reduced collective while in stabilize mode (STAB_COL_MIN, STAB_COL_MAX) for more precise throttle control @@ -843,7 +843,7 @@ Improvements over 3.0.0-rc3 6) RTL returns to initial yaw heading before descending 7) safe features: i) check for gps lock when entering failsafe - ii) pre-arm check for mag field lenght + ii) pre-arm check for mag field length iii) pre-arm check for board voltage between 4.5v ~ 5.8V iv) beep twice during arming v) GPS failsafe enabled by default (will LAND if loses GPS in Loiter, AUTO, Guided modes) @@ -943,7 +943,7 @@ Improvements over 2.9-rc3: ArduCopter 2.9-rc3 11-Jan-2013 Improvements over 2.9-rc2: 1) alt hold with sonar improvements - now on by default (Leonard/Randy) -2) performance and memory useage improvements (Tridge/Randy) +2) performance and memory usage improvements (Tridge/Randy) 3) increase APM1 baro pressure read from 5hz to 8.3hz to improve alt hold (Randy) 4) bug fix: altitude error reported to GCS (Randy) 5) limit inertial nav's max accel offset correction to 100cm/s/s to speed up recovery after hard impacts (Randy)_ diff --git a/ArduSub/commands_logic.cpp b/ArduSub/commands_logic.cpp index 2982ba39fe..b154a59ba7 100644 --- a/ArduSub/commands_logic.cpp +++ b/ArduSub/commands_logic.cpp @@ -163,7 +163,7 @@ bool Sub::start_command(const AP_Mission::Mission_Command& cmd) // Verify command Handlers /********************************************************************************/ -// check to see if current command goal has been acheived +// check to see if current command goal has been achieved // called by mission library in mission.update() bool Sub::verify_command_callback(const AP_Mission::Mission_Command& cmd) { diff --git a/ArduSub/defines.h b/ArduSub/defines.h index a58720cce1..c73b68f008 100644 --- a/ArduSub/defines.h +++ b/ArduSub/defines.h @@ -282,7 +282,7 @@ enum RTLState { // Leak failsafe definitions (FS_LEAK_ENABLE parameter) #define FS_LEAK_DISABLED 0 // Disabled -#define FS_LEAK_WARN_ONLY 1 // Only send waring to gcs +#define FS_LEAK_WARN_ONLY 1 // Only send warning to gcs #define FS_LEAK_SURFACE 2 // Switch to surface mode // Internal pressure failsafe threshold (FS_PRESS_MAX parameter) diff --git a/ArduSub/failsafe.cpp b/ArduSub/failsafe.cpp index 59b47cdb30..215cac7f1f 100644 --- a/ArduSub/failsafe.cpp +++ b/ArduSub/failsafe.cpp @@ -287,7 +287,7 @@ void Sub::failsafe_internal_temperature_check() } } -// Check if we are leaking and perform appropiate action +// Check if we are leaking and perform appropriate action void Sub::failsafe_leak_check() { bool status = leak_detector.get_status(); diff --git a/ArduSub/flight_mode.cpp b/ArduSub/flight_mode.cpp index 9070a5ac71..e222394820 100644 --- a/ArduSub/flight_mode.cpp +++ b/ArduSub/flight_mode.cpp @@ -1,7 +1,7 @@ #include "Sub.h" // change flight mode and perform any necessary initialisation -// returns true if mode was succesfully set +// returns true if mode was successfully set bool Sub::set_mode(control_mode_t mode, mode_reason_t reason) { // boolean to record if flight mode could be set diff --git a/ArduSub/system.cpp b/ArduSub/system.cpp index 6e08b87dec..3b3f80ed06 100644 --- a/ArduSub/system.cpp +++ b/ArduSub/system.cpp @@ -229,7 +229,7 @@ void Sub::startup_INS_ground() ahrs.reset(); } -// calibrate gyros - returns true if succesfully calibrated +// calibrate gyros - returns true if successfully calibrated bool Sub::calibrate_gyros() { // gyro offset calibration