17 lines
283 B
C
17 lines
283 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "device/at9s_pro.h"
|
|
int8_t HeightEstimation_Init(float freq);
|
|
int8_t HeightEstimation_GetHeight(float *heightout, float *velocityout, float accl_z);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|