Changeset 62 in flair-dev for trunk/include/FlairFilter
- Timestamp:
- Jan 9, 2018, 11:44:14 AM (7 years ago)
- Location:
- trunk/include/FlairFilter
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairFilter/AhrsComplementaryFilter.h
r50 r62 24 24 namespace gui { 25 25 class DoubleSpinBox; 26 class Vector3DSpinBox; 26 27 } 27 28 } … … 69 70 gui::DoubleSpinBox *ka[3]; 70 71 gui::DoubleSpinBox *kb[3]; 72 gui::DoubleSpinBox *km[3]; 73 gui::Vector3DSpinBox *magRef; 71 74 }; 72 75 } // end namespace filter -
trunk/include/FlairFilter/PidThrust.h
r13 r62 55 55 56 56 /*! 57 * \brief Reset integral and offset to 058 *59 */60 void Reset(void);61 62 /*!63 57 * \brief Reset integral to 0 64 58 * … … 67 61 68 62 /*! 69 * \brief Reset offset to 063 * \brief Set offset to a specified value 70 64 * 65 * \param value desired value 71 66 */ 72 void ResetOffset(void);73 67 void SetOffset(float value); 68 74 69 /*! 75 70 * \brief Set offset to specified value in ground station 76 71 * 77 72 */ 78 void Set Offset(void);73 void SetDefaultOffset(void); 79 74 80 75 /*! -
trunk/include/FlairFilter/TrajectoryGenerator1D.h
r50 r62 127 127 * \brief Position 128 128 * 129 * \return the actual position 129 130 */ 130 131 float Position(void) const; … … 133 134 * \brief Speed 134 135 * 136 * \return the actual speed 135 137 */ 136 138 float Speed(void) const; 139 140 /*! 141 * \brief Get percentage of completion 142 * 143 * Value is between 0 and 100. 144 * 145 * \return the percentage of completion (in position) 146 */ 147 float GetPercentageOfCompletion(void) const; 137 148 138 149 /*!
Note:
See TracChangeset
for help on using the changeset viewer.