diff --git a/doc/manual/style.dox b/doc/manual/style.dox index a3aa6167ba..09de324ca6 100644 --- a/doc/manual/style.dox +++ b/doc/manual/style.dox @@ -116,8 +116,6 @@ So use @c #if not @c #ifdef to turn a feature on or off. This works fine, and do The following sections provide guidelines for Paparazzi developers who wish to write Doxygen comments in the code or this manual. -For an introduction to Doxygen documentation, -see the @ref primerdoxygen. @section styledoxyblocks Doxygen Block Selection diff --git a/sw/airborne/state.h b/sw/airborne/state.h index 6ea61e33e0..11126ae572 100644 --- a/sw/airborne/state.h +++ b/sw/airborne/state.h @@ -351,10 +351,9 @@ struct State { /** @}*/ - /** @defgroup state_attitude - * @{ */ + /** @defgroup state_attitude Attitude representations + */ struct OrientationReps ned_to_body_orientation; - /** @}*/ /** @addtogroup state_rate @@ -433,6 +432,9 @@ extern struct State state; extern void stateInit(void); +/** @addtogroup state_position + * @{ */ + /// Set the local (flat earth) coordinate frame origin (int). static inline void stateSetLocalOrigin_i(struct LtpDef_i* ltp_def) { LTP_DEF_COPY(state.ned_origin_i, *ltp_def); @@ -478,8 +480,6 @@ static inline void stateSetLocalUtmOrigin_f(struct UtmCoor_f* utm_def) { * Set and Get functions for the POSITION representations * * * ******************************************************************************/ -/** @addtogroup state_position - * @{ */ /************* declaration of transformation functions ************/ extern void stateCalcPositionEcef_i(void);