STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Command sequence for USART bootloader on stm32G4 MCU

Hello, I am trying to flash the MCU with USART bootloaderI am using the command codes from below link, but are not working for meCan someone help me validate of the command codes are correct for STM32G4https://www.st.com/resource/en/application_note/...

Resolved! STM32G0B1V FDCAN AutoRetransmission

Hallo everybody, I have a question about the FDCAN peripheral of the STM32G0B1VC.I’m using the STM32Cube_FW_G0_V1.6.0 library and I have initialized the bus with AutoRetransmission:CanHandle.Init.AutoRetransmission     = ENABLE; During the transmissi...

g0_ScreenDump.png f0_ScreenDump.png
Thomas1 by Associate II
  • 1911 Views
  • 4 replies
  • 1 kudos

OTG on STM32F7 controller

Hi team,             Is there any sample of OTG MSC on F7 controller. Need both Host and Device stack on single application. Based on the ID pin need to decide which one to run.  For Host - If i connect an USB stick to controller, it can read and wri...

Shikamaru by Associate III
  • 723 Views
  • 2 replies
  • 1 kudos

Resolved! unstable custom delay function (STM32 & STM32CubeIde)

 Hello,I have a small problem when using a custom delay function as follows : void delay_us(uint32_t delayus) { uint32_t start_count = __HAL_TIM_GET_COUNTER(&htim2); while ((__HAL_TIM_GET_COUNTER(&htim2) - start_count) < delayus) { } }  The attac...

LadyMt by Associate III
  • 4605 Views
  • 18 replies
  • 3 kudos

STM32 SPI receive always shifted 3-4 bytes

Posted on January 15, 2017 at 18:50Hallo,  i use the HAL to program a little test software to transfer data via spi between two STM32 Nucleo boards.One board with a STM32L476 sends every 5 ms 74 bytes of data as a spi master with 625 kBit.Chip selec...

volker2 by Associate II
  • 6085 Views
  • 19 replies
  • 0 kudos

STM32F103: Sometimes USART stops working

Hi, We are using STM32F103 in our project. Established IPC communication over USART. We have almost finished our development. We kept our setup running for long, sometimes we found that IPC-USART communication getting stuck, IPC does not work until w...