Add preliminary support for HMC5883L magnetometer and MPL3115A2 altimeter.

Logging only, at this stage.
This commit is contained in:
2014-11-23 18:54:11 +00:00
parent 56de69735f
commit 8b3ff9feba
11 changed files with 329 additions and 11 deletions

10
hmc5883l.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __HMC5883L_H
#define __HMC5883L_H
#include "types.h"
bool hmc5883l_init(void);
bool hmc5883l_start_sample(void);
void hmc5883l_write_log(void);
#endif /* __HMC5883L_H */