From 150b97879d731b927ebebf0c200ae1fabf9608ce Mon Sep 17 00:00:00 2001 From: Mohamed Seliem Date: Thu, 22 Sep 2016 22:30:54 +0200 Subject: [PATCH] Doxygen Fix this minor fixation to avoid Doxygen bug, which appears when doing this in the documented code: /** * \exception \c text */ void foo(); --- platform/zoul/remote-reva/power-mgmt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/zoul/remote-reva/power-mgmt.h b/platform/zoul/remote-reva/power-mgmt.h index 0504f9dba..6526b1e9b 100644 --- a/platform/zoul/remote-reva/power-mgmt.h +++ b/platform/zoul/remote-reva/power-mgmt.h @@ -152,29 +152,29 @@ typedef enum { * @{ */ /** \brief Initializes the Power Management driver - * \return \c PM_SUCCESS if initialized, else \c PM_ERROR + * \return PM_SUCCESS if initialized, else PM_ERROR */ int8_t pm_init(void); /* -------------------------------------------------------------------------- */ /** \brief Enable the shutdown mode, periodically driven by the Nano Timer - * \return \c PM_SUCCESS if successful, else \c PM_ERROR + * \return PM_SUCCESS if successful, else PM_ERROR */ int8_t pm_enable_timer(void); /* -------------------------------------------------------------------------- */ /** \brief Disable the Nano Timer - * \return \c PM_SUCCESS if successful, else \c PM_ERROR + * \return PM_SUCCESS if successful, else PM_ERROR */ int8_t pm_disable_timer(void); /* -------------------------------------------------------------------------- */ /** \brief Get the current state of the power management module * \param state Pointer to a variable to save the state - * \return \c PM_SUCCESS if successful, else \c PM_ERROR + * \return PM_SUCCESS if successful, else PM_ERROR */ int8_t pm_get_state(uint8_t *state); /* -------------------------------------------------------------------------- */ /** \brief Get the firmware version of the power management module * \param state Pointer to a variable to save the state - * \return \c PM_SUCCESS if successful, else \c PM_ERROR + * \return PM_SUCCESS if successful, else PM_ERROR */ int8_t pm_get_firmware_version(uint8_t *state); /* -------------------------------------------------------------------------- */