Main Page   Modules   Data Structures   File List   Data Fields   Globals   Related Pages   Examples  

interrupt.h

00001 /* Copyright (c) 2002, Marek Michalkiewicz
00002    All rights reserved.
00003 
00004    Redistribution and use in source and binary forms, with or without
00005    modification, are permitted provided that the following conditions are met:
00006 
00007    * Redistributions of source code must retain the above copyright
00008      notice, this list of conditions and the following disclaimer.
00009    * Redistributions in binary form must reproduce the above copyright
00010      notice, this list of conditions and the following disclaimer in
00011      the documentation and/or other materials provided with the
00012      distribution.
00013 
00014   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00015   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00016   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00017   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00018   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00019   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00020   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00021   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00022   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00023   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00024   POSSIBILITY OF SUCH DAMAGE. */
00025 
00026 #ifndef _AVR_INTERRUPT_H_
00027 #define _AVR_INTERRUPT_H_
00028 
00029 #include <avr/io.h>
00030 
00037 
00047 #define sei()  __asm__ __volatile__ ("sei" ::)
00048 
00058 #define cli()  __asm__ __volatile__ ("cli" ::)
00059 
00062 #ifdef __cplusplus
00063 extern "C" {
00064 #endif
00065 
00091 
00101 extern inline void enable_external_int (unsigned char ints)
00102 {
00103 #ifdef EIMSK
00104   outb(EIMSK, ints);
00105 #else
00106 #ifdef GIMSK
00107   outb(GIMSK, ints);
00108 #endif
00109 #endif
00110 }
00111 
00119 extern inline void timer_enable_int (unsigned char ints)
00120 {
00121 #ifdef TIMSK
00122   outb(TIMSK, ints);
00123 #endif
00124 }
00125 
00128 #ifdef __cplusplus
00129 }
00130 #endif
00131 
00132 #endif

Generated on Thu Jan 30 22:30:45 2003 for EduNet by doxygen1.2.18