basic implementation of client/server for AERPAW, whole lot of mess included

This commit is contained in:
2026-01-28 22:29:17 -08:00
parent b444e44d33
commit 8c5c315380
101 changed files with 1129 additions and 36 deletions

20
aerpaw/@uav/onYourMarks.m Normal file
View File

@@ -0,0 +1,20 @@
function obj = onYourMarks(obj)
arguments (Input)
obj (1, 1) {mustBeA(obj, "uav")};
end
arguments (Output)
obj (1, 1) {mustBeA(obj, "uav")};
end
% Receive initial position data
initialPosition = read(obj.udp, 3, "double");
% Acknowledge message receipt
% teleport to desired position
obj.pos = initialPosition;
keyboard
end