FreeRTOS + UDP + IAR + STM32F4

emanuelcsm wrote on Wednesday, January 28, 2015:

Hello,

I’m trying to use FreeRTOS here. I have the development board STM32-H407 from Olimex.

I wanna send/receive a strings using UDP, but the demo project for IAR does not have the functions for UDP.

Des anyone have an EW_ARM project example that uses UDP connection?

Thanks

rtel wrote on Wednesday, January 28, 2015:

If you have a network driver, and don’t want to do anything too fancy with the driver, then porting is just a matter of implementing a few functions.

http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/FreeRTOS_UDP_Porting.shtml

Best to start with a known good FreeRTOS project, and a known good Ethernet driver (STM32Cube has a driver) then stick the two together.

Regards.