source: rtems/c/src/lib/libbsp/avr/avrtest/include/bsp.h @ 3324383c

4.115
Last change on this file since 3324383c was 053abcda, checked in by Joel Sherrill <joel.sherrill@…>, on 04/23/14 at 23:38:43

multiple BSPs: Remove BSP_SMALL_MEMORY

  • Property mode set to 100644
File size: 767 bytes
Line 
1/*  bsp.h
2 *
3 *  This include file contains some definitions specific to the
4 *  h8 simulator in gdb.
5 *
6 *  COPYRIGHT (c) 1989-1999.
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
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#ifndef _BSP_H
15#define _BSP_H
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21#include <bspopts.h>
22#include <bsp/default-initial-extension.h>
23
24#include <rtems.h>
25#include <rtems/iosupp.h>
26#include <rtems/console.h>
27#include <rtems/clockdrv.h>
28
29/* support for simulated clock tick */
30Thread clock_driver_sim_idle_body(uintptr_t);
31#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif
Note: See TracBrowser for help on using the repository browser.