Subversion Repositories Projects

Rev

Rev 2194 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2194 Rev 2198
Line 5... Line 5...
5
 
5
 
6
Released under GPLv3.
6
Released under GPLv3.
7
Please refer to LICENSE file for licensing information.
7
Please refer to LICENSE file for licensing information.
Line -... Line 8...
-
 
8
*/
-
 
9
 
-
 
10
//############################################################################
-
 
11
//# HISTORY  bmp085.c
-
 
12
//#
-
 
13
//# 19.09.2015 cebra
-
 
14
//# - add: Library für BMP085/BMP180 Luftdrucksensor, GY-87 Sensorboard
-
 
15
//#
-
 
16
//############################################################################
-
 
17
 
-
 
18
 
-
 
19
 
-
 
20
 
-
 
21
 
-
 
22
 
-
 
23
 
-
 
24
 
Line 8... Line 25...
8
*/
25
 
9
 
26
#ifdef USE_KOMPASS
10
 
27
 
11
#include <stdio.h>
28
#include <stdio.h>
Line 202... Line 219...
202
        for (i=0; i<BMP085_AVARAGECOEF; i++) {
219
        for (i=0; i<BMP085_AVARAGECOEF; i++) {
203
                bmp085_getrawpressure();
220
                bmp085_getrawpressure();
204
        }
221
        }
205
        #endif
222
        #endif
206
}
223
}
-
 
224
#endif