mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
3d0cf7e12a
implements an FFT engine based on the betaflight feature using ARM hardware accelerated CMSIS library make the FFT feature optional add dynamic gyro windows add quinns and candans estimators and record in DSP state disable DSP for boards with limited flash calculate power spectrum rather than amplitude start/analyse version of analysis to support threading allocate memory in a specific region constrain window size by CPU class control inclusion of DSP based on board size
19 lines
397 B
C
19 lines
397 B
C
#pragma once
|
|
|
|
/* Umbrella header for all private headers of the AP_HAL_ChibiOS module.
|
|
* Only import this header from inside AP_HAL_ChibiOS
|
|
*/
|
|
|
|
#include "AnalogIn.h"
|
|
#include "GPIO.h"
|
|
#include "Scheduler.h"
|
|
#include "Util.h"
|
|
#include "UARTDriver.h"
|
|
#include "SPIDevice.h"
|
|
#include "Storage.h"
|
|
#include "RCInput.h"
|
|
#include "RCOutput.h"
|
|
#include "I2CDevice.h"
|
|
#include "Flash.h"
|
|
#include "DSP.h"
|