STM32CubeMX (MCUs)

Ask questions on STM32CubeMX. Discuss code generation and configuration challenges, among other topics.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32CubeMX 6.16.0 released

We are pleased to announce that STM32CubeMX 6.16.0 release is available. What is new in 6.16.0: Added support for new microcontrollers across the STM32WBA, STM32N6 and STM32H5 series and the STM32WL3x product line. The related new boards include the...

Aimen1 by ST Employee
  • 200 Views
  • 2 replies
  • 5 kudos

STM32CubeMX update to 5.3.0

The QubeMX 5.2.1 is showing update to to 5.3.0 but it fails .... also the www.st.com sometimes fails to load with direct 403 forbidden response .. some consistency will be nice :(

Resolved! STM32F050C4 device.

How can I have more info about this device? Datasheet, examples and so on..Why I can't find it on the CubeMX (neither in Keil device list) also installing the F0 v1.0.0 package?Which device I've to set in Keil?Thanks in advance,Antonio

How do I change the initialization order to avoid a race condition (ISR vs. FreeRTOS init) during initialization?

CubeMX generates the main.c like this:int main(void){... MX_GPIO_Init(); MX_RTC_Init(); MX_NVIC_Init(); MX_FREERTOS_Init();...}We observe a sporadic crash during boot which we traced to an GPIO interrupt whose ISR calls into the FreeRTOS API (xQueueS...