2021-11-09 06:26 AM
Hi
I add ethernet communication to my program with STM32CubeMx and I just compiled and run it. I have a problem:
if I disconnect Jlink the board I have a ping error. but I run the code with 3 times click on run in MDK-ARM the board will ping.
I also try my app without
MX_LWIP_Init();
if I comment this line all thing is good.
you can find 3-time click video here
2021-11-09 11:29 PM
Errors in and around MX_LWIP_Init is a regular topic.
2022-10-31 08:26 AM
Hi, S_bgh99,
Did you find the solution for the problem you mentioned?
If Yes, can you suggest me what is the way to figure out this issue.
2023-07-11 11:43 PM - edited 2023-07-12 05:11 AM
Hello S_bgh99,
I am facing the above said issue
Could you please guide me to fix this issue
Thanks in Advance!
2023-07-18 10:16 PM
Hi,
I got the solution for this issue
Thanks!
2023-08-30 11:33 PM
Would you tell me a bit more about how have solved this issue? I have very similar problems and looking for a solution. Thank you in advance!
2023-11-27 03:54 AM
I had the same problem. This is caused by the use of printf in the LWIP library. The Retarget.c file must be added to the project, or just add this smal code to main.c
struct __FILE { int handle; };
FILE __stdout;
int fputc(int c, FILE *f) {
return (0);
}
2024-08-15 12:51 AM
Hi, I have the exact same problem with STM32H743VIT6, how did you solve the issue ? Can you please share some solution ?
Thanks for the interest and time.
2024-08-19 12:21 AM
Hi,
Try with enabling microLib option
Thanks & Regards