mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 23:18:28 -04:00
f3f4b7205c
allows APM to ask user to print enter to continue via MAVLink messages during accel calibration
16 lines
354 B
C++
16 lines
354 B
C++
|
|
#ifndef __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
#define __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
|
|
#include <AP_Progmem.h>
|
|
|
|
/* Pure virtual interface class */
|
|
class AP_InertialSensor_UserInteract {
|
|
public:
|
|
virtual uint8_t blocking_read() = 0;
|
|
virtual void _printf_P(const prog_char *, ...) = 0;
|
|
};
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
|