source: rtems/c/src/lib/libbsp/m68k/av5282/include/tm27.h @ 7388557

4.115
Last change on this file since 7388557 was 7388557, checked in by Toma Radu <radustoma@…>, on 01/03/14 at 20:18:58

av5282: Improve Doxygen

Add doxygen to the header files in the av5282/include directory.

  • Property mode set to 100644
File size: 729 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup m68k_av5282
5 *
6 * @brief Time Test 27 routines.
7 */
8
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 _RTEMS_TMTEST27
16#error "This is an RTEMS internal file you must not include directly."
17#endif
18
19#ifndef __tm27_h
20#define __tm27_h
21
22/*
23 *  Stuff for Time Test 27
24 *  Don't bother with hardware -- just use a software-interrupt
25 */
26
27#define MUST_WAIT_FOR_INTERRUPT 0
28
29#define Install_tm27_vector( handler ) set_vector( (handler), 35, 1 )
30
31#define Cause_tm27_intr()       asm volatile ("trap #3");
32
33#define Clear_tm27_intr() /* empty */
34
35#define Lower_tm27_intr() /* empty */
36
37#endif
Note: See TracBrowser for help on using the repository browser.