- Timestamp:
- Apr 27, 2017, 5:37:41 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ReleaseNotes
r167 r176 1 1 * Actual Version: 2 2 3 - resolved https://devel.hds.utc.fr/software/flair/ticket/18 3 4 - Vector2D and Vector3D are now templates. Replace all Vector2D to Vector2Df and Vector3D to Vector3Df to keep compatibility. 4 5 - resolved https://devel.hds.utc.fr/software/flair/ticket/17 -
trunk/lib/FlairMeta/src/UavStateMachine.cpp
r167 r176 720 720 } 721 721 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()); 723 724 724 725 return true;
Note:
See TracChangeset
for help on using the changeset viewer.