硬汉嵌入式论坛

 找回密码
 立即注册
查看: 429|回复: 15
收起左侧

[技术讨论] GD32H759双MAC运行LWIP

[复制链接]

1

主题

7

回帖

10

积分

新手上路

积分
10
发表于 2025-6-12 13:51:06 | 显示全部楼层 |阅读模式
GD32H759官方例程中有LWIP例程,也定义好了ENET0和ENET1,通道打开宏定义,实现2路MAC独立工作均正常,现在要想使2路MAC同时工作该怎么做?有相关移植说明?现在简单的将ENET0和ENET1宏定义都打开,2网口均PING
不同
回复

使用道具 举报

1万

主题

7万

回帖

11万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
116747
QQ
发表于 2025-6-13 07:17:58 | 显示全部楼层
LWIP的双网口没测试过,测试过TCPnet的,如果芯片里面是两个MAC,分别使能控制即可,我这个是一个外置MAC和一个MAC的测试。

RTX5全家桶源码综合模板发布V3.0,含FreeRTOS内核版本,将其打造成直接面向实际项目应用的综合框架(2025-03-10)
https://www.armbbs.cn/forum.php? ... 4516&fromuid=58
(出处: 硬汉嵌入式论坛)
回复

使用道具 举报

4

主题

1455

回帖

1467

积分

至尊会员

积分
1467
发表于 2025-6-13 13:06:25 | 显示全部楼层
759里面只有一个MAC吧?
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-13 15:55:18 | 显示全部楼层
morning_enr6U 发表于 2025-6-13 13:06
759里面只有一个MAC吧?

两个MAC,硬件已设计好,单独使能单个mac没有问题
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-13 15:56:38 | 显示全部楼层
eric2013 发表于 2025-6-13 07:17
LWIP的双网口没测试过,测试过TCPnet的,如果芯片里面是两个MAC,分别使能控制即可,我这个是一个外置MAC和 ...

我单独使能了,还是不行,初始化后开始阶段两个网口偶尔能PING通几包,
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-13 16:48:12 | 显示全部楼层
能看看程序吗
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-14 07:38:00 | 显示全部楼层

官方程序,现在就是不知道该怎么修改
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-14 11:52:52 | 显示全部楼层
一定要爱你 发表于 2025-6-14 07:38
官方程序,现在就是不知道该怎么修改

是不是这个原因
PixPin_2025-06-14_01-52-04.png
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-15 17:00:08 | 显示全部楼层
tovinz 发表于 2025-6-14 11:52
是不是这个原因

应该是,官方例子写的不能同时用,我按照网络例子,将ethernetif.c中函数都分开为2网口各自的还是不行,现在就是无从下手
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-15 22:17:31 | 显示全部楼层
两个网口同时工作是连接到同一个网关下面吗,我看程序上两个网卡的MAC地址,IP地址配置的同一个。
而且关键是描述符和收发缓冲没有给两个MAC控制器单独定义,看一下 enet_descriptors_chain_init()
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-16 08:13:43 | 显示全部楼层
tovinz 发表于 2025-6-15 22:17
两个网口同时工作是连接到同一个网关下面吗,我看程序上两个网卡的MAC地址,IP地址配置的同一个。
而且关键 ...

[C] 纯文本查看 复制代码
/**
 * @file
 * Ethernet Interface for standalone applications (without RTOS)
 *
 */

/*
Mac地址分为2个,网段也不一样了,两个网卡分别初始化
 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 * OF SUCH DAMAGE.
 *
 * This file is part of the lwIP TCP/IP stack.
 *
 * Author: Adam Dunkels <[email]adam@sics.se[/email]>
 *
 */

#include "lwip/mem.h"
#include "netif/etharp.h"
#include "ethernetif.h"
#include "gd32h7xx_enet.h"
#include "main.h"
#include <string.h>


/* network interface name */
#define IFNAME0 'G'
#define IFNAME1 'D'

/* ENET RxDMA/TxDMA descriptor */
extern enet_descriptors_struct  rxdesc_tab[ENET_RXBUF_NUM], txdesc_tab[ENET_TXBUF_NUM];

/* ENET receive buffer  */
extern uint8_t rx_buff[ENET_RXBUF_NUM][ENET_RXBUF_SIZE];

/* ENET transmit buffer */
extern uint8_t tx_buff[ENET_TXBUF_NUM][ENET_TXBUF_SIZE];

/*global transmit and receive descriptors pointers */
extern enet_descriptors_struct  *dma_current_txdesc;
extern enet_descriptors_struct  *dma_current_rxdesc;

/* preserve another ENET RxDMA/TxDMA ptp descriptor for normal mode */
enet_descriptors_struct  ptp_txstructure[ENET_TXBUF_NUM];
enet_descriptors_struct  ptp_rxstructure[ENET_RXBUF_NUM];

/**
 * In this function, the hardware should be initialized.
 * Called from ethernetif_init().
 *
 * @param netif the already initialized lwip network interface structure
 *        for this ethernetif
 */
static void low_level_init0(struct netif *netif)
{
#ifdef CHECKSUM_BY_HARDWARE
    int i;
#endif /* CHECKSUM_BY_HARDWARE */
    /* set MAC hardware address length */
    netif->hwaddr_len = ETHARP_HWADDR_LEN;

    /* set MAC hardware address */
    netif->hwaddr[0] =  MAC_ADDR0_A;
    netif->hwaddr[1] =  MAC_ADDR1_A;
    netif->hwaddr[2] =  MAC_ADDR2_A;
    netif->hwaddr[3] =  MAC_ADDR3_A;
    netif->hwaddr[4] =  MAC_ADDR4_A;
    netif->hwaddr[5] =  MAC_ADDR5_A;
#ifdef USE_ENET0
    /* initialize MAC address in ethernet MAC */
    enet_mac_address_set(ENET0, ENET_MAC_ADDRESS0, netif->hwaddr);
#endif /* USE_ENET0 */


    /* maximum transfer unit */
    netif->mtu = 1500;

    /* device capabilities */
    /* don't set NETIF_FLAG_ETHARP if this device is not an ethernet one */
    netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP;

#ifdef USE_ENET0
    /* initialize descriptors list: chain/ring mode */
#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
    enet_ptp_enhanced_descriptors_chain_init(ENET0, ENET_DMA_TX);
    enet_ptp_enhanced_descriptors_chain_init(ENET0, ENET_DMA_RX);
#else
    enet_descriptors_chain_init(ENET0, ENET_DMA_TX);
    enet_descriptors_chain_init(ENET0, ENET_DMA_RX);

//    enet_descriptors_ring_init(ENET0, ENET_DMA_TX);
//    enet_descriptors_ring_init(ENET0, ENET_DMA_RX);
#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */
#endif /* USE_ENET0 */


    /* enable ethernet Rx interrrupt */
    {
        int i;
        for(i = 0; i < ENET_RXBUF_NUM; i++) {
            enet_rx_desc_immediate_receive_complete_interrupt(&rxdesc_tab[i]);
        }
    }

#ifdef CHECKSUM_BY_HARDWARE
    /* enable the TCP, UDP and ICMP checksum insertion for the Tx frames */
    for(i = 0; i < ENET_TXBUF_NUM; i++) {
        enet_transmit_checksum_config(&txdesc_tab[i], ENET_CHECKSUM_TCPUDPICMP_FULL);
    }
#endif /* CHECKSUM_BY_HARDWARE */

    /* note: TCP, UDP, ICMP checksum checking for received frame are enabled in DMA config */
#ifdef USE_ENET0
    /* enable MAC and DMA transmission and reception */
    enet_enable(ENET0);
#endif /* USE_ENET0 */

}
static void low_level_init1(struct netif *netif)
{
#ifdef CHECKSUM_BY_HARDWARE
    int i;
#endif /* CHECKSUM_BY_HARDWARE */
    /* set MAC hardware address length */
    netif->hwaddr_len = ETHARP_HWADDR_LEN;

    /* set MAC hardware address */
    netif->hwaddr[0] =  MAC_ADDR0_B;
    netif->hwaddr[1] =  MAC_ADDR1_B;
    netif->hwaddr[2] =  MAC_ADDR2_B;
    netif->hwaddr[3] =  MAC_ADDR3_B;
    netif->hwaddr[4] =  MAC_ADDR4_B;
    netif->hwaddr[5] =  MAC_ADDR5_B;

#ifdef USE_ENET1
    /* initialize MAC address in ethernet MAC */
    enet_mac_address_set(ENET1, ENET_MAC_ADDRESS0, netif->hwaddr);
#endif /* USE_ENET1 */


    /* maximum transfer unit */
    netif->mtu = 1500;

    /* device capabilities */
    /* don't set NETIF_FLAG_ETHARP if this device is not an ethernet one */
    netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP;

#ifdef USE_ENET1
    /* initialize descriptors list: chain/ring mode */
#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
    enet_ptp_enhanced_descriptors_chain_init(ENET1, ENET_DMA_TX);
    enet_ptp_enhanced_descriptors_chain_init(ENET1, ENET_DMA_RX);
#else
    enet_descriptors_chain_init(ENET1, ENET_DMA_TX);
    enet_descriptors_chain_init(ENET1, ENET_DMA_RX);

//    enet_descriptors_ring_init(ENET1, ENET_DMA_TX);
//    enet_descriptors_ring_init(ENET1, ENET_DMA_RX);
#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */
#endif /* USE_ENET1 */

    /* enable ethernet Rx interrrupt */
    {
        int i;
        for(i = 0; i < ENET_RXBUF_NUM; i++) {
            enet_rx_desc_immediate_receive_complete_interrupt(&rxdesc_tab[i]);
        }
    }

#ifdef CHECKSUM_BY_HARDWARE
    /* enable the TCP, UDP and ICMP checksum insertion for the Tx frames */
    for(i = 0; i < ENET_TXBUF_NUM; i++) {
        enet_transmit_checksum_config(&txdesc_tab[i], ENET_CHECKSUM_TCPUDPICMP_FULL);
    }
#endif /* CHECKSUM_BY_HARDWARE */

    /* note: TCP, UDP, ICMP checksum checking for received frame are enabled in DMA config */
#ifdef USE_ENET1
    /* enable MAC and DMA transmission and reception */
    enet_enable(ENET1);
#endif /* USE_ENET1 */
}
/**
 * This function should do the actual transmission of the packet. The packet is
 * contained in the pbuf that is passed to the function. This pbuf
 * might be chained.
 *
 * @param netif the lwip network interface structure for this ethernetif
 * @param p the MAC packet to send (e.g. IP packet including MAC addresses and type)
 * @return ERR_OK if the packet could be sent
 *         an err_t value if the packet couldn't be sent
 *
 * @note Returning ERR_MEM here if a DMA queue of your MAC is full can lead to
 *       strange results. You might consider waiting for space in the DMA queue
 *       to become availale since the stack doesn't retry to send a packet
 *       dropped because of memory failure (except for the TCP timers).
 */

static err_t low_level_output0(struct netif *netif, struct pbuf *p)
{
    struct pbuf *q;
    int framelength = 0;
    uint8_t *buffer;

    while((uint32_t)RESET != (dma_current_txdesc->status & ENET_TDES0_DAV)) {
    }


    buffer = (uint8_t *)(enet_desc_information_get(ENET0, dma_current_txdesc, TXDESC_BUFFER_1_ADDR));

    /* copy frame from pbufs to driver buffers */
    for(q = p; q != NULL; q = q->next) {
        memcpy((uint8_t *)&buffer[framelength], q->payload, q->len);
        framelength = framelength + q->len;
    }

    /* note: padding and CRC for transmitted frame
       are automatically inserted by DMA */

    /* transmit descriptors to give to DMA */
#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
    ENET_NOCOPY_PTPFRAME_TRANSMIT_ENHANCED_MODE(ENET0, framelength, NULL);
#else
    ENET_NOCOPY_FRAME_TRANSMIT(ENET0, framelength);
#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */

    return ERR_OK;
}
static err_t low_level_output1(struct netif *netif, struct pbuf *p)
{
    struct pbuf *q;
    int framelength = 0;
    uint8_t *buffer;

    while((uint32_t)RESET != (dma_current_txdesc->status & ENET_TDES0_DAV)) {
    }

    buffer = (uint8_t *)(enet_desc_information_get(ENET1, dma_current_txdesc, TXDESC_BUFFER_1_ADDR));

    /* copy frame from pbufs to driver buffers */
    for(q = p; q != NULL; q = q->next) {
        memcpy((uint8_t *)&buffer[framelength], q->payload, q->len);
        framelength = framelength + q->len;
    }

    /* note: padding and CRC for transmitted frame
       are automatically inserted by DMA */

    /* transmit descriptors to give to DMA */
#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
    ENET_NOCOPY_PTPFRAME_TRANSMIT_ENHANCED_MODE(ENET1, framelength, NULL);
#else
    ENET_NOCOPY_FRAME_TRANSMIT(ENET1, framelength);
#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */


    return ERR_OK;
}
/**
 * Should allocate a pbuf and transfer the bytes of the incoming
 * packet from the interface into the pbuf.
 *
 * @param netif the lwip network interface structure for this ethernetif
 * @return a pbuf filled with the received packet (including MAC header)
 *         NULL on memory error
 */
static struct pbuf *low_level_input0(struct netif *netif)
{
	struct pbuf *p, *q;
	u16_t len;
	int l = 0;
	uint8_t *buffer;

	p = NULL;

	/* obtain the size of the packet and put it into the "len" variable. */
	len = enet_desc_information_get(ENET0, dma_current_rxdesc, RXDESC_FRAME_LENGTH);
	buffer = (uint8_t *)(enet_desc_information_get(ENET0, dma_current_rxdesc, RXDESC_BUFFER_1_ADDR));

	/* we allocate a pbuf chain of pbufs from the Lwip buffer pool */
	p = pbuf_alloc(PBUF_RAW, len, PBUF_POOL);

	/* copy received frame to pbuf chain */
	if(p != NULL) {
			for(q = p; q != NULL; q = q->next) {
					memcpy((uint8_t *)q->payload, (u8_t *)&buffer[l], q->len);
					l = l + q->len;
			}
	}

	#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
	ENET_NOCOPY_PTPFRAME_RECEIVE_ENHANCED_MODE(ENET0, NULL);
	#else
	ENET_NOCOPY_FRAME_RECEIVE(ENET0);
	#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */
	return p;
}
static struct pbuf *low_level_input1(struct netif *netif)
{
    struct pbuf *p, *q;
    u16_t len;
    int l = 0;
    uint8_t *buffer;

    p = NULL;

    /* obtain the size of the packet and put it into the "len" variable. */
    len = enet_desc_information_get(ENET1, dma_current_rxdesc, RXDESC_FRAME_LENGTH);
    buffer = (uint8_t *)(enet_desc_information_get(ENET1, dma_current_rxdesc, RXDESC_BUFFER_1_ADDR));

    /* we allocate a pbuf chain of pbufs from the Lwip buffer pool */
    p = pbuf_alloc(PBUF_RAW, len, PBUF_POOL);

    /* copy received frame to pbuf chain */
    if(p != NULL) {
        for(q = p; q != NULL; q = q->next) {
            memcpy((uint8_t *)q->payload, (u8_t *)&buffer[l], q->len);
            l = l + q->len;
        }
    }

#ifdef SELECT_DESCRIPTORS_ENHANCED_MODE
    ENET_NOCOPY_PTPFRAME_RECEIVE_ENHANCED_MODE(ENET1, NULL);
#else
    ENET_NOCOPY_FRAME_RECEIVE(ENET1);
#endif /* SELECT_DESCRIPTORS_ENHANCED_MODE */

    return p;
}
/**
 * This function should be called when a packet is ready to be read
 * from the interface. It uses the function low_level_input() that
 * should handle the actual reception of bytes from the network
 * interface. Then the type of the received packet is determined and
 * the appropriate input function is called.
 *
 * @param netif the lwip network interface structure for this ethernetif
 */
err_t ethernetif_input0(struct netif *netif)
{
    err_t err;
    struct pbuf *p;

    /* move received packet into a new pbuf */
    p = low_level_input0(netif);

    /* no packet could be read, silently ignore this */
    if(p == NULL) {
        return ERR_MEM;
    }

    /* entry point to the LwIP stack */
    err = netif->input(p, netif);

    if(err != ERR_OK) {
        LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IP input error\n"));
        pbuf_free(p);
        p = NULL;
    }
    return err;
}
err_t ethernetif_input1(struct netif *netif)
{
    err_t err;
    struct pbuf *p;

    /* move received packet into a new pbuf */
    p = low_level_input1(netif);

    /* no packet could be read, silently ignore this */
    if(p == NULL) {
        return ERR_MEM;
    }

    /* entry point to the LwIP stack */
    err = netif->input(p, netif);

    if(err != ERR_OK) {
        LWIP_DEBUGF(NETIF_DEBUG, ("ethernetif_input: IP input error\n"));
        pbuf_free(p);
        p = NULL;
    }
    return err;
}
/**
 * Should be called at the beginning of the program to set up the
 * network interface. It calls the function low_level_init() to do the
 * actual setup of the hardware.
 *
 * This function should be passed as a parameter to netif_add().
 *
 * @param netif the lwip network interface structure for this ethernetif
 * @return ERR_OK if the loopif is initialized
 *         ERR_MEM if private data couldn't be allocated
 *         any other err_t on error
 */
err_t ethernetif_init0(struct netif *netif)
{
    LWIP_ASSERT("netif != NULL", (netif != NULL));

#if LWIP_NETIF_HOSTNAME
    /* Initialize interface hostname */
    netif->hostname = "Gigadevice.COM_lwip";
#endif /* LWIP_NETIF_HOSTNAME */

    netif->name[0] = IFNAME0;
    netif->name[1] = IFNAME1;
    /* We directly use etharp_output() here to save a function call.
     * You can instead declare your own function an call etharp_output()
     * from it if you have to do some checks before sending (e.g. if link
     * is available...) */
    netif->output = etharp_output;
    netif->linkoutput = low_level_output0;

    /* initialize the hardware */
    low_level_init0(netif);

    return ERR_OK;
}

err_t ethernetif_init1(struct netif *netif)
{
    LWIP_ASSERT("netif != NULL", (netif != NULL));

#if LWIP_NETIF_HOSTNAME
    /* Initialize interface hostname */
    netif->hostname = "Gigadevice.COM_lwip";
#endif /* LWIP_NETIF_HOSTNAME */

    netif->name[0] = IFNAME0;
    netif->name[1] = IFNAME1;
    /* We directly use etharp_output() here to save a function call.
     * You can instead declare your own function an call etharp_output()
     * from it if you have to do some checks before sending (e.g. if link
     * is available...) */
    netif->output = etharp_output;
    netif->linkoutput = low_level_output1;

    /* initialize the hardware */
    low_level_init1(netif);

    return ERR_OK;
}
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-16 09:14:56 | 显示全部楼层
一定要爱你 发表于 2025-6-16 08:13
[mw_shl_code=c,true]/**
* @file
* Ethernet Interface for standalone applications (without RTOS ...

我不明白GD为什么要这么做,两个MAC控制器共用这四个全局变量
PixPin_2025-06-16_09-14-36.png
PixPin_2025-06-16_09-12-57.png
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-16 12:21:56 | 显示全部楼层
tovinz 发表于 2025-6-16 09:14
我不明白GD为什么要这么做,两个MAC控制器共用这四个全局变量

资料太少,又联系不上原厂技术,
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-17 09:06:06 | 显示全部楼层
一定要爱你 发表于 2025-6-16 12:21
资料太少,又联系不上原厂技术,

没办法。硬件上有新东西往上堆就行了,软件总是在过去。

我感觉就是两个ETH共用了收发缓冲区和收发描述符,导致同时开启两个网卡的时候出问题了。
可以尝试一下给 gd32h7xx_enet.c 中的两个以太网控制器分别实现相关的内容。
回复

使用道具 举报

1

主题

7

回帖

10

积分

新手上路

积分
10
 楼主| 发表于 2025-6-17 09:32:53 | 显示全部楼层
tovinz 发表于 2025-6-17 09:06
没办法。硬件上有新东西往上堆就行了,软件总是在过去。

我感觉就是两个ETH共用了收发缓冲区和收发描 ...

我试试吧,感谢提供思路
回复

使用道具 举报

24

主题

355

回帖

427

积分

高级会员

积分
427
发表于 2025-6-17 15:53:38 | 显示全部楼层
一定要爱你 发表于 2025-6-17 09:32
我试试吧,感谢提供思路

我用文件对比工具看了一下 gd32f4xx_enet.c 和 gd32h7xx_enet.c,
h7的基本上就是在f4上面简单的改了一下,f4只有一个ETH控制器,用了一组全局变量管理的。到了H7还是只用一组全局变量管理肯定会导致两个ETH控制器不能同时使用。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|Archiver|手机版|硬汉嵌入式论坛

GMT+8, 2025-7-4 21:29 , Processed in 0.377572 second(s), 28 queries .

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表