source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/include/bsp.h @ ae55da72

4.115
Last change on this file since ae55da72 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all board IO definitions.
4 *
5 *  XXX : put yours in here
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 */
14
15#ifndef _BSP_H
16#define _BSP_H
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#include <bspopts.h>
23
24#include <rtems.h>
25#include <rtems/console.h>
26#include <rtems/clockdrv.h>
27
28/*
29 *  Simple spin delay in microsecond units for device drivers.
30 *  This is very dependent on the clock speed of the target.
31 */
32
33#define rtems_bsp_delay( microseconds ) \
34  { \
35  }
36
37/* functions */
38
39rtems_isr_entry set_vector(                     /* returns old vector */
40  rtems_isr_entry     handler,                  /* isr routine        */
41  rtems_vector_number vector,                   /* vector number      */
42  int                 type                      /* RTEMS or RAW intr  */
43);
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif
Note: See TracBrowser for help on using the repository browser.