Files
miSim/aerpaw/MESSAGE_TYPE.m
2026-02-01 16:02:18 -08:00

10 lines
366 B
Matlab

classdef MESSAGE_TYPE < uint8
enumeration
TARGET (1) % Server->Client: target coordinates follow (3 doubles)
ACK (2) % Client->Server: command received
READY (3) % Both: ready for next command / mission complete
RTL (4) % Server->Client: return to launch
LAND (5) % Server->Client: land now
end
end