2013-08-23 37 views
1

我正在使用新的Microduino ENC28J60以太网模块(与Arduino兼容)。Microduino ENC28J60以太网模块(与Arduino兼容)UDP发送不工作

我正在使用udpListener草图并希望在UDP数据包到达时将消息回显给发件人。

我正在接收消息确定,但回调方法中的udpSend不起作用。

也能正常工作的Arduino的乌诺与以太网屏蔽

谁能帮助。

由于提前

这里是代码:

// Demonstrates usage of the new udpServer feature. 
//You can register the same function to multiple ports, and multiple functions to the same port. 
// 
// 2013-4-7 Brian Lee [email protected] 

#include 
#include 

#define STATIC 1 // set to 1 to disable DHCP (adjust myip/gwip values below) 

#if STATIC 
// ethernet interface ip address 
static byte myip[] = { 192,168,0,201 }; 
// gateway ip address 
static byte gwip[] = { 192,168,0,1 }; 

static byte ipDestination[] = {192, 168, 0, 9}; 

unsigned int portMy = 8888; 
unsigned int portDestination = 9000; 

#endif 

// ethernet mac address - must be unique on your network 
static byte mymac[] = { 0x70,0x69,0x69,0x2D,0x30,0x31 }; 

byte Ethernet::buffer[500]; // tcp/ip send and receive buffer 

char msg[] = {"Hello World"}; 

//callback that prints received packets to the serial port 
void udpSerialPrint(word port, byte ip[4], const char *data, word len) { 
IPAddress src(ip[0], ip[1], ip[2], ip[3]); 
Serial.println(src); 
Serial.println(port); 
Serial.println(data); 
Serial.println(len); 

//I Added this to echo the packet <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
ether.sendUdp(msg, sizeof msg, portMy, ipDestination, portDestination); 
Serial.println("UDP Sent !!"); 

} 

void setup(){ 
Serial.begin(9600); 
Serial.println("\n[backSoon]"); 

if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) 
Serial.println("Failed to access Ethernet controller"); 
#if STATIC 
ether.staticSetup(myip, gwip); 
Serial.println("Serial Started on FixedIP"); 
#else 
if (!ether.dhcpSetup()) 
Serial.println("DHCP failed"); 
#endif 

ether.printIp("IP: ", ether.myip); 
ether.printIp("GW: ", ether.gwip); 
ether.printIp("DNS: ", ether.dnsip); 

//register udpSerialPrint() to port 1337 
ether.udpServerListenOnPort(&udpSerialPrint, portMy); 

//register udpSerialPrint() to port 42. 
//ether.udpServerListenOnPort(&udpSerialPrint, 42); 
} 

void loop(){ 
//this must be called for ethercard functions to work. 
ether.packetLoop(ether.packetReceive()); 
} 

=====附加信息====

嗨,

对不起了包括有:

包括EtherCard.h 包括IPAddress.h 他们似乎从左边的箭头&中删除了文本,正如在C++中使用的右箭头符号。

我把你的笔记关于以太类。我使用了一个名为“udpListener”的Ethercard文件夹中的示例,并对该类未声明感到困惑。我假设在ethercard.h中完成了。

程序按原样工作,并使用udpSerialPrint方法监听并显示正确接收的udp数据包,因此侦听侧工作。我想向udp数据包的发送者回送一些内容,它是udpSend不起作用。

,我使用的屏蔽是链接:

https://github.com/jcw/ethercard

我希望这为你提供必要的进一步信息:http://hobbycomponents.com/index.php/microduino-enc28j60-ethernet-module-arduino-compatible.html

兼容库通过相同的网页中找到。

+0

我与该库有相同的问题。你解决了吗?一个问题是,当你发送像这样的upd数据包时,你的目的地mac地址为0. – Gossamer

回答

1

首先,发布的代码似乎并不完整。有几个不完整的#include's,我也看不到ether类定义在哪里。

接下来,如果您的代码使用以太网盾工作,那么使用什么库,更具体地说什么芯片在以太网盾上?

ENCJ2860是“自己的”芯片。也就是说,控制ENCJ2860所需的库可能与以太网屏蔽器上使用的库不同,当且仅当以太网屏蔽上的芯片是不是和ENCJ2860。

从这个问题给出的信息是不可能的。但是,这是我首先想到的。

P.S.我目前正在研究ENCJ2860的库文件,并且正在等待一个ENCJ2860的以太网盾牌,所以我可以帮你解决这个问题,或者向你发送我的库文件(还有待调试!!)。

+0

我在回复你的问题时在第一篇文章中增加了额外的信息。谢谢 –

+0

嗨,你有关于这个问题的任何信息,因为我需要帮助,不能在任何地方找到它。谢谢 –

相关问题