all warnings as errors

This commit is contained in:
2020-11-20 11:23:44 +01:00
parent ada748edbb
commit 5ba461adf6
11 changed files with 52 additions and 47 deletions

View File

@ -7,8 +7,8 @@
#include <stdbool.h>
typedef struct {
char *name;
char *unit;
const char *name;
const char *unit;
int8_t exponent;
bool found;
} parsedVIB_t;

View File

@ -3,8 +3,8 @@
void mqttCommInit();
void mqttPublish(char *topic, char *message);
void mqttPublishf(char *topic, char *messageFormat, ...);
void mqttPublish(const char *topic, char *message);
void mqttPublishf(const char *topic, char *messageFormat, ...);