arm: gdbarmsim: Add doxygen

This commit is contained in:
Chirayu Desai
2013-12-07 19:34:07 +05:30
committed by Gedare Bloom
parent cfeb191e9d
commit 0e8cfdef5d
2 changed files with 31 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
/**
* @file
*
* @ingroup arm_gdbarmsim
*
* @brief Global BSP definitions.
*/
/*
* COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
@@ -22,10 +30,24 @@ extern "C" {
#include <rtems/console.h>
#include <rtems/clockdrv.h>
/* support for simulated clock tick */
/**
* @defgroup arm_gdbarmsim GDBARMSIM Support
*
* @ingroup bsp_arm
*
* @brief GDBARMSIM support package.
*
* @{
*/
/**
* @brief Support for simulated clock tick
*/
Thread clock_driver_sim_idle_body(uintptr_t);
#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
/** @} */
#ifdef __cplusplus
}
#endif

View File

@@ -1,3 +1,11 @@
/**
* @file
*
* @ingroup arm_gdbarmsim
*
* @brief Software interrupt definitions.
*/
/*
* Copied from libgloss 1 Oct 2009.
* Minor modifications to work with RTEMS.