色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
电子发烧友
开通电子发烧友VIP会员 尊享10大特权
海量资料免费下载
精品直播免费看
优质内容免费畅学
课程9折专享价
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

LWIP實現(xiàn)千兆TCP/IP網(wǎng)絡傳輸方案介紹

454398 ? 來源:CSDN 博主 ? 作者: 沒落騎士 ? 2021-01-02 11:05 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

一、前言

之前ZYNQ與PC之間的網(wǎng)絡連接依賴于外接硬件協(xié)議棧芯片,雖然C驅動非常簡單,但網(wǎng)絡帶寬受限。現(xiàn)采用LWIP+PS端MAC控制器+PHY芯片的通用架構。關于LWIP庫,已經(jīng)有很多現(xiàn)成的資料和書籍。其有兩套API,一個是SOCKET,另一個是本例中要用到的RAW。RAW API理解起來較為復雜,整個程序基于中斷機制運行,通過函數(shù)指針完成多層回調函數(shù)的執(zhí)行。SOCKET API需要支持多線程操作系統(tǒng)的支持,也犧牲了效率,但理解和編程都較為容易。實際上SOCKET API是對RAW API的進一步封裝。

二、LWIP Echo Server demo解讀

首先打開Xilinx SDK自帶的LwIP Echo Server demo.
/******************************************************************************
*
* Copyright (C) 2009 - 2014 Xilinx, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Use of the Software is limited solely to applications:
* (a) running on a Xilinx device, or
* (b) that interact with a Xilinx device through a bus or interconnect.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* XILINX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Except as contained in this notice, the name of the Xilinx shall not be used
* in advertising or otherwise to promote the sale, use or other dealings in
* this Software without prior written authorization from Xilinx.
*
******************************************************************************/

#include

#include "xparameters.h"

#include "netif/xadapter.h"

#include "platform.h"
#include "platform_config.h"
#if defined (__arm__) || defined(__aarch64__)
#include "xil_printf.h"
#endif

#include "lwip/tcp.h"
#include "xil_cache.h"

#if LWIP_DHCP==1
#include "lwip/dhcp.h"
#endif

/* defined by each RAW mode application */
void print_app_header();
int start_application();
int transfer_data();
void tcp_fasttmr(void);
void tcp_slowtmr(void);

/* missing declaration in lwIP */
void lwip_init();

#if LWIP_DHCP==1
extern volatile int dhcp_timoutcntr;
err_t dhcp_start(struct netif *netif);
#endif

extern volatile int TcpFastTmrFlag;
extern volatile int TcpSlowTmrFlag;
static struct netif server_netif;
struct netif *echo_netif;

void
print_ip(char *msg, struct ip_addr *ip)
{
print(msg);
xil_printf("%d.%d.%d.%d/n/r", ip4_addr1(ip), ip4_addr2(ip),
ip4_addr3(ip), ip4_addr4(ip));
}

void
print_ip_settings(struct ip_addr *ip, struct ip_addr *mask, struct ip_addr *gw)
{

print_ip("Board IP: ", ip);
print_ip("Netmask : ", mask);
print_ip("Gateway : ", gw);
}

#if defined (__arm__) && !defined (ARMR5)
#if XPAR_GIGE_PCS_PMA_SGMII_CORE_PRESENT == 1 || XPAR_GIGE_PCS_PMA_1000BASEX_CORE_PRESENT == 1
int ProgramSi5324(void);
int ProgramSfpPhy(void);
#endif
#endif

#ifdef XPS_BOARD_ZCU102
#ifdef XPAR_XIICPS_0_DEVICE_ID
int IicPhyReset(void);
#endif
#endif

int main()
{
struct ip_addr ipaddr, netmask, gw;

/* the mac address of the board. this should be unique per board */
unsigned char mac_ethernet_address[] =
{ 0x00, 0x0a, 0x35, 0x00, 0x01, 0x02 };

echo_netif = &server_netif;
#if defined (__arm__) && !defined (ARMR5)
#if XPAR_GIGE_PCS_PMA_SGMII_CORE_PRESENT == 1 || XPAR_GIGE_PCS_PMA_1000BASEX_CORE_PRESENT == 1
ProgramSi5324();
ProgramSfpPhy();
#endif
#endif

/* Define this board specific macro in order perform PHY reset on ZCU102 */
#ifdef XPS_BOARD_ZCU102
IicPhyReset();
#endif

init_platform();

#if LWIP_DHCP==1
ipaddr.addr = 0;
gw.addr = 0;
netmask.addr = 0;
#else
/* initliaze IP addresses to be used */
IP4_ADDR(&ipaddr, 192, 168, 1, 10);
IP4_ADDR(&netmask, 255, 255, 255, 0);
IP4_ADDR(&gw, 192, 168, 1, 1);
#endif
print_app_header();

lwip_init();//網(wǎng)絡參數(shù)初始化

/* Add network interface to the netif_list, and set it as default */
if (!xemac_add(echo_netif, &ipaddr, &netmask,
&gw, mac_ethernet_address,
PLATFORM_EMAC_BASEADDR)) {
xil_printf("Error adding N/W interface/n/r");
return -1;
}
netif_set_default(echo_netif);

/* now enable interrupts */
platform_enable_interrupts();

/* specify that the network if is up */
netif_set_up(echo_netif);

#if (LWIP_DHCP==1)
/* Create a new DHCP client for this interface.
* Note: you must call dhcp_fine_tmr() and dhcp_coarse_tmr() at
* the predefined regular intervals after starting the client.
*/
dhcp_start(echo_netif);
dhcp_timoutcntr = 24;

while(((echo_netif->ip_addr.addr) == 0) && (dhcp_timoutcntr > 0))
xemacif_input(echo_netif);

if (dhcp_timoutcntr if ((echo_netif->ip_addr.addr) == 0) {
xil_printf("DHCP Timeout/r/n");
xil_printf("Configuring default IP of 192.168.1.10/r/n");
IP4_ADDR(&(echo_netif->ip_addr), 192, 168, 1, 10);
IP4_ADDR(&(echo_netif->netmask), 255, 255, 255, 0);
IP4_ADDR(&(echo_netif->gw), 192, 168, 1, 1);
}
}

ipaddr.addr = echo_netif->ip_addr.addr;
gw.addr = echo_netif->gw.addr;
netmask.addr = echo_netif->netmask.addr;
#endif

print_ip_settings(&ipaddr, &netmask, &gw);//打印關鍵網(wǎng)絡參數(shù)

/* start the application (web server, rxtest, txtest, etc..) */
start_application();//設置回調函數(shù),這些函數(shù)在特定事件發(fā)生時以函數(shù)指針的方式被調用

/* receive and process packets */
while (1) {
if (TcpFastTmrFlag) {//發(fā)送處理,如差錯重傳,通過定時器置位標志位
tcp_fasttmr();
TcpFastTmrFlag = 0;
}
if (TcpSlowTmrFlag) {
tcp_slowtmr();
TcpSlowTmrFlag = 0;
}
xemacif_input(echo_netif);//連續(xù)接收數(shù)據(jù)包,并將數(shù)據(jù)包存入LWIP
transfer_data();//空函數(shù)
}

/* never reached */
cleanup_platform();

return 0;
}

echo

整體流程為:初始化LWIP、添加網(wǎng)絡接口(MAC)、使能中斷、設置回調函數(shù)。最終進入主循環(huán),內部不斷檢測定時器中斷標志位,當標志位TcpFastTmrFlag或TcpSlowTmrFlag為1則調用相應的處理函數(shù),完成超時重傳等任務。接下來查看回調函數(shù)的設置:
int start_application()
{
struct tcp_pcb *pcb;//protocol control block 簡稱PCB
err_t err;
unsigned port = 7;

/* create new TCP PCB structure */
pcb = tcp_new();
if (!pcb) {
xil_printf("Error creating PCB. Out of Memory/n/r");
return -1;
}

/* bind to specified @port */
err = tcp_bind(pcb, IP_ADDR_ANY, port);
if (err != ERR_OK) {
xil_printf("Unable to bind to port %d: err = %d/n/r", port, err);
return -2;
}

/* we do not need any arguments to callback functions */
tcp_arg(pcb, NULL);

/* listen for connections */
pcb = tcp_listen(pcb);
if (!pcb) {
xil_printf("Out of memory while tcp_listen/n/r");
return -3;
}

/* specify callback to use for incoming connections */
tcp_accept(pcb, accept_callback);

xil_printf("TCP echo server started @ port %d/n/r", port);

return 0;
}

start_application

創(chuàng)建PCB(protocol control block)建立連接、綁定IP地址和端口號、監(jiān)聽請求,最后tcp_accept函數(shù)用于指定當監(jiān)聽到連接請求時調用的函數(shù)accept_callback。進入該函數(shù)內部查看:
err_t accept_callback(void *arg, struct tcp_pcb *newpcb, err_t err)
{
static int connection = 1;

/* set the receive callback for this connection */
tcp_recv(newpcb, recv_callback);

/* just use an integer number indicating the connection id as the
callback argument */
tcp_arg(newpcb, (void*)(UINTPTR)connection);

/* increment for subsequent accepted connections */
connection++;

return ERR_OK;
}

accept_callback

內部主要通過tcp_recv函數(shù)來指定當收到TCP包后調用的函數(shù)recv_callback。我們再次觀察其內容:
err_t recv_callback(void *arg, struct tcp_pcb *tpcb,
struct pbuf *p, err_t err)
{
/* do not read the packet if we are not in ESTABLISHED state */
if (!p) {
tcp_close(tpcb);
tcp_recv(tpcb, NULL);
return ERR_OK;
}

/* indicate that the packet has been received */
tcp_recved(tpcb, p->len);

/* echo back the payload */
/* in this case, we assume that the payload is if (tcp_sndbuf(tpcb) > p->len) {
err = tcp_write(tpcb, p->payload, p->len, 1);
} else
xil_printf("no space in tcp_sndbuf/n/r");

/* free the received pbuf */
pbuf_free(p);

return ERR_OK;
}

recv_callback

tcp_recved函數(shù)指示用來告知LWIP接收數(shù)據(jù)量,然后檢測發(fā)送緩沖區(qū)是否足夠容納接收內容,若大于則調用tcp_write函數(shù)將接收數(shù)據(jù)寫入發(fā)送緩沖區(qū)等待發(fā)送。綜上,整體的調用流程為:tcp_accept -> accept_callback -> tcp_recv -> recv_callback -> tcp_recved和tcp_write。前四個用于接收,后兩個用于發(fā)送。

函數(shù)解析完畢,之后改動上位機網(wǎng)絡參數(shù),使PC機IP地址與Board在同一網(wǎng)段內,這里設置為192.168.1.11.打開網(wǎng)絡調試助手,設置PC為TCP Client。以下是ZYNQ串口打印及網(wǎng)絡調試結果。

o4YBAF9uI1KAPNqyAADUV0hsB-o115.jpg

三、TCP Client Send data

現(xiàn)在我們來改動demo,設計一個客戶端發(fā)送數(shù)據(jù)包的示例工程,功能是循環(huán)發(fā)送一個常數(shù)數(shù)組中數(shù)據(jù)到遠程服務器。該工程參考米聯(lián)客教程中相關章節(jié)內容。代碼如下:
/******************************************************************************
*
* Copyright (C) 2009 - 2014 Xilinx, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Use of the Software is limited solely to applications:
* (a) running on a Xilinx device, or
* (b) that interact with a Xilinx device through a bus or interconnect.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* XILINX BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Except as contained in this notice, the name of the Xilinx shall not be used
* in advertising or otherwise to promote the sale, use or other dealings in
* this Software without prior written authorization from Xilinx.
*
******************************************************************************/

#include

#include "xparameters.h"

#include "netif/xadapter.h"

#include "platform.h"
#include "platform_config.h"
#if defined (__arm__) || defined(__aarch64__)
#include "xil_printf.h"
#endif

#include "lwip/tcp.h"
#include "xil_cache.h"

#if LWIP_DHCP==1
#include "lwip/dhcp.h"
#endif

/* defined by each RAW mode application */
void print_app_header();
int client_application();
//int start_application();
//int transfer_data();
int send_data();
void tcp_fasttmr(void);
void tcp_slowtmr(void);

/* missing declaration in lwIP */
void lwip_init();

#if LWIP_DHCP==1
extern volatile int dhcp_timoutcntr;
err_t dhcp_start(struct netif *netif);
#endif

extern volatile int TcpFastTmrFlag;
extern volatile int TcpSlowTmrFlag;
static struct netif server_netif;
struct netif *echo_netif;

void
print_ip(char *msg, struct ip_addr *ip)
{
print(msg);
xil_printf("%d.%d.%d.%d/n/r", ip4_addr1(ip), ip4_addr2(ip),
ip4_addr3(ip), ip4_addr4(ip));
}

void
print_ip_settings(struct ip_addr *ip, struct ip_addr *mask, struct ip_addr *gw)
{

print_ip("Board IP: ", ip);
print_ip("Netmask : ", mask);
print_ip("Gateway : ", gw);
}

int main()
{
uint cycle = 0;
struct ip_addr ipaddr, netmask, gw;

/* the mac address of the board. this should be unique per board */
unsigned char mac_ethernet_address[] =
{ 0x00, 0x0a, 0x35, 0x00, 0x01, 0x02 };

echo_netif = &server_netif;

/* Define this board specific macro in order perform PHY reset on ZCU102 */

init_platform();

/* initliaze IP addresses to be used */
IP4_ADDR(&ipaddr, 192, 168, 1, 10);
IP4_ADDR(&netmask, 255, 255, 255, 0);
IP4_ADDR(&gw, 192, 168, 1, 1);

print_app_header();

lwip_init();

/* Add network interface to the netif_list, and set it as default */
if (!xemac_add(echo_netif, &ipaddr, &netmask,
&gw, mac_ethernet_address,
PLATFORM_EMAC_BASEADDR)) {
xil_printf("Error adding N/W interface/n/r");
return -1;
}
netif_set_default(echo_netif);

/* now enable interrupts */
platform_enable_interrupts();

/* specify that the network if is up */
netif_set_up(echo_netif);

print_ip_settings(&ipaddr, &netmask, &gw);

/* start the application (web server, rxtest, txtest, etc..) */
//start_application();
client_application();

/* receive and process packets */
while (1) {
if (TcpFastTmrFlag) {
tcp_fasttmr();
TcpFastTmrFlag = 0;
}
if (TcpSlowTmrFlag) {
tcp_slowtmr();
TcpSlowTmrFlag = 0;
}
xemacif_input(echo_netif);
//transfer_data();
if(cycle == 9999){
cycle = 0;
send_data();
}
else
cycle++;
}

return 0;
}

main

函數(shù)定義:
/*
* tcp_trans.c
*
* Created on: 2018年10月18日
* Author: s
*/

#include
#include

#include "lwip/err.h"
#include "lwip/tcp.h"
#include "lwipopts.h"
#include "xil_cache.h"
#include "xil_printf.h"
#include "sleep.h"

#define TX_SIZE 10

static struct tcp_pcb*connected_pcb = NULL;
unsigned client_connected = 0;
//靜態(tài)全局函數(shù) 外部文件不可見
uint tcp_trans_done = 0;

u_char data[TX_SIZE] = {0,1,2,3,4,5,6,7,8,9};

int send_data()
{
err_t err;
struct tcp_pcb *tpcb = connected_pcb;

if (!tpcb)
return -1;

//判斷發(fā)送數(shù)據(jù)長度是否小于發(fā)送緩沖區(qū)剩余可用長度
if (TX_SIZE //Write data for sending (but does not send it immediately).
err = tcp_write(tpcb, data, TX_SIZE, 1);
if (err != ERR_OK) {
xil_printf("txperf: Error on tcp_write: %d/r/n", err);
connected_pcb = NULL;
return -1;
}

//Find out what we can send and send it
err = tcp_output(tpcb);
if (err != ERR_OK) {
xil_printf("txperf: Error on tcp_output: %d/r/n",err);
return -1;
}
}
else
xil_printf("no space in tcp_sndbuf/n/r");

return 0;
}

static err_t tcp_sent_callback(void *arg, struct tcp_pcb *tpcb,u16_t len)
{
tcp_trans_done ++;
return ERR_OK;
}

//tcp連接回調函數(shù) 設置為靜態(tài)函數(shù),外部文件不可見
static err_t tcp_connected_callback(void *arg, struct tcp_pcb *tpcb, err_t err)
{
/* store state */
connected_pcb = tpcb;

/* set callback values & functions */
tcp_arg(tpcb, NULL);

//發(fā)送到遠程主機后調用tcp_sent_callback
tcp_sent(tpcb, tcp_sent_callback);

client_connected = 1;

/* initiate data transfer */
return ERR_OK;
}

int client_application()
{
struct tcp_pcb *pcb;
struct ip_addr ipaddr;
err_t err;
unsigned port = 7;

/* create new TCP PCB structure */
pcb = tcp_new();
if (!pcb) {
xil_printf("Error creating PCB. Out of Memory/n/r");
return -1;
}

/* connect to iperf tcp server */
IP4_ADDR(&ipaddr, 192, 168, 1, 209);//設置要連接的主機的地址

//當連接到主機時,調用tcp_connected_callback
err = tcp_connect(pcb, &ipaddr, port, tcp_connected_callback);
if (err != ERR_OK) {
xil_printf("txperf: tcp_connect returned error: %d/r/n", err);
return err;
}

return 0;
}

tcp_trans

可以看出還是一樣的套路,在client_application函數(shù)中設置回調函數(shù)。首先新建PCB,tcp_connect函數(shù)設定要連接遠程服務器的IP地址和端口號,連接建立時將調用回調函數(shù)tcp_connected_callback。tcp_connected_callback內部tcp_sent函數(shù)用于指定當發(fā)送數(shù)據(jù)包完成后執(zhí)行的tcp_sent_callback。tcp_sent_callback內部只利用tcp_trans_done變量計數(shù)發(fā)送次數(shù)。而真正的發(fā)送處理任務則交給主循環(huán)中的send_data。若處于連接狀態(tài),且發(fā)送緩沖區(qū)容量比帶發(fā)送數(shù)據(jù)量大,則調用tcp_write將待發(fā)送數(shù)據(jù)寫入發(fā)送緩沖區(qū),之后調用tcp_output函數(shù)立即傳輸發(fā)送緩沖區(qū)內容。如果不調用tcp_output,LWIP會等待數(shù)據(jù)量達到一定值時一起發(fā)送來提高效率,是否調用tcp_output函數(shù)可根據(jù)具體需求而定。

接下來看下實驗結果:

pIYBAF9uI1aAKHFjAAL7le4pQH4369.png

PC端正確接收到常數(shù)數(shù)組,實驗無誤。

參考文獻:

1 LWIP 無OS RAW-API 函數(shù) - 專注的力量 - CSDN博客 https://blog.csdn.net/liang890319/article/details/8574603

2 解讀TCP 四種定時器 - xiaofei0859的專欄 - CSDN博客 https://blog.csdn.net/xiaofei0859/article/details/52794576

3 米聯(lián) 《ZYNQ SOC修煉秘籍》

編輯:hfy


聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權轉載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 服務器
    +關注

    關注

    13

    文章

    9802

    瀏覽量

    88087
  • 操作系統(tǒng)

    關注

    37

    文章

    7159

    瀏覽量

    125687
  • Socket
    +關注

    關注

    1

    文章

    212

    瀏覽量

    35905
  • 網(wǎng)絡傳輸

    關注

    0

    文章

    143

    瀏覽量

    18020
  • Zynq
    +關注

    關注

    10

    文章

    615

    瀏覽量

    48283
收藏 0人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關推薦
    熱點推薦

    智多晶LWIP網(wǎng)絡通信系統(tǒng)介紹

    在物聯(lián)網(wǎng)蓬勃興起的當下,嵌入式設備的網(wǎng)絡通信能力如同為其插上了騰飛的翅膀,使其能夠自由穿梭于信息的浩瀚海洋。而 LWIP,宛如一位身姿矯健的輕騎兵,在資源有限的嵌入式系統(tǒng)中飛馳,輕松完成各種復雜的網(wǎng)絡通信任務。西安智多晶微電子有
    的頭像 發(fā)表于 04-10 16:27 ?823次閱讀
    智多晶<b class='flag-5'>LWIP</b><b class='flag-5'>網(wǎng)絡</b>通信系統(tǒng)<b class='flag-5'>介紹</b>

    EtherNet/IP轉Modbus TCP:新能源風電監(jiān)控與分析實用案例

    的控制系統(tǒng)、變流器等采用 MODBUS TCP 協(xié)議的設備以及基于 EtherNet/IP 協(xié)議的遠程監(jiān)控系統(tǒng)和數(shù)據(jù)分析系統(tǒng)均已正常運行且網(wǎng)絡連接正常。 二、硬件設備 風力發(fā)電機組變流器: 支持標準
    的頭像 發(fā)表于 02-17 15:54 ?412次閱讀
    EtherNet/<b class='flag-5'>IP</b>轉Modbus <b class='flag-5'>TCP</b>:新能源風電監(jiān)控與分析實用案例

    《DNESP32S3使用指南-IDF版_V1.6》第四十七章 lwIP初探

    應用層未實現(xiàn),需要開發(fā)者自行集成或實現(xiàn)特定應用程序 傳輸實現(xiàn)TCP/UDP協(xié)議功能 網(wǎng)絡
    發(fā)表于 02-07 09:28

    什么是socket編程 socket與tcp/ip協(xié)議的關系

    基于TCP/IP協(xié)議族,這是一組用于網(wǎng)絡通信的協(xié)議,包括傳輸控制協(xié)議(TCP)和互聯(lián)網(wǎng)協(xié)議(IP
    的頭像 發(fā)表于 11-01 16:01 ?1231次閱讀

    芯驛電子 ALINX 推出全新 IP 核產品線,覆蓋 TCP/UDP/NVMe AXI IP

    在創(chuàng)新加速的浪潮中,為更好地響應客戶群需求, 芯驛電子 ALINX 推出全新 IP 核產品線 ,致力于為高性能數(shù)據(jù)傳輸和復雜計算需求提供 高帶寬、低延遲 的解決方案。發(fā)布的第一批 IP
    的頭像 發(fā)表于 10-30 17:39 ?920次閱讀
     芯驛電子 ALINX 推出全新 <b class='flag-5'>IP</b> 核產品線,覆蓋 <b class='flag-5'>TCP</b>/UDP/NVMe AXI <b class='flag-5'>IP</b> 核

    TCP協(xié)議是什么

    網(wǎng)絡通信的廣闊領域中,TCP(Transmission Control Protocol,傳輸控制協(xié)議)扮演著舉足輕重的角色。作為TCP/IP
    的頭像 發(fā)表于 10-09 13:54 ?1834次閱讀

    ip網(wǎng)絡音頻終端是什么

    IP網(wǎng)絡音頻終端是一種數(shù)字通信設備,它結合了網(wǎng)絡技術和音頻處理技術,用于實現(xiàn)網(wǎng)絡環(huán)境下的音頻通信和傳輸
    的頭像 發(fā)表于 10-08 14:52 ?1468次閱讀

    EtherNet/IP主站轉Modbus-TCP協(xié)議網(wǎng)關

    捷米特JM-EIPM-TCP網(wǎng)關實現(xiàn)連接EtherNet/IP設備和網(wǎng)絡到Modbus TCP網(wǎng)絡
    的頭像 發(fā)表于 09-25 11:49 ?522次閱讀
    EtherNet/<b class='flag-5'>IP</b>主站轉Modbus-<b class='flag-5'>TCP</b>協(xié)議網(wǎng)關

    深入了解 Windows 系統(tǒng) TCP/IP 參數(shù)配置

    概述 TCP/IP是一組用于實現(xiàn)計算機網(wǎng)絡互聯(lián)的通信協(xié)議。它包括了多個層次的協(xié)議,如網(wǎng)絡接口層、網(wǎng)際層、
    的頭像 發(fā)表于 09-04 17:24 ?839次閱讀

    EtherNet/IP轉Modbus-TCP協(xié)議網(wǎng)關(EtherNet/IP轉Modbus-TCP

    一,設備主要功能 捷米特JM-EIP-TCP型網(wǎng)關實現(xiàn)EtherNet/IP網(wǎng)絡與Modbus TCP網(wǎng)
    的頭像 發(fā)表于 09-04 11:09 ?878次閱讀
    EtherNet/<b class='flag-5'>IP</b>轉Modbus-<b class='flag-5'>TCP</b>協(xié)議網(wǎng)關(EtherNet/<b class='flag-5'>IP</b>轉Modbus-<b class='flag-5'>TCP</b>)

    EtherNet/IP轉Modbus-TCP協(xié)議網(wǎng)關(JM-EIP-TCP

    一,設備主要功能 捷米特JM-EIP-TCP型網(wǎng)關實現(xiàn)EtherNet/IP網(wǎng)絡與Modbus TCP網(wǎng)
    的頭像 發(fā)表于 08-26 14:39 ?610次閱讀
    EtherNet/<b class='flag-5'>IP</b>轉Modbus-<b class='flag-5'>TCP</b>協(xié)議網(wǎng)關(JM-EIP-<b class='flag-5'>TCP</b>)

    串口服務器和TCP/IP協(xié)議棧是什么關系

    串口服務器與TCP/IP協(xié)議棧之間存在著緊密而復雜的關系。這種關系主要體現(xiàn)在串口服務器如何利用TCP/IP協(xié)議棧來實現(xiàn)串口設備與
    的頭像 發(fā)表于 08-25 17:35 ?2138次閱讀

    一文了解TCP/IP協(xié)議

    TCP/IP協(xié)議是現(xiàn)代計算機網(wǎng)絡通信的基礎,是互聯(lián)網(wǎng)及局域網(wǎng)廣泛使用的一套協(xié)議。TCP/IP協(xié)議集包括許多協(xié)議,其中最重要的是
    的頭像 發(fā)表于 08-07 15:38 ?3568次閱讀
    一文了解<b class='flag-5'>TCP</b>/<b class='flag-5'>IP</b>協(xié)議

    華納云:TCP IP協(xié)議的發(fā)展和優(yōu)勢

    如何被組織、傳輸和路由。TCP/IP協(xié)議集包含了許多協(xié)議,每個協(xié)議負責網(wǎng)絡通信過程中的不同方面。下面是對TCP/
    的頭像 發(fā)表于 07-25 16:49 ?860次閱讀

    實測952Mbps!四路千兆網(wǎng)PCIe拓展方案,國產工業(yè)級!

    影像系統(tǒng)、車載環(huán)視系統(tǒng)、目標識別跟蹤等領域。圖1PCIe擴展多路千兆網(wǎng)口方案介紹 方案基于無錫沐創(chuàng)N500L-AM2C-DD、N500L-AM4C-QD
    發(fā)表于 07-25 14:57
    主站蜘蛛池模板: 网红刘婷hd国产高清 | 做i爱视频30分钟免费 | 德国美女密密麻麻浓毛 | 日本特殊精油按摩 | java农村野外妇女hd | 回复术士人生重启在线观看 | 免费观看成人毛片 | YELLOW在线观看高清视频免费 | 精品熟女少妇AV免费观看 | 国产成人无码AV麻豆 | 免费韩伦影院在线观看 | 国产久爱青草视频在线观看 | 日本性hd | 99re28久久热在线观看 | 伊人久久大香线蕉综合色啪 | 日本无码专区亚洲麻豆 | A级毛片无码久久精品免费 a级毛片黄免费a级毛片 | 国产精品观看视频免费完整版 | 香蕉精品国产自在现线拍 | 久久本道久久综合伊人 | 无码日韩人妻精品久久蜜桃免费 | 伊人久久一本 | 一道精品视频一区二区 | chinesevideoshd性舞| 一个人的HD高清在线观看 | 国产欧美亚洲综合第一页 | 伊人精品久久久大香线蕉99 | 里番acg纲手的熟蜜姬训练场 | 内射无码AV-区二区在线观看 | 日日干夜夜啪蕉视频 | 国产嫩草影院精品免费网址 | 国产嫩草影院精品免费网址 | 伊人大香人妻在线播放 | 纯肉高H种马艳遇风流多 | 2022久久精品国产色蜜蜜麻豆 | 影888午夜理论不卡 樱桃熟了A级毛片 | 99在线观看视频免费 | 狠狠色狠狠色综合日日92 | 免费 高清 中文在线观看 | 最新影音先锋av资源台 | 久久久久999 |

    電子發(fā)燒友

    中國電子工程師最喜歡的網(wǎng)站

    • 2931785位工程師會員交流學習
    • 獲取您個性化的科技前沿技術信息
    • 參加活動獲取豐厚的禮品