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

CMSIS only project for STM32F0

How do I get a non-HAL project going but with CMSIS for a STM32F051? I've seen a few references describing how to add various folders containing the required files to the projects build settings. The problem for me is the folders described do not exi...

U_db by Associate
  • 315 Views
  • 1 replies
  • 1 kudos

Resolved! Issue with HAL_Delay() and ThreadX

Hello everyone,I am encountering an issue with the HAL_Delay() function and ThreadX in my project. Before initializing ThreadX, HAL_Delay() works as expected. Specifically, the callback function:void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *h...

JonConesa by Associate III
  • 410 Views
  • 3 replies
  • 1 kudos

STM32H743 USB device transmits zeros to the Host

Everything else is working fine.Setup packet with SET_ADDRESS received and processed.Next GET_DESCRIPTOR for DEVICE which is sent back ok I've verified the data written to the Tx FIFO is correct.Correct number of bytes it transmitted but the bytes ar...

usb-view-cap1.png
lw23 by Associate
  • 218 Views
  • 3 replies
  • 0 kudos

Resolved! FDCAN: Retransmissions Configuration

Good afternoonI am working on the STM32H755 and am dealing with the retransmissions from my CAN FD periphery. According to the ISO-11898-1:2024 standard, the number of retransmissions should be configurable:"- from 0 (no retransmission),- to at least...

MFrie.7 by Associate III
  • 646 Views
  • 9 replies
  • 2 kudos

Resolved! HAL_ADC_ConvCpltCallback only gets called once

I'm setting up the ADC in "manual continuous" mode where hadc1.Init.ContinuousConvMode = DISABLE and then I call HAL_ADC_Start_IT() inside of HAL_ADC_ConvCpltCallback().  I get the first call to HAL_ADC_ConvCpltCallback and calling HAL_ADC_Start_IT()...