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

delay.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 /*
00027    avr/delay.h - loops for small accurate delays
00028  */
00029 
00030 #ifndef _AVR_DELAY_H_
00031 #define _AVR_DELAY_H_ 1
00032 
00033 /* 8-bit count, 3 cycles/loop */
00034 static inline void
00035 _delay_loop_1(unsigned char __count)
00036 {
00037         asm volatile (
00038                 "1: dec %0" "\n\t"
00039                 "brne 1b"
00040                 : "=r" (__count)
00041                 : "0" (__count)
00042         );
00043 }
00044 
00045 /* 16-bit count, 4 cycles/loop */
00046 static inline void
00047 _delay_loop_2(unsigned int __count)
00048 {
00049         asm volatile (
00050                 "1: sbiw %0,1" "\n\t"
00051                 "brne 1b"
00052                 : "=w" (__count)
00053                 : "0" (__count)
00054         );
00055 }
00056 
00057 /* TODO: macros to allow specifying delays directly in microseconds
00058    (with MCU clock frequency defined by the user).  With constant
00059    delays, all floating point math would be done at compile time.  */
00060 
00061 #endif /* _AVR_DELAY_H_ */

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