source: rtems/c/src/lib/libbsp/arm/gdbarmsim/include/bsp.h @ 0e8cfdef

4.115
Last change on this file since 0e8cfdef was 0e8cfdef, checked in by Chirayu Desai <cdesai@…>, on 12/07/13 at 14:04:07

arm: gdbarmsim: Add doxygen

  • Property mode set to 100644
File size: 912 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup arm_gdbarmsim
5 *
6 * @brief Global BSP definitions.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2009.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 */
17
18#ifndef _BSP_H
19#define _BSP_H
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#include <bspopts.h>
26#include <bsp/default-initial-extension.h>
27
28#include <rtems.h>
29#include <rtems/iosupp.h>
30#include <rtems/console.h>
31#include <rtems/clockdrv.h>
32
33/**
34 * @defgroup arm_gdbarmsim GDBARMSIM Support
35 *
36 * @ingroup bsp_arm
37 *
38 * @brief GDBARMSIM support package.
39 *
40 * @{
41 */
42
43/**
44 * @brief Support for simulated clock tick
45 */
46Thread clock_driver_sim_idle_body(uintptr_t);
47#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
48
49/** @} */
50
51#ifdef __cplusplus
52}
53#endif
54
55#endif /* _BSP_H */
56
Note: See TracBrowser for help on using the repository browser.