Wrong RAM_D2 memory in LwIP examples for NUCLEO-H723ZG
In LwIP examples for NUCLEO-H723ZG, in the linker, I think that there is an incorrect range of RAM_D2 memory.
For example here:
MEMORY
{
ITCMRAM (xrw) : ORIGIN = 0x00000000, LENGTH = 64K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
ROM (rx) : ORIGIN = 0x08000000, LENGTH = 1024K
RAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 288K
}SRAM available from 0x30000000 has 32 kB available
from the reference manual:

Or am I missing something? I am writing here before creating an issue on GitHub as I am not sure I am not misreading something. I think they took it from the STM32H74x/H75x devices as those have this amount of memory.
The example works correctly as the addresses used are hard-coded in the application, but the size should be correct either way.
