2012-12-19 18:02:34 -04:00
|
|
|
|
|
|
|
#ifndef __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
|
|
#define __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_Progmem/AP_Progmem.h>
|
2012-12-19 18:02:34 -04:00
|
|
|
|
|
|
|
/* Pure virtual interface class */
|
|
|
|
class AP_InertialSensor_UserInteract {
|
|
|
|
public:
|
2014-08-07 00:09:17 -03:00
|
|
|
virtual bool blocking_read() = 0;
|
2012-12-19 18:02:34 -04:00
|
|
|
virtual void _printf_P(const prog_char *, ...) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_USER_INTERACT_H__
|
|
|
|
|