network specific configuration

This commit is contained in:
2021-02-16 12:31:45 +01:00
parent 4ca37156f3
commit b3832a3d1b
3 changed files with 5 additions and 3 deletions

View File

@ -14,7 +14,9 @@ typedef struct __attribute__((__packed__)) s_configBlock {
char sharedSecret[SHA256_BLOCK_SIZE];
char sinkServer[48];
union {
uint8_t macAddress[6];
struct {
uint8_t macAddress[6];
} lan;
} networkspecific;
uint8_t filler[22];
} t_configBlock;