source: rtems/bsps/sparc64/niagara/include/bsp.h @ 828276b

5
Last change on this file since 828276b 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: 1.2 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSBSPsSPARC64Niagara
5 *
6 * @brief Global BSP definitions.
7 */
8
9/*  bsp.h
10 *
11 *  This include file contains all SPARC64 simulator definitions.
12 *
13 *  COPYRIGHT (c) 1989-1998. On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20#ifndef LIBBSP_SPARC64_NIAGARA_BSP_H
21#define LIBBSP_SPARC64_NIAGARA_BSP_H
22
23/**
24 * @defgroup RTEMSBSPsSPARC64Niagara Niagara
25 *
26 * @ingroup RTEMSBSPsSPARC64
27 *
28 * @brief Niagara
29 *
30 * @{
31 */
32
33#include <bspopts.h>
34#include <bsp/default-initial-extension.h>
35
36#include <rtems.h>
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42/* support for simulated clock tick */
43/*
44void *clock_driver_sim_idle_body(uintptr_t);
45#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
46*/
47
48/* this should be defined somewhere */
49rtems_isr_entry set_vector(                     /* returns old vector */
50    rtems_isr_entry     handler,                /* isr routine        */
51    rtems_vector_number vector,                 /* vector number      */
52    int                 type                    /* RTEMS or RAW intr  */
53);
54
55#ifdef __cplusplus
56}
57#endif
58
59/** @} */
60
61#endif
Note: See TracBrowser for help on using the repository browser.