Changeset 176 in flair-src for trunk


Ignore:
Timestamp:
04/27/17 17:37:41 (7 years ago)
Author:
Sanahuja Guillaume
Message:

résolution https://devel.hds.utc.fr/software/flair/ticket/18

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ReleaseNotes

    r167 r176  
    11* Actual Version:
    22
     3- resolved https://devel.hds.utc.fr/software/flair/ticket/18
    34- Vector2D and Vector3D are now templates. Replace all Vector2D to Vector2Df and Vector3D to Vector3Df to keep compatibility.
    45- resolved https://devel.hds.utc.fr/software/flair/ticket/17
  • trunk/lib/FlairMeta/src/UavStateMachine.cpp

    r167 r176  
    720720  }
    721721  altitudeMode = newAltitudeMode;
    722   GotoAltitude(desiredTakeoffAltitude->Value());
     722  //avoid starting trajectory at take off (it will be started when altitudeState==AltitudeState_t::Stabilized)
     723  if(altitudeState!=AltitudeState_t::Stopped) GotoAltitude(desiredTakeoffAltitude->Value());
    723724
    724725  return true;
Note: See TracChangeset for help on using the changeset viewer.