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.
14 lines
243 B
14 lines
243 B
5 years ago
|
#include "AP_Baro_Dummy.h"
|
||
|
|
||
|
AP_Baro_Dummy::AP_Baro_Dummy(AP_Baro &baro) :
|
||
|
AP_Baro_Backend(baro)
|
||
|
{
|
||
|
_instance = _frontend.register_sensor();
|
||
|
}
|
||
|
|
||
|
// Read the sensor
|
||
|
void AP_Baro_Dummy::update(void)
|
||
|
{
|
||
|
_copy_to_frontend(0, 91300, 21);
|
||
|
}
|