Subversion Repositories FlightCtrl

Rev

Rev 935 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 935 Rev 936
1
#ifndef _TIMER2_H
1
#ifndef _TIMER2_H
2
#define _TIMER2_H
2
#define _TIMER2_H
3
 
3
 
4
#include <inttypes.h>
4
#include <inttypes.h>
5
 
5
 
-
 
6
extern volatile uint16_t ServoValue;
6
extern volatile int16_t ServoValue;
7
 
7
extern void TIMER2_Init(void);
8
void TIMER2_Init(void);
8
 
9
 
9
 
10
 
10
 
11
 
11
#endif //_TIMER2_H
12
#endif //_TIMER2_H
12
 
13
 
13
 
14