2020-03-31 06:56 AM
I wanna use Ethernet with STM32F407 MCU. I found only a standrad peripheral library on st.com site. Where can I get the official support library for Ethernet?
2020-03-31 09:04 AM
Hello @sminder,
You'll probably want to review LwIP examples as you can find available in the STM32CubeF4 package:
STM32Cube_FW_F4_V1.25.0\Projects\STM324x9I_EVAL\Applications\LwIP. It can help you as an implementation example to develop your own application.
I suggest that you take a look to the following ressources::
- UM1709, it maybe helpful as it provides a full description of how to implement In-Application Programming (IAP) using Ethernet communication.
- AN3966 "LwIP TCP/IP stack demonstration for STM32F4x7 microcontrollers�? .
- UM1713 is a user manual about “Developing applications on STM32Cube with LwIP TCP/IP stack�? which can help you a lot to go further in your application.
Best Regards,
Imen
2020-04-01 04:32 AM
All this examples are based on Cube and Cube HAL peripheral library. I don't use Cube HAL in my project, I use standard peripheral library only. Are there any examples which are based on this library?