STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! STM32L4 Freertos - read specific item from queue without removing item from the queue.(peek)

Hi, I have STM32L496 and use Freertos 10.2. Everything is fine, but I would like read data from queue without removing from the queue. I discovered function xQueuePeek() but I dont know how to use it if I can read specific item from Queue. For examp...

lorant124 by Associate III
  • 1418 Views
  • 1 replies
  • 0 kudos

download via debbuger disable system bootloader.

Hi,In my system host mcu update firmware in slave stm32g071cbSome times I found that host controller cannot call embdedded bootloader by pulling up boot0 and reset via pins . After reset always starts main app instead of bootloader. I lost few hours ...

Arkady1 by Associate
  • 590 Views
  • 1 replies
  • 0 kudos

STM32F207VC - Ethernet with LwIP works after flashing but not any more after power supply is set off and on again

Hello all,I have a strange behavior with the ethernet connection of my STM32F207 application:When I flash the software to the controller the software works. I can ping the controller, I can communicate with a client software to the serversoftware on ...

SRond by Associate III
  • 4898 Views
  • 19 replies
  • 1 kudos

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
  • 859 Views
  • 3 replies
  • 0 kudos

SDIO microSD card f_mount returns FR_NOT_READY

Hi, I have STM32F407VET6 board and trying to use FATFS and SDIO card slot, but f_mount returns FR_NOT_READY.My project clock configuration:My project SDIO configuration:SD card: Kingston 16GB microSDHC class 10 I1 SDCS.I have tried to debug the f_mou...

0693W00000Dq0ZBQAZ.png 0693W00000Dq0ZvQAJ.png
JBond.1 by Senior
  • 3318 Views
  • 2 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'...