mirror of https://github.com/meshcore-dev/MeshCore
5 changed files with 144 additions and 11 deletions
@ -0,0 +1,109 @@ |
|||||
|
#include "RAK13800EthernetInterface.h" |
||||
|
#include "../../nrf52/EthernetMac.h" |
||||
|
#include <SPI.h> |
||||
|
#include <EthernetUdp.h> |
||||
|
|
||||
|
#define PIN_SPI1_MISO (29) // (0 + 29)
|
||||
|
#define PIN_SPI1_MOSI (30) // (0 + 30)
|
||||
|
#define PIN_SPI1_SCK (3) // (0 + 3)
|
||||
|
|
||||
|
SPIClass ETHERNET_SPI_PORT(NRF_SPIM1, PIN_SPI1_MISO, PIN_SPI1_SCK, PIN_SPI1_MOSI); |
||||
|
|
||||
|
#define PIN_ETHERNET_POWER_EN WB_IO2 // output, high to enable
|
||||
|
#define PIN_ETHERNET_RESET 21 |
||||
|
#define PIN_ETHERNET_SS 26 |
||||
|
|
||||
|
bool RAK13800EthernetInterface::begin() { |
||||
|
|
||||
|
// WB_IO2 (power enable) is already driven HIGH by early constructor
|
||||
|
// in RAK4631Board.cpp to support POE boot.
|
||||
|
// Skip hardware reset — the W5100S comes out of power-on reset cleanly,
|
||||
|
// and toggling reset kills the PHY link which breaks POE power.
|
||||
|
#ifdef PIN_ETHERNET_RESET |
||||
|
pinMode(PIN_ETHERNET_RESET, OUTPUT); |
||||
|
digitalWrite(PIN_ETHERNET_RESET, HIGH); |
||||
|
#endif |
||||
|
|
||||
|
// generate mac address
|
||||
|
uint8_t mac[6]; |
||||
|
generateEthernetMac(mac); |
||||
|
ETHERNET_DEBUG_PRINTLN( |
||||
|
"Ethernet MAC: %02X:%02X:%02X:%02X:%02X:%02X", |
||||
|
mac[0], |
||||
|
mac[1], |
||||
|
mac[2], |
||||
|
mac[3], |
||||
|
mac[4], |
||||
|
mac[5]); |
||||
|
ETHERNET_SPI_PORT.begin(); |
||||
|
Ethernet.init(ETHERNET_SPI_PORT, PIN_ETHERNET_SS); |
||||
|
|
||||
|
// Use static IP if build flags are defined, otherwise DHCP
|
||||
|
#if defined(ETHERNET_STATIC_IP) && defined(ETHERNET_STATIC_GATEWAY) && defined(ETHERNET_STATIC_SUBNET) && defined(ETHERNET_STATIC_DNS) |
||||
|
IPAddress ip(ETHERNET_STATIC_IP); |
||||
|
IPAddress gateway(ETHERNET_STATIC_GATEWAY); |
||||
|
IPAddress subnet(ETHERNET_STATIC_SUBNET); |
||||
|
IPAddress dns(ETHERNET_STATIC_DNS); |
||||
|
Ethernet.begin(mac, ip, dns, gateway, subnet); |
||||
|
#else |
||||
|
if (Ethernet.begin(mac) == 0) { |
||||
|
ETHERNET_DEBUG_PRINTLN("Failed to initialize RAK13800 hardware."); |
||||
|
if (Ethernet.hardwareStatus() == EthernetNoHardware) { |
||||
|
ETHERNET_DEBUG_PRINTLN("Ethernet hardware not found."); |
||||
|
} else if (Ethernet.linkStatus() == LinkOFF) { |
||||
|
ETHERNET_DEBUG_PRINTLN("Ethernet cable not connected."); |
||||
|
} else { |
||||
|
ETHERNET_DEBUG_PRINTLN("DHCP failed for unknown reason."); |
||||
|
} |
||||
|
return false; |
||||
|
} |
||||
|
#endif |
||||
|
|
||||
|
ETHERNET_DEBUG_PRINTLN("Ethernet begin complete"); |
||||
|
ETHERNET_DEBUG_PRINT_IP("IP Address", Ethernet.localIP()); |
||||
|
ETHERNET_DEBUG_PRINT_IP("Subnet Mask", Ethernet.subnetMask()); |
||||
|
ETHERNET_DEBUG_PRINT_IP("Gateway", Ethernet.gatewayIP()); |
||||
|
ETHERNET_DEBUG_PRINT_IP("DNS", Ethernet.dnsServerIP()); |
||||
|
|
||||
|
server.begin(); |
||||
|
ETHERNET_DEBUG_PRINTLN("listening on TCP port: %d", ETHERNET_TCP_PORT); |
||||
|
|
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
int RAK13800EthernetInterface::available() { |
||||
|
return client.available(); |
||||
|
} |
||||
|
|
||||
|
int RAK13800EthernetInterface::read() { |
||||
|
return client.read(); |
||||
|
} |
||||
|
|
||||
|
size_t RAK13800EthernetInterface::write(const uint8_t *buf, size_t size) { |
||||
|
return client.write(buf, size); |
||||
|
} |
||||
|
|
||||
|
bool RAK13800EthernetInterface::isConnected() const { |
||||
|
return _isConnected; |
||||
|
} |
||||
|
|
||||
|
void RAK13800EthernetInterface::loop() { |
||||
|
|
||||
|
Ethernet.maintain(); |
||||
|
|
||||
|
auto newClient = server.accept(); |
||||
|
if (newClient) { |
||||
|
IPAddress remoteIp = newClient.remoteIP(); |
||||
|
uint16_t remotePort = newClient.remotePort(); |
||||
|
ETHERNET_DEBUG_PRINTLN("New client accepted %u.%u.%u.%u:%u", remoteIp[0], remoteIp[1], remoteIp[2], remoteIp[3], remotePort); |
||||
|
if (client) { |
||||
|
ETHERNET_DEBUG_PRINTLN("Closing previous client"); |
||||
|
client.stop(); |
||||
|
} |
||||
|
client = newClient; |
||||
|
onClientConnected(); |
||||
|
} |
||||
|
|
||||
|
_isConnected = client.connected(); |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,27 @@ |
|||||
|
#pragma once |
||||
|
|
||||
|
#include "../SerialEthernetInterface.h" |
||||
|
#include <SPI.h> |
||||
|
#include <RAK13800_W5100S.h> |
||||
|
|
||||
|
class RAK13800EthernetInterface : public SerialEthernetInterface { |
||||
|
|
||||
|
bool _isConnected; |
||||
|
EthernetServer server; |
||||
|
EthernetClient client; |
||||
|
|
||||
|
public: |
||||
|
RAK13800EthernetInterface() : server(EthernetServer(ETHERNET_TCP_PORT)) { |
||||
|
_isConnected = false; |
||||
|
} |
||||
|
|
||||
|
bool begin(); |
||||
|
void loop() override; |
||||
|
|
||||
|
// BaseSerialInterface methods
|
||||
|
bool isConnected() const override; |
||||
|
|
||||
|
int available() override; |
||||
|
int read() override; |
||||
|
size_t write(const uint8_t *buf, size_t size) override; |
||||
|
}; |
||||
Loading…
Reference in new issue