milk6060 发表于 2013-3-4 21:29:24

官方网络收发的例子是使用什么工具去调试的,一直没找到合适的工具

#include <Ethernet.h>

// network configuration.gateway and subnet are optional.

// the media access control (ethernet hardware) address for the shield:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
//the IP address for the shield:
byte ip[] = { 10, 0, 0, 177 };   
// the router's gateway address:
byte gateway[] = { 10, 0, 0, 1 };
// the subnet:
byte subnet[] = { 255, 255, 0, 0 };

// telnet defaults to port 23
Server server = Server(23);

void setup()
{
// initialize the ethernet device
Ethernet.begin(mac, ip, gateway, subnet);

// start listening for clients
server.begin();
}

void loop()
{
// if an incoming client connects, there will be bytes available to read:
Client client = server.available();
if (client == true) {
    // read bytes from the incoming client and write them back
    // to any clients connected to the server:
    server.write(client.read());
}
}

这个官方例子使用什么软件去测试收发啊,我尝试了几个都不行,一直没测试成功

johnsonzzd 发表于 2013-3-4 23:04:16

去周立功官网下载TCPUDPDebug
页: [1]
查看完整版本: 官方网络收发的例子是使用什么工具去调试的,一直没找到合适的工具