source: rtems/bsps/moxie/moxiesim/include/bsp.h @ c991eeec

5
Last change on this file since c991eeec was c991eeec, checked in by Sebastian Huber <sebastian.huber@…>, on 03/04/19 at 14:32:15

bsps: Adjust bsp.h Doxygen groups

Update #3706.

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