2019-11-26 04:05 AM
Hello,
I'm trying to get LwIP working on a STM32F769I-DISC1 board but with the SBSFU bootloader.
I started out with a basic project, generated with CubeMx, that sends UDP packets every 500ms (no operating system, just LwIP Raw API). This works, the board gets an IP address and I receive the data.
I then changed the linker script and project settings to work with the X-Cube-SBSFU bootloader which builds and starts up but will not get an IP address. It just keeps waiting for an address.
The changes I made to run with the bootloader are as follows:
Then, in main.c I change SCB->VTOR to INTVECT_START and include mapping_export.h
I also needed to add an implementation for SysTick_Handler() because CubeMx didn't generate one.
Does anyone know why the ethernet interface that works, won't work when using the bootloader?
If you need more information, please let me know.
Thanks in advance.
Best regards,
Arno
Solved! Go to Solution.
2019-12-03 11:11 PM
Hi Jocelyn,
That was indeed the issue! By disabling the D-Cache I managed to finally get it working.
Thank you for you help!
Best regards,
Arno