23 lines
404 B
C
23 lines
404 B
C
#ifndef __MS5607_H__
|
|
#define __MS5607_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "main.h"
|
|
#include "comm_types.h"
|
|
#include "cmsis_os.h"
|
|
|
|
#define MS5607_ADDRESS 0x77<<1
|
|
|
|
void MS56XX_Init(void);
|
|
HAL_StatusTypeDef MS56XX_GetPressure(float *Press);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__ __MS5607_H__ */
|
|
|