source: rtems/c/src/lib/libbsp/m32c/m32cbsp/include/bsp.h @ 0758923

4.115
Last change on this file since 0758923 was 0758923, checked in by Joel Sherrill <joel.sherrill@…>, on 03/17/14 at 18:25:47

m32cbsp/include/bsp.h: Remove rtems_bsp_delay()

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