STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

I am working on lwip, tcp/ip, RTOS application with stm32f746 discovery board . By clicking a button on the server with html page, i can toggle a LED . The problem is that, how do i get the text i wrote in an html page into the mcu?

I am working on lwip, tcp/ip, RTOS application with stm32f746 discovery board . By clicking a button on the server with html page, i can toggle a LED on the board with the help of the code below:if (recv_err == ERR_OK)   {   if (netconn_err(con...

adogan by Associate
  • 581 Views
  • 3 replies
  • 0 kudos

HAL_Delay and interrupts?

Hello, If I am using an external interrupt on a GPIO pin HAL_Delay() in my program's main() does not work. while (1) { serprintf("Before HAL Delay"); HAL_Delay(500); serprintf("After HAL Delay");   } "After HAL Delay" never happens. I'...

STM32F373 USB DFU Bootloader

Hello, I've developed a board and trying to update the firmware with usb.My board has lcd display, and I want to display "Firmware Update Mode" while the device is in bootloader mode.Can I catch an interrupt to write something to LCD?Also, how can I ...