NUCLEO-H723ZG Issue with ETH and ping
Hello,
Sorry if i'm asking a dumb question or if someone already ask it, but I have some problem pinging my NUCLEO-H723ZG using Ethernet and lwIP without FreeRTOS.
- I already tried the tutorial to create a project with Ethernet and lwIP step by step , it didn't turn out well (I have some question about this tutorial on memory layout of the DMA Descriptors) and I couldn't ping over the MCU.
- I also tried the github example provided on the same article and more precisely I tried the STM32H723_Nucleo_ETH example. It worked very well, but it use FreeRTOS which I do not want to use for now.
- I tried to create a project from the .IOC of STM32H723_Nucleo_ETH example, I modified it to disable FreeRTOS and disable ETH global interruption. It didn't work (I still couldn't ping over the MCU).
So I have multiple questions :
- Does lwIP must be used with FreeRTOS on the MCU of the H7 series or other kind of RTOS ? (I already use lwIP without a RTOS on a NUCLEO-F429ZI and I didn't have any issue with it).
- On the article to create a project, specifically on memory layout for STM32H72x/H73x devices. DMARxDscrTab & DMATxDscrTab have a size of 96, so if each DMA block is 32 bits in size and the DMA of the first Rx Descriptor (DMARxDscrTab) is 0x30000000, then the address of the first Tx Descriptor (DMATxDscrTab) should be at least 0x30000C00 (32*96=3072=>0xC00)?
- Maybe I did not understand the size of the descriptor. Could you care explain it ?
I think that's all the question for now.
Thanks in advance.
