Is it possibile use lwip_recvfrom inside the interrupt handler? In my application I use FreeRtos and LWIp. The recvfrom is in non blocking mode but the function not return (the Queue inside LWIP are xQueueReceive without FromISR).
Is there a lwip_recvfrom for interrupt handler?
Thanks very much.
Solved! Go to Solution.
ISRs should be short and fast. lwip_recvfrom() is relatively heavy and may cause issues on the application. I do not suggest using it inside the ISR.
Best regards,
Omar
ISRs should be short and fast. lwip_recvfrom() is relatively heavy and may cause issues on the application. I do not suggest using it inside the ISR.
Best regards,
Omar
HI @Maurizio2!
To better assist you, could you please provide the following information?
What SDK version you are currently using?
What device or board you are working with?
Looking forward to your response.
Best regards!
Chavira
I use iMX RT 1062. The evaluation Is iMX RT1062 OEM from embedded artist ( https://www.embeddedartists.com/products/imx-rt1062-oem/ ). The SDK Is http://imx.embeddedartists.com/imxrt/eaimxrt1062_16mb_sdk_2_15_000_2024-03-12.zip from embedded artist.