diff --git a/Ubiquitous/XiZi_IIoT/board/xidatong-riscv64/third_party_driver/ethernet/connect_w5500.c b/Ubiquitous/XiZi_IIoT/board/xidatong-riscv64/third_party_driver/ethernet/connect_w5500.c index a8d6ab854..8099d442b 100644 --- a/Ubiquitous/XiZi_IIoT/board/xidatong-riscv64/third_party_driver/ethernet/connect_w5500.c +++ b/Ubiquitous/XiZi_IIoT/board/xidatong-riscv64/third_party_driver/ethernet/connect_w5500.c @@ -456,7 +456,7 @@ void ifconfig() { ctlnetwork(CN_GET_NETINFO, (void *)&wiz_netinfo); uint8_t tmpstr[6]; ctlwizchip(CW_GET_ID, (void *)tmpstr); - KPrintf("===== %s NET CONF =====\r\n", (char *)tmpstr); + KPrintf("======= %s NET CONF =======\r\n", (char *)tmpstr); KPrintf("[W5500] MAC: %02X:%02X:%02X:%02X:%02X:%02X\r\n", wiz_netinfo.mac[0], wiz_netinfo.mac[1], wiz_netinfo.mac[2], wiz_netinfo.mac[3], wiz_netinfo.mac[4], wiz_netinfo.mac[5]); @@ -468,7 +468,7 @@ void ifconfig() { wiz_netinfo.sn[2], wiz_netinfo.sn[3]); KPrintf("[W5500] DNS: %d.%d.%d.%d\r\n", wiz_netinfo.dns[0], wiz_netinfo.dns[1], wiz_netinfo.dns[2], wiz_netinfo.dns[3]); - KPrintf("======================\r\n"); + KPrintf("===========================\r\n"); } SHELL_EXPORT_CMD(SHELL_CMD_PERMISSION(0) | SHELL_CMD_TYPE(SHELL_TYPE_CMD_FUNC), ifconfig, ifconfig, printf w5500 configurations);