Skip to content
Snippets Groups Projects
Commit d3d68c87 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

doc: use @brief for single defines

parent ae8dd908
No related branches found
No related tags found
No related merge requests found
...@@ -33,12 +33,12 @@ extern "C" { ...@@ -33,12 +33,12 @@ extern "C" {
#endif #endif
/** /**
* @name The nominal CPU core clock in this board * @brief The nominal CPU core clock in this board
*/ */
#define F_CPU (96000000) #define F_CPU (96000000)
/** /**
* @name Assign the peripheral timer to be used as hardware timer * @brief Assign the peripheral timer to be used as hardware timer
*/ */
#define HW_TIMER TIMER_0 #define HW_TIMER TIMER_0
...@@ -89,7 +89,7 @@ extern "C" { ...@@ -89,7 +89,7 @@ extern "C" {
/** @} */ /** @} */
/** /**
* @name define radio packet length * @brief define radio packet length
*/ */
typedef uint8_t radio_packet_length_t; typedef uint8_t radio_packet_length_t;
......
...@@ -34,7 +34,7 @@ extern "C" { ...@@ -34,7 +34,7 @@ extern "C" {
#define F_CPU (16000000UL) #define F_CPU (16000000UL)
/** /**
* @name Assign the hardware timer * @brief Assign the hardware timer
*/ */
#define HW_TIMER TIMER_0 #define HW_TIMER TIMER_0
......
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
* @author Hauke Petersen <hauke.petersen@fu-berlin.de> * @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/ */
#ifndef CPUCONF_H_ #ifndef __CPU_CONF_H
#define CPUCONF_H_ #define __CPU_CONF_H
#include "stm32f10x.h" #include "stm32f10x.h"
...@@ -56,12 +56,12 @@ extern "C" { ...@@ -56,12 +56,12 @@ extern "C" {
/** @} */ /** @} */
/** /**
* @name Length for reading CPU_ID * @brief Length for reading CPU_ID
*/ */
#define CPUID_ID_LEN (12) #define CPUID_ID_LEN (12)
/** /**
* @name Definition of different panic modes * @brief Definition of different panic modes
*/ */
typedef enum { typedef enum {
HARD_FAULT, HARD_FAULT,
......
...@@ -31,7 +31,7 @@ extern "C" { ...@@ -31,7 +31,7 @@ extern "C" {
#include "periph/i2c.h" #include "periph/i2c.h"
/** /**
* @name The sensors default I2C address * @brief The sensors default I2C address
*/ */
#define LPS331AP_DEFAULT_ADDRESS 0x5c #define LPS331AP_DEFAULT_ADDRESS 0x5c
......
...@@ -29,7 +29,7 @@ extern "C" { ...@@ -29,7 +29,7 @@ extern "C" {
#endif #endif
/** /**
* @name Descriptor struct for rgbleds * @brief Descriptor struct for rgbleds
*/ */
typedef struct { typedef struct {
pwm_t device; pwm_t device;
......
...@@ -28,7 +28,7 @@ extern "C" { ...@@ -28,7 +28,7 @@ extern "C" {
#endif #endif
/** /**
* @name Descriptor struct for a servo * @brief Descriptor struct for a servo
*/ */
typedef struct { typedef struct {
pwm_t device; /**< the PWM device driving the servo */ pwm_t device; /**< the PWM device driving the servo */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment