2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
23 #include "common/time.h"
25 #include "drivers/accgyro/accgyro.h"
26 #include "sensors/sensors.h"
28 // Type of accelerometer used/detected
47 } accelerationSensor_e
;
49 typedef struct acc_s
{
51 uint32_t accSamplingInterval
;
52 float accADC
[XYZ_AXIS_COUNT
];
53 bool isAccelUpdatedAtLeastOnce
;
58 typedef struct rollAndPitchTrims_s
{
61 } rollAndPitchTrims_t_def
;
63 typedef union rollAndPitchTrims_u
{
65 rollAndPitchTrims_t_def values
;
66 } rollAndPitchTrims_t
;
69 typedef struct accelerometerConfig_s
{
70 uint16_t acc_lpf_hz
; // cutoff frequency for the low pass filter used on the acc z-axis for althold in Hz
71 uint8_t acc_hardware
; // Which acc hardware to use on boards with more than one device
73 flightDynamicsTrims_t accZero
;
74 rollAndPitchTrims_t accelerometerTrims
;
75 } accelerometerConfig_t
;
77 PG_DECLARE(accelerometerConfig_t
, accelerometerConfig
);
80 bool accInit(uint32_t gyroTargetLooptime
);
81 bool accIsCalibrationComplete(void);
82 void accSetCalibrationCycles(uint16_t calibrationCyclesRequired
);
83 void resetRollAndPitchTrims(rollAndPitchTrims_t
*rollAndPitchTrims
);
84 void accUpdate(timeUs_t currentTimeUs
, rollAndPitchTrims_t
*rollAndPitchTrims
);
85 bool accGetAccumulationAverage(float *accumulation
);
86 union flightDynamicsTrims_u
;
87 void setAccelerationTrims(union flightDynamicsTrims_u
*accelerationTrimsToUse
);
88 void accInitFilters(void);
89 void applyAccelerometerTrimsDelta(union rollAndPitchTrims_u
*rollAndPitchTrimsDelta
);