Skip to content

Commit

Permalink
AP_Scripting: add FOLLOW_TARGET msg definition
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Dec 16, 2024
1 parent 38e7f90 commit 1918062
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
local FOLLOW_TARGET = {}
FOLLOW_TARGET.id = 144
FOLLOW_TARGET.fields = {
{ "timestamp", "<I8" },
{ "custom_state", "<I8" },
{ "lat", "<i4" },
{ "lon", "<i4" },
{ "alt", "<f" },
{ "vel", "<f", 3 },
{ "acc", "<f", 3 },
{ "attitude_q", "<f", 4 },
{ "rates", "<f", 3 },
{ "position_cov", "<f", 3 },
{ "est_capabilities", "<B" },
}
return FOLLOW_TARGET

0 comments on commit 1918062

Please sign in to comment.