Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2204 | - | 1 | /************************************* |
2 | * File: timer.h |
||
3 | * Purpose: header of timer.c |
||
4 | **************************************/ |
||
5 | #ifndef TIMER_H |
||
6 | #define TIMER_H |
||
7 | |||
8 | #include <stdlib.h> |
||
9 | #include <avr/io.h> |
||
10 | #include <avr/interrupt.h> |
||
11 | #include <stdio.h> |
||
12 | |||
13 | extern void init_Timer0(void); |
||
14 | extern unsigned char Flag2ms(void); |
||
15 | |||
16 | #endif |
||
17 | // ************************************* |