#include "Protocol.h" #include const char *messageName(MessageType type) { static const char *names[] = {"DISCOVER", "DISCOVER_ACK", "PREPARE", "READY", "START_STAGE", "RESULT", "ACK", "ABORT", "HEARTBEAT", "HEARTBEAT_ACK", "PROGRESS"}; const uint8_t index = static_cast(type); return index < sizeof(names) / sizeof(names[0]) ? names[index] : "UNKNOWN"; } uint16_t packetCrc(const ProtocolPacket &p) { const uint8_t *data = reinterpret_cast(&p); uint16_t crc = 0xFFFF; for (size_t i = 0; i < offsetof(ProtocolPacket, crc); ++i) { crc ^= static_cast(data[i]) << 8; for (uint8_t b = 0; b < 8; ++b) crc = (crc & 0x8000) ? (crc << 1) ^ 0x1021 : crc << 1; } return crc; } void finalizePacket(ProtocolPacket &p) { p.magic = PROTOCOL_MAGIC; p.version = PROTOCOL_VERSION; p.crc = packetCrc(p); } bool validPacket(const ProtocolPacket &p) { return p.magic == PROTOCOL_MAGIC && p.version == PROTOCOL_VERSION && p.type <= static_cast(MessageType::PROGRESS) && p.crc == packetCrc(p); }