1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-14 17:13:50 +01:00

cpu/msp430: cleanup doxygen grouping

This commit is contained in:
Alexandre Abadie 2017-08-24 21:03:16 +02:00
parent 2b3a9d2e82
commit 7222f76ac0
7 changed files with 43 additions and 10 deletions

View File

@ -7,20 +7,20 @@
* directory for more details.
*/
#ifndef CPU_H
#define CPU_H
/**
* @defgroup cpu_msp430_common TI MSP430
* @ingroup cpu
* @brief Texas Instruments MSP430 specific code
<h2>First steps</h2>
\li See the <a href="../manual/index.html">manual</a> for toolchain and ide setup
*
* @{
* @file
* @brief Texas Instruments MSP430 specific code
*
*/
#ifndef CPU_H
#define CPU_H
#include <stdio.h>
#include <msp430.h>
@ -163,5 +163,5 @@ static inline void cpu_print_last_instruction(void)
}
#endif
/** @} */
#endif /* CPU_H */
/** @} */

View File

@ -6,6 +6,15 @@
* directory for more details.
*/
/**
* @ingroup cpu_msp430_common
* @{
*
* @file
* @brief Common CPU definitions fpr MSP430
*
*/
#ifndef CPU_CONF_H
#define CPU_CONF_H
@ -48,3 +57,4 @@ extern "C" {
#endif
#endif /* CPU_CONF_H */
/** @} */

View File

@ -6,6 +6,14 @@
* directory for more details.
*/
/**
* @ingroup cpu_msp430_common
* @{
*
* @file
* @brief basic types for MSP430
*/
#ifndef MSP430_TYPES_H
#define MSP430_TYPES_H
@ -89,3 +97,4 @@ typedef uint32_t useconds_t; /**< Used for time in microseconds */
#endif
#endif /* MSP430_TYPES_H */
/** @} */

View File

@ -7,7 +7,7 @@
*/
/**
* @ingroup msp430
* @ingroup cpu_msp430_common
* @{
*
* @file
@ -42,3 +42,4 @@ int getchar(void);
#endif
#endif /* STDIO_H */
/** @} */

View File

@ -7,7 +7,7 @@
*/
/**
* @ingroup msp430
* @ingroup cpu_msp430_common
* @{
*
* @file
@ -38,3 +38,4 @@ extern "C" {
#endif
#endif /* STDLIB_H */
/** @} */

View File

@ -7,6 +7,9 @@
*/
/**
* @ingroup cpu_msp430_common
*
* @{
* @file
* @brief POSIX compatible sys/stat.h definitions
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>

View File

@ -7,6 +7,14 @@
* directory for more details.
*/
/**
* @ingroup cpu_msp430_common
* @{
*
* @file
* @brief unistd.h wrapper for MSP430
*/
#ifndef UNISTD_H
#define UNISTD_H
@ -108,3 +116,4 @@ ssize_t write(int, const void *, size_t);
#endif
#endif /* UNISTD_H */
/** @} */