source: rtems/c/src/lib/libbsp/m68k/mcf52235/include/tm27.h @ e327e69

4.115
Last change on this file since e327e69 was e327e69, checked in by Cynthia Rempel <cynt6007@…>, on 01/09/14 at 22:05:54

libbsp tm27.h: Add Doxygen file header to all tm27.h

  • Property mode set to 100644
File size: 759 bytes
Line 
1/*
2 * @file
3 * @ingroup m68k_mcf52235
4 * @brief Implementations for interrupt mechanisms for Time Test 27
5 */
6
7/*
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 */
12
13#ifndef _RTEMS_TMTEST27
14#error "This is an RTEMS internal file you must not include directly."
15#endif
16
17#ifndef __tm27_h
18#define __tm27_h
19
20/*
21 *  Stuff for Time Test 27
22 *  Don't bother with hardware -- just use a software-interrupt
23 */
24
25#define MUST_WAIT_FOR_INTERRUPT 0
26
27#define Install_tm27_vector( handler ) set_vector( (handler), 35, 1 )
28
29#define Cause_tm27_intr()       asm volatile ("trap #3");
30
31#define Clear_tm27_intr() /* empty */
32
33#define Lower_tm27_intr() /* empty */
34
35#endif
Note: See TracBrowser for help on using the repository browser.