Aktuální adresář: FITkit /
trunk /
mcu /
libfitkit /
timer_b.h
1 /*******************************************************************************
2 timer_b.h:
3 Copyright (C) 2009 Brno University of Technology,
4 Faculty of Information Technology
5
6 LICENSE TERMS
7
8 Redistribution and use in source and binary forms, with or without
9 modification, are permitted provided that the following conditions
10 are met:
11 1. Redistributions of source code must retain the above copyright
12 notice, this list of conditions and the following disclaimer.
13 2. Redistributions in binary form must reproduce the above copyright
14 notice, this list of conditions and the following disclaimer in
15 the documentation and/or other materials provided with the
16 distribution.
17 3. All advertising materials mentioning features or use of this software
18 or firmware must display the following acknowledgement:
19
20 This product includes software developed by the University of
21 Technology, Faculty of Information Technology, Brno and its
22 contributors.
23
24 4. Neither the name of the Company nor the names of its contributors
25 may be used to endorse or promote products derived from this
26 software without specific prior written permission.
27
28 This software or firmware is provided ``as is'', and any express or implied
29 warranties, including, but not limited to, the implied warranties of
30 merchantability and fitness for a particular purpose are disclaimed.
31 In no event shall the company or contributors be liable for any
32 direct, indirect, incidental, special, exemplary, or consequential
33 damages (including, but not limited to, procurement of substitute
34 goods or services; loss of use, data, or profits; or business
35 interruption) however caused and on any theory of liability, whether
36 in contract, strict liability, or tort (including negligence or
37 otherwise) arising in any way out of the use of this software, even
38 if advised of the possibility of such damage.
39
40 $Id$
41
42 *******************************************************************************/
43 #ifndef _TIMERB_H_
44 #define _TIMERB_H_
45
46
47 /**
48
49 **/
50 void timerb_init(void);
51
52 /**
53
54
55 **/
56 void delay_ms(unsigned long msecs);
57
58 #endif /* _TIMERB_H_ */
59