22 lines
390 B
C
22 lines
390 B
C
#ifndef __MS5607_H__
|
|
#define __MS5607_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
#include "comm_types.h"
|
|
|
|
#define MS5607_ADDRESS 0x77<<1
|
|
|
|
void MS56XX_Init(void);
|
|
uint8_t MS56XX_GetPressureTemp (float *Temp, float *Press);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__ __MS5607_H__ */
|
|
|