mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 12:55:19 +03:00
Fixed include in sensors/gyro.h
This commit is contained in:
parent
f6caf34806
commit
adb42e6140
1 changed files with 5 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "config/parameter_group.h"
|
||||
#include "common/axis.h"
|
||||
#include "drivers/sensor.h"
|
||||
|
||||
typedef enum {
|
||||
GYRO_NONE = 0,
|
||||
|
@ -63,8 +64,10 @@ PG_DECLARE(gyroConfig_t, gyroConfig);
|
|||
bool gyroInit(void);
|
||||
void gyroInitFilters(void);
|
||||
void gyroUpdate(void);
|
||||
const mpuConfiguration_t *gyroMpuConfiguration(void);
|
||||
const mpuDetectionResult_t *gyroMpuDetectionResult(void);
|
||||
struct mpuConfiguration_s;
|
||||
const struct mpuConfiguration_s *gyroMpuConfiguration(void);
|
||||
struct mpuDetectionResult_s;
|
||||
const struct mpuDetectionResult_s *gyroMpuDetectionResult(void);
|
||||
void gyroSetCalibrationCycles(void);
|
||||
bool isGyroCalibrationComplete(void);
|
||||
void gyroReadTemperature(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue