You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
214 B
11 lines
214 B
5 years ago
|
#include <AP_HAL/AP_HAL.h>
|
||
|
|
||
|
struct GyroFrame {
|
||
|
float x[1024];
|
||
|
float y[1024];
|
||
|
float z[1024];
|
||
|
};
|
||
|
|
||
|
extern const GyroFrame gyro_frames[];
|
||
|
extern const uint32_t NUM_FRAMES;
|
||
|
extern const uint16_t SAMPLE_RATE;
|