mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-21 06:37:34 +08:00
17 lines
424 B
C
17 lines
424 B
C
/*
|
|
* accelerometer_calibration.h
|
|
*
|
|
* Copyright (C) 2013 Anton Babushkin. All rights reserved.
|
|
* Author: Anton Babushkin <rk3dov@gmail.com>
|
|
*/
|
|
|
|
#ifndef ACCELEROMETER_CALIBRATION_H_
|
|
#define ACCELEROMETER_CALIBRATION_H_
|
|
|
|
#include <stdint.h>
|
|
#include <uORB/topics/vehicle_status.h>
|
|
|
|
void do_accel_calibration(int status_pub, struct vehicle_status_s *status, int mavlink_fd);
|
|
|
|
#endif /* ACCELEROMETER_CALIBRATION_H_ */
|