mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
8 lines
180 B
C++
8 lines
180 B
C++
#include "MsgHandler_ATT.h"
|
|
|
|
void MsgHandler_ATT::process_message(uint8_t *msg)
|
|
{
|
|
wait_timestamp_from_msg(msg);
|
|
attitude_from_msg(msg, attitude, "Roll", "Pitch", "Yaw");
|
|
}
|