/* * This include file contains all board IO definitions. * * BARE : Allows you to build RTEMS with-out any BSP specific stuff * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #ifndef __BARE_BSP_h #define __BARE_BSP_h #ifdef __cplusplus extern "C" { #endif #include #include #include #include /* * Simple spin delay in microsecond units for device drivers. * This is very dependent on the clock speed of the target. */ #define rtems_bsp_delay( microseconds ) \ { \ } /* * Device Driver Table Entries */ /* * NOTE: Use the standard Console driver entry */ /* * NOTE: Use the standard Clock driver entry */ /* functions */ #ifdef __cplusplus } #endif #endif /* end of include file */