@@ -75,7 +75,7 @@ extern "C" {
7575#endif
7676
7777/**
78- * @addtogroup group_BasicDef
78+ * @addtogroup group_basic_definition
7979 */
8080
8181/**@{*/
@@ -235,7 +235,7 @@ typedef int (*init_fn_t)(void);
235235#endif /* RT_KERNEL_REALLOC */
236236
237237/**
238- * @ingroup group_BasicDef
238+ * @ingroup group_basic_definition
239239 *
240240 * @def RT_IS_ALIGN(addr, align)
241241 * Return true(1) or false(0).
@@ -246,7 +246,7 @@ typedef int (*init_fn_t)(void);
246246#define RT_IS_ALIGN (addr , align ) ((!(addr & (align - 1))) && (addr != RT_NULL))
247247
248248/**
249- * @ingroup group_BasicDef
249+ * @ingroup group_basic_definition
250250 *
251251 * @def RT_ALIGN(size, align)
252252 * Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
@@ -256,7 +256,7 @@ typedef int (*init_fn_t)(void);
256256#define RT_ALIGN (size , align ) (((size) + (align) - 1) & ~((align) - 1))
257257
258258/**
259- * @ingroup group_BasicDef
259+ * @ingroup group_basic_definition
260260 *
261261 * @def RT_ALIGN_DOWN(size, align)
262262 * Return the down number of aligned at specified width. RT_ALIGN_DOWN(13, 4)
@@ -266,7 +266,7 @@ typedef int (*init_fn_t)(void);
266266#define RT_ALIGN_DOWN (size , align ) ((size) & ~((align) - 1))
267267
268268/**
269- * @addtogroup group_KernelObject
269+ * @addtogroup group_kernel_object
270270 */
271271
272272/**@{*/
@@ -515,7 +515,7 @@ struct rt_object_information
515515/**@}*/
516516
517517/**
518- * @addtogroup group_Clock
518+ * @addtogroup group_clock_management
519519 */
520520
521521/**@{*/
@@ -591,7 +591,7 @@ typedef void (*rt_sighandler_t)(int signo);
591591/**@}*/
592592
593593/**
594- * @addtogroup group_Thread
594+ * @addtogroup group_thread_management
595595 */
596596
597597/**@{*/
@@ -964,16 +964,16 @@ typedef struct rt_thread *rt_thread_t;
964964/**@}*/
965965
966966/**
967- * @addtogroup group_IPC
967+ * @addtogroup group_thread_comm
968968 */
969969
970970/**@{*/
971971
972972/**
973973 * IPC flags and control command definitions
974974 */
975- #define RT_IPC_FLAG_FIFO 0x00 /**< FIFOed IPC. @ref group_IPC . */
976- #define RT_IPC_FLAG_PRIO 0x01 /**< PRIOed IPC. @ref group_IPC . */
975+ #define RT_IPC_FLAG_FIFO 0x00 /**< FIFOed IPC. @ref group_thread_comm . */
976+ #define RT_IPC_FLAG_PRIO 0x01 /**< PRIOed IPC. @ref group_thread_comm . */
977977
978978#define RT_IPC_CMD_UNKNOWN 0x00 /**< unknown IPC command */
979979#define RT_IPC_CMD_RESET 0x01 /**< reset IPC object */
@@ -1134,7 +1134,7 @@ typedef struct rt_messagequeue *rt_mq_t;
11341134/**@}*/
11351135
11361136/**
1137- * @addtogroup group_MM
1137+ * @addtogroup group_memory_management
11381138 */
11391139
11401140/**@{*/
0 commit comments