source: rtems/bsps/powerpc/t32mppc/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: 1.0 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSBSPsPowerPCT32MPPC
5 *
6 * @brief Global BSP definitions.
7 */
8
9/*
10 * Copyright (c) 2012, 2017 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
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_POWERPC_T32MPPC_BSP_H
24#define LIBBSP_POWERPC_T32MPPC_BSP_H
25
26/**
27 * @defgroup RTEMSBSPsPowerPCT32MPPC t32mppc
28 *
29 * @ingroup RTEMSBSPsPowerPC
30 *
31 * @brief Lauterbach Trace32 Board Support Package.
32 *
33 * @{
34 */
35
36#include <bspopts.h>
37
38#ifndef ASM
39
40#include <rtems.h>
41
42#include <bsp/default-initial-extension.h>
43
44#ifdef __cplusplus
45extern "C" {
46#endif /* __cplusplus */
47
48#define BSP_FEATURE_IRQ_EXTENSION
49
50extern uint32_t bsp_time_base_frequency;
51
52void t32mppc_decrementer_dispatch(void);
53
54#endif /* ASM */
55
56#ifdef __cplusplus
57}
58#endif /* __cplusplus */
59
60/** @} */
61
62#endif /* LIBBSP_POWERPC_T32MPPC_BSP_H */
Note: See TracBrowser for help on using the repository browser.