Index: firmware/App/Controllers/Switches.c =================================================================== diff -u -r4599c60774ea725ba8c7dbbdc4c0c712d676aba9 -rce619800f4315d7e7fb07da21f10f4f6bad229fc --- firmware/App/Controllers/Switches.c (.../Switches.c) (revision 4599c60774ea725ba8c7dbbdc4c0c712d676aba9) +++ firmware/App/Controllers/Switches.c (.../Switches.c) (revision ce619800f4315d7e7fb07da21f10f4f6bad229fc) @@ -15,7 +15,6 @@ * ***************************************************************************/ - #include "FPGA.h" #include "MessageSupport.h" #include "Switches.h" @@ -46,7 +45,7 @@ static U32 switchesDataPublicationCounter; ///< Switches data publication counter. static OVERRIDE_U32_T switchesDataPublishInterval = { SWITCHES_DATA_PUB_INTERVAL, SWITCHES_DATA_PUB_INTERVAL, 0, 0 }; ///< Interval (in ms) at which to publish switches data to CAN bus. -static SWITCH_STATUS_T switchesStatus[ NUM_OF_CAPS ]; ///< Switches status array. +static SWITCH_STATUS_T switchesStatus[ NUM_OF_CAPS ]; ///< Switches status array. // ********** private function prototypes ********** Index: firmware/App/Controllers/Switches.h =================================================================== diff -u -r4599c60774ea725ba8c7dbbdc4c0c712d676aba9 -rce619800f4315d7e7fb07da21f10f4f6bad229fc --- firmware/App/Controllers/Switches.h (.../Switches.h) (revision 4599c60774ea725ba8c7dbbdc4c0c712d676aba9) +++ firmware/App/Controllers/Switches.h (.../Switches.h) (revision ce619800f4315d7e7fb07da21f10f4f6bad229fc) @@ -31,11 +31,7 @@ */ // ********** public definitions ********** -/**@}*/ -/** - * @addtogroup Switches - * @{ - */ + /// DG doors and caps enumeration typedef enum switches_names { @@ -44,8 +40,6 @@ NUM_OF_CAPS ///< Number of doors and caps } SWITCH_T; -/**@}*/ - /// DG doors and caps data publish structure typedef struct { @@ -66,4 +60,6 @@ BOOL testSetSwitchesStatusOverride( U32 switchId, U32 status ); BOOL testResetSwitchesStatusOverride( U32 switchId ); -#endif /* APP_CONTROLLERS_SWITCHES_H_ */ +/**@}*/ + +#endif