60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
// Arduino demo sketch for testing the DHCP client code
|
|
//
|
|
// Original author: Andrew Lindsay
|
|
// Major rewrite and API overhaul by jcw, 2011-06-07
|
|
//
|
|
// Copyright: GPL V2
|
|
// See http://www.gnu.org/licenses/gpl.html
|
|
//
|
|
//
|
|
//-----------------------------------------------------------------
|
|
// Ported to STM32F103 by Vassilis Serasidis on 21 May 2015
|
|
// Home: http://www.serasidis.gr
|
|
// email: avrsite@yahoo.gr
|
|
//
|
|
// PIN Connections (Using STM32F103):
|
|
//
|
|
// ENC28J60 - STM32F103
|
|
// VCC - 3.3V
|
|
// GND - GND
|
|
// SCK - Pin PA5
|
|
// SO - Pin PA6
|
|
// SI - Pin PA7
|
|
// CS - Pin PA8
|
|
//-----------------------------------------------------------------
|
|
//
|
|
//
|
|
|
|
#include <SPI.h>
|
|
#include <EtherCard_STM.h>
|
|
|
|
static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 };
|
|
|
|
byte Ethernet::buffer[700];
|
|
|
|
void setup () {
|
|
Serial.begin(57600);
|
|
Serial.println(F("\n[testDHCP]"));
|
|
|
|
Serial.print("MAC: ");
|
|
for (byte i = 0; i < 6; ++i) {
|
|
Serial.print(mymac[i], HEX);
|
|
if (i < 5)
|
|
Serial.print(':');
|
|
}
|
|
Serial.println();
|
|
|
|
if (ether.begin(sizeof Ethernet::buffer, mymac) == 0)
|
|
Serial.println(F("Failed to access Ethernet controller"));
|
|
|
|
Serial.println(F("Setting up DHCP"));
|
|
if (!ether.dhcpSetup())
|
|
Serial.println(F("DHCP failed"));
|
|
|
|
ether.printIp("My IP: ", ether.myip);
|
|
ether.printIp("Netmask: ", ether.netmask);
|
|
ether.printIp("GW IP: ", ether.gwip);
|
|
ether.printIp("DNS IP: ", ether.dnsip);
|
|
}
|
|
|
|
void loop () {} |