mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 18:13:49 +01:00
cpu/msp430: cleanup doxygen grouping
This commit is contained in:
parent
2b3a9d2e82
commit
7222f76ac0
@ -7,20 +7,20 @@
|
|||||||
* directory for more details.
|
* directory for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CPU_H
|
|
||||||
#define CPU_H
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @defgroup cpu_msp430_common TI MSP430
|
* @defgroup cpu_msp430_common TI MSP430
|
||||||
* @ingroup cpu
|
* @ingroup cpu
|
||||||
* @brief Texas Instruments MSP430 specific code
|
* @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 <stdio.h>
|
||||||
|
|
||||||
#include <msp430.h>
|
#include <msp430.h>
|
||||||
@ -163,5 +163,5 @@ static inline void cpu_print_last_instruction(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** @} */
|
|
||||||
#endif /* CPU_H */
|
#endif /* CPU_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
@ -6,6 +6,15 @@
|
|||||||
* directory for more details.
|
* directory for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup cpu_msp430_common
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief Common CPU definitions fpr MSP430
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef CPU_CONF_H
|
#ifndef CPU_CONF_H
|
||||||
#define CPU_CONF_H
|
#define CPU_CONF_H
|
||||||
|
|
||||||
@ -48,3 +57,4 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* CPU_CONF_H */
|
#endif /* CPU_CONF_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
@ -6,6 +6,14 @@
|
|||||||
* directory for more details.
|
* directory for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup cpu_msp430_common
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief basic types for MSP430
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef MSP430_TYPES_H
|
#ifndef MSP430_TYPES_H
|
||||||
#define MSP430_TYPES_H
|
#define MSP430_TYPES_H
|
||||||
|
|
||||||
@ -89,3 +97,4 @@ typedef uint32_t useconds_t; /**< Used for time in microseconds */
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* MSP430_TYPES_H */
|
#endif /* MSP430_TYPES_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup msp430
|
* @ingroup cpu_msp430_common
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
* @file
|
* @file
|
||||||
@ -42,3 +42,4 @@ int getchar(void);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* STDIO_H */
|
#endif /* STDIO_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup msp430
|
* @ingroup cpu_msp430_common
|
||||||
* @{
|
* @{
|
||||||
*
|
*
|
||||||
* @file
|
* @file
|
||||||
@ -38,3 +38,4 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* STDLIB_H */
|
#endif /* STDLIB_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
@ -7,6 +7,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @ingroup cpu_msp430_common
|
||||||
|
*
|
||||||
|
* @{
|
||||||
* @file
|
* @file
|
||||||
* @brief POSIX compatible sys/stat.h definitions
|
* @brief POSIX compatible sys/stat.h definitions
|
||||||
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||||
|
|||||||
@ -7,6 +7,14 @@
|
|||||||
* directory for more details.
|
* directory for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ingroup cpu_msp430_common
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @brief unistd.h wrapper for MSP430
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef UNISTD_H
|
#ifndef UNISTD_H
|
||||||
#define UNISTD_H
|
#define UNISTD_H
|
||||||
|
|
||||||
@ -108,3 +116,4 @@ ssize_t write(int, const void *, size_t);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* UNISTD_H */
|
#endif /* UNISTD_H */
|
||||||
|
/** @} */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user