diff options
Diffstat (limited to 'os/hal/templates/meta/driver.h')
-rw-r--r-- | os/hal/templates/meta/driver.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/os/hal/templates/meta/driver.h b/os/hal/templates/meta/driver.h index 7a54cfcb4..762e54c7c 100644 --- a/os/hal/templates/meta/driver.h +++ b/os/hal/templates/meta/driver.h @@ -18,8 +18,9 @@ */
/**
- * @file xxx.h
- * @brief XXX Driver macros and structures.
+ * @file xxx.h
+ * @brief XXX Driver macros and structures.
+ *
* @addtogroup XXX
* @{
*/
@@ -46,12 +47,12 @@ /*===========================================================================*/
/**
- * @brief Driver state machine possible states.
+ * @brief Driver state machine possible states.
*/
typedef enum {
- XXX_UNINIT = 0, /**< @brief Not initialized. */
- XXX_STOP = 1, /**< @brief Stopped. */
- XXX_READY = 2, /**< @brief Ready. */
+ XXX_UNINIT = 0, /**< @brief Not initialized. */
+ XXX_STOP = 1, /**< @brief Stopped. */
+ XXX_READY = 2, /**< @brief Ready. */
} xxxstate_t;
#include "xxx_lld.h"
|