Hello Everyone,
I am using tiva tm4c1294kcpdt. In my application, i have multiple tasks on ethernet interface: logging data to server, telnet server for debugging, ftpd server to access memory card , etc.
If I try to handle all tasks at a same time then device will either goes into fault isr or gives me watchdog interrupt.
I am calling lwIPTimer() in 10msec systick isr, and all these tasks are written in while(1) loop.
One more thing, when the system gets reset either through watchdog or 'sysctlreset()' api function, my code gets hang in lwip_init() function
Can any one suggest me how to handle lwip / ethernet isr systematically and resolve this issue?
Any help would be appreciated.