Subversion Repositories FlightCtrl

Rev

Rev 1134 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1134 Rev 1139
1
/* altcon.h
1
/* altcon.h
2
 *
2
 *
3
 * Copyright 2009 Thomas Jachmann
3
 * Copyright 2009 Thomas Jachmann
4
 */
4
 */
5
 
5
 
6
#ifndef ALTCON_H
6
#ifndef ALTCON_H
7
#define ALTCON_H
7
#define ALTCON_H
8
 
8
 
9
#define altcon_avgerror()       averageN
9
#define altcon_avgerror()       averageN
10
 
10
 
11
extern int      pressureOffset;
11
extern int      pressureOffset;
12
extern int      averageN;
12
extern int      averageN;
-
 
13
 
13
 
14
extern void altcon_init( void );
14
extern void altcon_start( void );
15
extern void altcon_start( void );
15
extern void altcon_lock( void );
16
extern void altcon_lock( void );
16
extern void altcon_stop( void );
17
extern void altcon_stop( void );
17
extern int altcon_error( void );
18
extern int altcon_error( void );
18
 
19
 
19
#endif // ALTCON_H
20
#endif // ALTCON_H
20
 
21