STM32H743ZI ETHERNET+USB USING
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-07 9:31 PM
I am USING BOTH ETHERNET+USB IN STM32H743ZI WHEN I CONNECT ETHERNET THEN NORMAL BUFFER UPDATE PROBLEM OCCURING
cnt_10=11; ///this buffer is updated
MX_LWIP_Init(); //ETHERNET
HAL_Delay(10);
cnt_10=12; //this buffer is not updated
cnt_10=11; ///this buffer is updated
buffer is updated but after calling MX LWIP Init(); then cnt_10=12 not updated why ?? inside calling mx_lwip_init();
after calling mx_lwip_init();
cnt_10=15; //this buffer is updated
netif_add(&gnetif, &ipaddr, &netmask, &gw, NULL, ðernetif_init, ðernet_input);
cnt_10=12; //this buffer is not updated
netif_add(&gnetif, &ipaddr, &netmask, &gw, NULL, ðernetif_init, ðernet_input);
cnt_10=12; //this buffer is not updated
above netif_add(&gnetif, &ipaddr, &netmask, &gw, NULL, ðernetif_init, ðernet_input); i used cnt_10=15 buffer updated but after below this cnt_10=12 buffer not updated why??? give me proper solution.
Labels:
- Labels:
-
STM32H7 Series
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-09 2:15 PM
Buffer? Which buffer?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-03-13 9:20 PM
cnt_10=12; not update
