Browse Source

Merge remote-tracking branch 'upstream/dev' into dev

rules-rpn
Niek van der Maas 5 years ago
parent
commit
29d8e8fcd9
3 changed files with 38 additions and 5 deletions
  1. +17
    -0
      code/espurna/config/sensors.h
  2. +20
    -4
      code/espurna/libs/SyncClientWrap.h
  3. +1
    -1
      code/espurna/ntp.ino

+ 17
- 0
code/espurna/config/sensors.h View File

@ -856,6 +856,22 @@
#define VL53L1X_INTER_MEASUREMENT_PERIOD 50 // Period, in milliseconds, determining how
#endif // often the sensor takes a measurement.
//------------------------------------------------------------------------------
// MAX6675
// Enable support by passing MAX6675_SUPPORT=1 build flag
//------------------------------------------------------------------------------
#ifndef MAX6675_CS_PIN
#define MAX6675_CS_PIN 13
#endif
#ifndef MAX6675_SO_PIN
#define MAX6675_SO_PIN 12
#endif
#ifndef MAX6675_SCK_PIN
#define MAX6675_SCK_PIN 14
#endif
//------------------------------------------------------------------------------
// EZOPH pH meter
// Enable support by passing EZOPH_SUPPORT=1 build flag
@ -916,6 +932,7 @@
V9261F_SUPPORT || \
VEML6075_SUPPORT || \
VL53L1X_SUPPORT || \
MAX6675_SUPPORT || \
EZOPH_SUPPORT \
)
#endif


+ 20
- 4
code/espurna/libs/SyncClientWrap.h View File

@ -9,13 +9,29 @@ Temporary wrap to fix https://github.com/me-no-dev/ESPAsyncTCP/issues/109
#include <SyncClient.h>
// ref Core 2.5.0: cores/esp8266/IPAddress.h
#ifndef CONST
#include <lwip/init.h>
#if LWIP_VERSION_MAJOR == 1
#define CONST
#else
#define CONST const
#endif
#endif
class SyncClientWrap: public SyncClient {
public:
SyncClientWrap() {}
~SyncClientWrap() {}
// int connect(const char*, uint16_t);
using SyncClient::connect;
int connect(const char *host, uint16_t port);
int connect(CONST IPAddress& ip, uint16_t port) { return connect(ip, port); }
bool flush(unsigned int maxWaitMs = 0) { flush(); return true; }
bool stop(unsigned int maxWaitMs = 0) { stop(); return true; }
int connect(CONST IPAddress& ip, uint16_t port) { IPAddress _ip(ip); return SyncClient::connect(_ip, port); }
bool flush(unsigned int maxWaitMs = 0) { SyncClient::flush(); return true; }
bool stop(unsigned int maxWaitMs = 0) { SyncClient::stop(); return true; }
};

+ 1
- 1
code/espurna/ntp.ino View File

@ -12,7 +12,7 @@ Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
#include <WiFiClient.h>
#include <Ticker.h>
#include <libs/NtpClientWrap.h>
#include "libs/NtpClientWrap.h"
Ticker _ntp_defer;


Loading…
Cancel
Save