added the healthcheck command

This commit is contained in:
2026-09-22 16:30:19 +01:00
parent cceafe027c
commit d7d421c6f2
5 changed files with 127 additions and 104 deletions
+9
View File
@@ -2,6 +2,7 @@
#define __PACKETS__
#include "UIDimensions.h"
#include <cstdint>
#include <stdint.h>
typedef uint8_t PacketType;
@@ -36,4 +37,12 @@ struct __attribute__((packed)) WindowIDReply {
void initWindowIDReply(WindowIDReply* pkt, int16_t id);
struct __attribute__((packed)) HealthCheckReply {
uint8_t StartMarker;
uint8_t reply;
uint8_t EndMarker;
};
void initHealthCheckReply(HealthCheckReply* pkt);
#endif