source: rtems/c/src/lib/libbsp/bare/include/bsp.h @ 283e6f0

4.104.115
Last change on this file since 283e6f0 was 283e6f0, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 15:09:21

2008-09-18 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this is NOT used anywhere.
  • Property mode set to 100644
File size: 987 bytes
RevLine 
[283e6f0]1/*
[bd5e4f3b]2 *  This include file contains all board IO definitions.
3 *
4 *  BARE : Allows you to build RTEMS with-out any BSP specific stuff
5 *
[08311cc3]6 *  COPYRIGHT (c) 1989-1999.
[bd5e4f3b]7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[662175b]11 *  http://www.rtems.com/license/LICENSE.
[bd5e4f3b]12 *
[6128a4a]13 *  $Id$
[bd5e4f3b]14*/
15
16#ifndef __BARE_BSP_h
17#define __BARE_BSP_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
[69e93d8]23#include <bspopts.h>
24
[bd5e4f3b]25#include <rtems.h>
[0a0d67c5]26#include <rtems/console.h>
27#include <rtems/clockdrv.h>
[bd5e4f3b]28
29/*
30 *  Simple spin delay in microsecond units for device drivers.
31 *  This is very dependent on the clock speed of the target.
32 */
33
[cf282090]34#define rtems_bsp_delay( microseconds ) \
[bd5e4f3b]35  { \
36  }
37
38/*
39 *  Device Driver Table Entries
40 */
41
42/*
43 * NOTE: Use the standard Console driver entry
44 */
[6128a4a]45
[bd5e4f3b]46/*
47 * NOTE: Use the standard Clock driver entry
48 */
49
50/* functions */
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif
57/* end of include file */
Note: See TracBrowser for help on using the repository browser.