1
0

fix memoy leak of crc msg

still don't work with time
This commit is contained in:
2024-04-24 17:20:16 +02:00
parent a0ce103a16
commit f9b4ecb42c
4 changed files with 34 additions and 49 deletions

14
main.h
View File

@@ -139,3 +139,17 @@ typedef union {
};
uint8_t raw;
} Status;
typedef union {
struct {
bool_t nothing0: 1; // MSB
bool_t chat: 1;
bool_t nothing2: 1;
bool_t time: 1;
bool_t nothing4: 1;
bool_t nothing5: 1;
bool_t nothing6: 1;
bool_t nothing7: 1; // LSB
};
uint8_t raw;
} SapiToken;