Corrected structs for config settings

This commit is contained in:
smithse 2025-01-17 12:31:59 +08:00 committed by GitHub
parent 7504ec8476
commit 74c867348c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -229,6 +229,12 @@ struct st_cm {
int port;
};
struct st_ss {
int active;
char host[64];
int port;
};
struct st_sondehub {
int active;
int chase;
@ -320,6 +326,7 @@ typedef struct st_rdzconfig {
struct st_mqtt mqtt;
struct st_sondehub sondehub;
struct st_cm cm;
struct st_ss ss;
struct st_sdcard sd;
} RDZConfig;