source: rtems/c/src/lib/libbsp/bfin/eZKit533/include/tm27.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 876 bytes
Line 
1/**
2 * @file
3 * @ingroup ezkit533_tm27
4 * @brief Interrupt mechanisms for the tm27 test.
5 */
6
7/*
8 *  tm27.h
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.org/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 * @defgroup ezkit533_tm27 TM27 Test Support
24 * @ingroup bfin_ezkit533
25 * @brief Interrupt Mechanisms for TM27
26 * @{
27 */
28
29/*
30 *  Define the interrupt mechanism for Time Test 27
31 */
32
33#define MUST_WAIT_FOR_INTERRUPT 0
34
35#define Install_tm27_vector(handler) \
36{ \
37  set_vector( handler, 0x06, 1 ); \
38}
39
40#define Cause_tm27_intr() __asm__ volatile("raise 0x06;" : :);
41
42#define Clear_tm27_intr() /* empty */
43
44#define Lower_tm27_intr() /* empty */
45
46/** @} */
47
48#endif
Note: See TracBrowser for help on using the repository browser.