• 正文
  • 推薦器件
  • 相關(guān)推薦
申請入駐 產(chǎn)業(yè)圖譜

RT1176千兆以太網(wǎng)速率測試

2024/05/19
3944
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點資訊討論

NXP針對以太網(wǎng)的操作提供了相當(dāng)齊全的例程。主要是freertos加lwip的方案,很經(jīng)典也很好用。

今天筆者就簡單測一下RT1176板卡的千兆以太網(wǎng)速率。這里使用的例程是SDK_2_10_0_MIMXRT1170-EVKboardsevkmimxrt1170lwip_exampleslwip_iperfbmcm7mdk。

iperf是是一個網(wǎng)絡(luò)性能測試工具。Iperf可以測試最大TCPUDP帶寬性能,具有多種參數(shù)和UDP特性,可以根據(jù)需要調(diào)整,可以報告帶寬、延遲抖動和數(shù)據(jù)包丟失。

可以在下面的代碼里面配置默認(rèn)的ip地址、掩碼、網(wǎng)關(guān)。

/* IP address configuration. */
#define configIP_ADDR0 192
#define configIP_ADDR1 168
#define configIP_ADDR2 0
#define configIP_ADDR3 102

/* Netmask configuration. */
#define configNET_MASK0 255
#define configNET_MASK1 255
#define configNET_MASK2 255
#define configNET_MASK3 0

/* Gateway address configuration. */
#define configGW_ADDR0 192
#define configGW_ADDR1 168
#define configGW_ADDR2 0
#define configGW_ADDR3 100

設(shè)備接線

串口打印,這里筆者選擇了1模式,測試TCP的RX速率

上位機顯示,測試時間為60s

最終速率達到了253Mbit/s,對于一個單片機來說可以說相當(dāng)驚人了。

之后筆者測試了freertos的tcp服務(wù)器的RX速度。不對接收到的數(shù)據(jù)做任何處理

static void
tcpecho_thread(void *arg)
{
struct netconn *conn, *newconn;
err_t err;
LWIP_UNUSED_ARG(arg);

/* Create a new connection identifier. */
/* Bind connection to well known port number 7. */
#if LWIP_IPV6
conn = netconn_new(NETCONN_TCP_IPV6);
netconn_bind(conn, IP6_ADDR_ANY, 7);
#else /* LWIP_IPV6 */
conn = netconn_new(NETCONN_TCP);
netconn_bind(conn, IP_ADDR_ANY, 7);
#endif /* LWIP_IPV6 */
LWIP_ERROR("tcpecho: invalid conn", (conn != NULL), return;);

/* Tell connection to go into listening mode. */
netconn_listen(conn);

while (1) {

/* Grab new connection. */
err = netconn_accept(conn, &newconn);
/*printf("accepted new connection %pn", newconn);*/
/* Process the new connection. */
if (err == ERR_OK) {
struct netbuf *buf;
void *data;
u16_t len;

while ((err = netconn_recv(newconn, &buf)) == ERR_OK) {
// /*printf("Recvedn");*/
// do {
// netbuf_data(buf, &data, &len);
// err = netconn_write(newconn, data, len, NETCONN_COPY);
//#if 0
// if (err != ERR_OK) {
// printf("tcpecho: netconn_write: error "%s"n", lwip_strerr(err));
// }
//#endif
// } while (netbuf_next(buf) >= 0);
netbuf_delete(buf);
}
/*printf("Got EOF, loopingn");*/
/* Close connection and discard connection identifier. */
netconn_close(newconn);
netconn_delete(newconn);
}
}
}

速度大約有45Mbit/s,這里估計是NXP并沒有對其代碼做優(yōu)化,有時間可以繼續(xù)試一下。

推薦器件

更多器件
器件型號 數(shù)量 器件廠商 器件描述 數(shù)據(jù)手冊 ECAD模型 風(fēng)險等級 參考價格 更多信息
ASEMB-125.000MHZ-XY-T 1 Abracon Corporation MEMS OSC XO 125.0000MHZ CMOS SMD
$2.7 查看
SI5324D-C-GM 1 Silicon Laboratories Inc Support Circuit, 1-Func, 6 X 6 MM, ROHS COMPLIANT, MO-220VJJD, QFN-36
$34.9 查看
NC7SZ11P6X 1 Fairchild Semiconductor Corporation AND Gate, LVC/LCX/Z Series, 1-Func, 3-Input, CMOS, PDSO6, 1.25 MM, EIAJ, SC-88, SC-70, 6 PIN
$0.37 查看

相關(guān)推薦