User Activity

I want to connect a STM32F429ZI Nucleo board to a PC using an ethernet cable, but without using a router to bridge them. The Nucleo would have static IP and the computer would be a client connecting to it. How would I start going about this? I've don...
Working on a basic UDP Echo server with STM32F429ZI. I had CubeMX add lwIP into the project, but its doesn't seem to receive any packets when I send them. DHCP seems to work as I can see an IP getting assigned on the router. void udp_echoserver_recei...
I'm trying to use interrupts for SPI, but am a little lost. I see the Transmit_IT function in the HAL library, but I'm not certain how to use it in a non-blocking state. Is there an example on how to use it?
Hi,I'm using the STM32 F429ZI MCU, and I was wondering if an entire port can be deinitialized rather than one pin at a time. I know of the HAL_GPIO_DeInit() in the STM32 headers but it looks like it works one pin at a time. Is there a function to DeI...