Browse Source

Merge pull request #2989 from rgregg/fix-nrf52-ethernet-build

Fix nRF52 builds broken by unconditional RAK Ethernet include
pull/2994/head
Liam Cottle 5 days ago
committed by GitHub
parent
commit
fdd4d8a610
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/helpers/nrf52/SerialEthernetInterface.cpp
  2. 4
      src/helpers/nrf52/SerialEthernetInterface.h

4
src/helpers/nrf52/SerialEthernetInterface.cpp

@ -1,3 +1,5 @@
#ifdef ETHERNET_ENABLED
#include "SerialEthernetInterface.h"
#include "EthernetMac.h"
#include <SPI.h>
@ -262,3 +264,5 @@ bool SerialEthernetInterface::isConnected() const {
void SerialEthernetInterface::loop() {
Ethernet.maintain();
}
#endif // ETHERNET_ENABLED

4
src/helpers/nrf52/SerialEthernetInterface.h

@ -1,5 +1,7 @@
#pragma once
#ifdef ETHERNET_ENABLED
#include "helpers/BaseSerialInterface.h"
#include <SPI.h>
#include <RAK13800_W5100S.h>
@ -76,3 +78,5 @@ class SerialEthernetInterface : public BaseSerialInterface {
#define ETHERNET_DEBUG_PRINTLN(...) {}
#define ETHERNET_DEBUG_PRINT_IP(...) {}
#endif
#endif // ETHERNET_ENABLED

Loading…
Cancel
Save