Skip to content

Commit 9cbd678

Browse files
committed
Modify the TYPO of debug info when using LWIP in RZ/A1 related
I modified the debug message when using LWIP in RZ/A1 related mbed boards. In eth_arch_enetif_init(), sys_thread_new() was called and task name is appeared as debug information, but task name for debug was a mistake.
1 parent 285c259 commit 9cbd678

File tree

1 file changed

+2
-2
lines changed
  • features/FEATURE_LWIP/lwip-interface/lwip-eth/arch/TARGET_RZ_A1XX

1 file changed

+2
-2
lines changed

features/FEATURE_LWIP/lwip-interface/lwip-eth/arch/TARGET_RZ_A1XX/rza1_emac.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ err_t eth_arch_enetif_init(struct netif *netif)
195195
sys_sem_new(&recv_ready_sem, 0);
196196

197197
/* task */
198-
sys_thread_new("rza1_emac_rx_thread", rza1_recv_task, netif, DEFAULT_THREAD_STACKSIZE, RECV_TASK_PRI);
199-
sys_thread_new("rza1_emac_phy_thread", rza1_phy_task, netif, DEFAULT_THREAD_STACKSIZE, PHY_TASK_PRI);
198+
sys_thread_new("rza1_recv_task", rza1_recv_task, netif, DEFAULT_THREAD_STACKSIZE, RECV_TASK_PRI);
199+
sys_thread_new("rza1_phy_task", rza1_phy_task, netif, DEFAULT_THREAD_STACKSIZE, PHY_TASK_PRI);
200200

201201
return ERR_OK;
202202
}

0 commit comments

Comments
 (0)