cancel
Showing results for 
Search instead for 
Did you mean: 

Ethernet doesn't work reliable at STM32H743 together with uIP-Stack (HTTP-Trafic)

Wlad777
Associate II

Hello, 

my problem, that uIP-Stack has TCP-Retransmissions with HTTP-trafic. That was observed with Wireshark. The same uIP-Stack works at STM32F7 properly. I'm not sure about Settings in CubeMX with Descriptor Address and Size. My settings are like follows:

Screenshot 2024-09-18 075442.png

 

Screenshot 2024-09-18 075342.png

 

with this setting I have followed Error inside uVision5 (compiler version 5):

Spoiler
Error: L6984E: AT section main.o(.ARM.__AT_0x2400060F) has required base address 0x2400060f which is not aligned to section alignment 0x00000004.

Could someone explain how to set Descriptors inside CubeMX properly and get Ethernet work reliable for HTTP trafic?

1 ACCEPTED SOLUTION

Accepted Solutions
Pavel A.
Evangelist III

It's better to align descriptors and buffers at cache line size which is 32 bytes.

 

View solution in original post

12 REPLIES 12
SofLit
ST Employee

Hello @Wlad777 and welcome to the community,

I'm not expert of Ethernet nor the UIP stack, but did you set the correct MPU config for different memory regions used by the stack (heap and descriptors in case of LWIP) as described in this article / especially the section Cortex-M7 configuration?

 

To give better visibility on the answered topics, please click on "Accept as Solution" on the reply which solved your issue or answered your question.
Pavel A.
Evangelist III

Why these weird addresses? where have you took this from ?

PavelA_0-1726669206290.png

 

Wlad777
Associate II

thanks for responses.

hello @Pavel A. , it was simply guessed based on size of structs ETH_TxDescListTypeDef and ETH_RxDescListTypeDef found in project. Currently I have changed it to attached screenshot setting and error is gone but the link stability is not the best (same like before). Now I change "RX Descriptor  Length" and observe the Improvement but there is non improvements.

 

LCE
Principal

The error message looks like an alignment problem, so you could give some variables the "align 4" attribute, however that works with your compiler.

And check the datasheet for the correct internal SRAM address space for descriptors and buffers.

And, as always: just don't trust that Cube is doing things 100% right.

Hello @SofLit , maybe I should activate such MPU config for Descriptors region at STM32H743. I try it out.

activation of MPU (for Descriptors region) leads to no improvement.

Pavel A.
Evangelist III

It's better to align descriptors and buffers at cache line size which is 32 bytes.

 

LCE
Principal

Ah, the cache, the unknown beast to me... :D