prepare wifi

This commit is contained in:
2021-02-16 13:00:10 +01:00
parent b3832a3d1b
commit 9db7360623
3 changed files with 28 additions and 1 deletions

View File

@ -17,6 +17,10 @@ typedef struct __attribute__((__packed__)) s_configBlock {
struct {
uint8_t macAddress[6];
} lan;
struct {
char ssid[48];
char key[65]; // the actual key may have up to 64 chars and has to end with a \0
} wifi;
} networkspecific;
uint8_t filler[22];
} t_configBlock;