updated beta 7.5" fw

This commit is contained in:
jjwbruijn
2023-09-02 12:26:40 +02:00
parent 8f7ec46f68
commit aad5fe71eb
68 changed files with 577 additions and 5135 deletions

28
oepl-esp-ap-proto.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef __packed
#define __packed __attribute__((packed))
#endif
struct espBlockRequest {
uint8_t checksum;
uint64_t ver;
uint8_t blockId;
uint8_t src[8];
} __packed;
struct espXferComplete {
uint8_t checksum;
uint8_t src[8];
} __packed;
struct espSetChannelPower {
uint8_t checksum;
uint8_t channel;
uint8_t power;
} __packed;
struct espAvailDataReq {
uint8_t checksum;
uint8_t src[8];
struct AvailDataReq adr;
} __packed;