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
259 B
11 lines
259 B
10 years ago
|
#include "MsgHandler_BARO.h"
|
||
|
|
||
|
void MsgHandler_BARO::process_message(uint8_t *msg)
|
||
|
{
|
||
|
wait_timestamp_from_msg(msg);
|
||
|
baro.setHIL(0,
|
||
|
require_field_float(msg, "Press"),
|
||
|
require_field_int16_t(msg, "Temp") * 0.01f);
|
||
|
dataflash.Log_Write_Baro(baro);
|
||
|
}
|