mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 16:16:13 +01:00
Merge remote-tracking branch 'origin/master' into dex/unowifi
This commit is contained in:
commit
740dcc7db4
|
@ -50,11 +50,15 @@ EthernetInterface::EthernetInterface()
|
||||||
DIAG(F("\n+++++ Ethernet Setup "));
|
DIAG(F("\n+++++ Ethernet Setup "));
|
||||||
connected=false;
|
connected=false;
|
||||||
|
|
||||||
|
#ifdef IP_ADDRESS
|
||||||
|
Ethernet.begin(mac, IP_ADDRESS);
|
||||||
|
#else
|
||||||
if (Ethernet.begin(mac) == 0)
|
if (Ethernet.begin(mac) == 0)
|
||||||
{
|
{
|
||||||
DIAG(F("begin FAILED\n"));
|
DIAG(F("begin FAILED\n"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
DIAG(F("begin OK."));
|
DIAG(F("begin OK."));
|
||||||
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
|
if (Ethernet.hardwareStatus() == EthernetNoHardware) {
|
||||||
DIAG(F("shield not found\n"));
|
DIAG(F("shield not found\n"));
|
||||||
|
|
|
@ -30,24 +30,14 @@
|
||||||
#include <Ethernet.h>
|
#include <Ethernet.h>
|
||||||
#include "RingStream.h"
|
#include "RingStream.h"
|
||||||
|
|
||||||
/* some generated mac addresses as EthernetShields don't have one by default in HW.
|
|
||||||
* Sometimes they come on a sticker on the EthernetShield then use this address otherwise
|
|
||||||
* just choose one from below or generate one yourself. Only condition is that there is no
|
|
||||||
* other device on your network with the same Mac address.
|
|
||||||
*
|
|
||||||
* 52:b8:8a:8e:ce:21
|
|
||||||
* e3:e9:73:e1:db:0d
|
|
||||||
* 54:2b:13:52:ac:0c
|
|
||||||
* c2:d8:d4:7d:7c:cb
|
|
||||||
* 86:cf:fa:9f:07:79
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Network Configuration
|
* @brief Network Configuration
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#define MAC_ADDRESS { 0x52, 0xB8, 0x8A, 0x8E, 0xCE, 0x21 } // MAC address of your networking card found on the sticker on your card or take one from above
|
#ifndef MAC_ADDRESS
|
||||||
// this one is not used elsewhere and corresponds to your network layout
|
#error define MAC_ADDRESS in config.h
|
||||||
|
#endif
|
||||||
|
|
||||||
#define LISTEN_PORT 2560 // default listen port for the server
|
#define LISTEN_PORT 2560 // default listen port for the server
|
||||||
#define MAX_ETH_BUFFER 512
|
#define MAX_ETH_BUFFER 512
|
||||||
#define OUTBOUND_RING_SIZE 2048
|
#define OUTBOUND_RING_SIZE 2048
|
||||||
|
|
Loading…
Reference in New Issue
Block a user