Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Network.cpp « RADDS « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f37744ae746faa98185b4758748de2b2c09a6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "Network.h"

static const uint8_t dummy_ipv4[4] = { 0, 0, 0, 0 };

const uint8_t *Network::GetIPAddress() const
{
	return dummy_ipv4;
}

void Network::ReportProtocols(StringRef& reply) const
{
	reply.copy("Networking is not supported on this hardware");
}

// End