32 lines
812 B
C
32 lines
812 B
C
#ifndef DEFINES_H
|
|
#define DEFINES_H
|
|
|
|
|
|
|
|
#define GENERAL_MESSAGES_MAX_LOG_LINES 5000 //The number of lines of general status log we keep in the general status window (avoids fucking up because you know.... RAM)
|
|
#define MQTT_CLIENT_RECONNECT_TIMEOUT 5000 //Time in ms between reconnect attemps to MQTT broker when connection is lost
|
|
#define MQTT_CLIENT_MSG_QUEUE_FLUSH_TIMEOUT 500 //The delay in ms between the TX messages when flushing the msg queue after a server reconnection
|
|
#define MQTT_CLIENT_MSG_QUEUE_SIZE 1000 //The maximum number of messages to be queued. Older messages are lost when adding a new one in a full queue
|
|
|
|
//#define USE_TOPIC_PREFIX
|
|
#define FORCE_FLOAT_REPRESENTATION
|
|
|
|
enum eOtarcikGeneralReturns
|
|
{
|
|
RET_OK = 0,
|
|
RET_GENERAL_ERROR,
|
|
|
|
|
|
|
|
RET_MAX_ERROR
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DEFINES_H
|
|
|
|
|
|
|