1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-04-10 23:40:12 +02:00

fixed includes

This commit is contained in:
Gregor Baues 2021-05-25 10:50:02 +02:00
parent 6b6ae4e904
commit dc9368665d
2 changed files with 9 additions and 7 deletions

View File

@ -26,12 +26,13 @@
#endif #endif
#include "defines.h" #include "defines.h"
#include <errno.h>
#include <limits.h>
#include "MQTTInterface.h" #include "MQTTInterface.h"
#include "MQTTBrokers.h" #include "MQTTBrokers.h"
#include "DCCTimer.h" #include "DCCTimer.h"
#include <CommandDistributor.h> #include "CommandDistributor.h"
#include <errno.h>
#include <limits.h>
MQTTInterface *MQTTInterface::singleton = NULL; MQTTInterface *MQTTInterface::singleton = NULL;

View File

@ -29,13 +29,14 @@
#endif #endif
#include "defines.h" #include "defines.h"
#include <PubSubClient.h>
#include <DCCEXParser.h>
#include <Queue.h>
#include <Arduino.h> #include <Arduino.h>
#include <Ethernet.h> #include <Ethernet.h>
#include <Dns.h> #include <Dns.h>
#include <ObjectPool.h> #include <PubSubClient.h>
#include "DCCEXParser.h"
#include "Queue.h"
#include "ObjectPool.h"
#define MAXPAYLOAD 64 // max length of a payload recieved #define MAXPAYLOAD 64 // max length of a payload recieved
#define MAXDOMAINLENGTH 32 // domain name length for the broker e.g. test.mosquitto.org #define MAXDOMAINLENGTH 32 // domain name length for the broker e.g. test.mosquitto.org