mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
c3e17fcf04
Thanks to Gregor....I have modified his originals to eliminate the static initialisation memory loss. These do not show up in the object code if they are not referenced.
108 lines
3.6 KiB
C++
108 lines
3.6 KiB
C++
/*
|
|
* © 2020,Gregor Baues, Chris Harlow. All rights reserved.
|
|
*
|
|
* This file is part of DCC-EX/CommandStation-EX
|
|
*
|
|
*
|
|
* This is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* It is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* Ethernet Interface added by Gregor Baues
|
|
*/
|
|
|
|
#ifndef EthernetInterface_h
|
|
#define EthernetInterface_h
|
|
|
|
#include "DCCEXParser.h"
|
|
#include "MemStream.h"
|
|
#include <Arduino.h>
|
|
#include <avr/pgmspace.h>
|
|
#include <Ethernet.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
|
|
*
|
|
*/
|
|
#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
|
|
#define IP_ADDRESS 10, 0, 0, 101 // Just in case we don't get an adress from DHCP try a static one; make sure
|
|
// this one is not used elsewhere and corresponds to your network layout
|
|
#define LISTEN_PORT 3366 // default listen port for the server
|
|
#define MAX_ETH_BUFFER 250
|
|
|
|
typedef void (*HTTP_CALLBACK)(Print * stream, byte * cmd);
|
|
|
|
enum protocolType {
|
|
TCP,
|
|
UDP
|
|
};
|
|
|
|
typedef void (*protocolCallback)();
|
|
|
|
class EthernetInterface {
|
|
|
|
private:
|
|
EthernetServer server;
|
|
|
|
public:
|
|
DCCEXParser ethParser;
|
|
bool connected;
|
|
byte mac[6];
|
|
IPAddress ip;
|
|
uint16_t port;
|
|
IPAddress dnsip;
|
|
|
|
void setup(protocolType pt, uint16_t lp); // specific port nummber
|
|
void setup(protocolType pt); // uses default port number
|
|
void setup(); // all defaults (protocol/port)
|
|
|
|
protocolCallback protocolHandler;
|
|
|
|
void loop();
|
|
|
|
private:
|
|
static EthernetInterface * singleton;
|
|
|
|
char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; // buffer to hold incoming UDP packet,
|
|
uint8_t buffer[MAX_ETH_BUFFER]; // buffer provided to the streamer to be filled with the reply (used by TCP also for the recv)
|
|
MemStream * streamer; // streamer who writes the results to the buffer
|
|
EthernetClient clients[MAX_SOCK_NUM]; // accept up to MAX_SOCK_NUM client connections at the same time; This depends on the chipset used on the Shield
|
|
|
|
bool setupConnection();
|
|
static void udpHandler();
|
|
static void tcpHandler();
|
|
void udpHandler2();
|
|
void tcpHandler2();
|
|
EthernetUDP Udp;
|
|
|
|
EthernetServer getServer() {
|
|
return server;
|
|
};
|
|
void setServer(EthernetServer s) {
|
|
server = s;
|
|
};
|
|
};
|
|
|
|
#endif
|