all warnings as errors
This commit is contained in:
@ -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;
|
||||
|
@ -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, ...);
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user