STM32CubeIDE (MCUs)

Ask questions on STM32CubeIDE. Discuss how to build, debug, configure, and optimize your project as well as how to use our software tools.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32CubeCLT 1.20.0 released

We are pleased to announce that STM32CubeCLT 1.20.0 release is available. What is new in 1.20.0: Maintenance of the previous version: Updated in accordance with STM32CubeIDE v2.0.0Update of Clang toolchain version 19.1.6Update of GCC 13.3.rel1Update ...

Aimen1 by ST Employee
  • 461 Views
  • 0 replies
  • 0 kudos

STM32CubeIDE 2.0.0 released

We are pleased to announce that STM32CubeIDE 2.0.0 release is available. STM32CubeIDE is now independent from STM32CubeMX. With this release, device configuration, previously handled within STM32CubeIDE via STM32CubeMX, is now exclusively available t...

Aimen1 by ST Employee
  • 6275 Views
  • 0 replies
  • 4 kudos

STM32CubeIDE 2.0 release - early heads-up!

Starting from the release in November 2025, STM32CubeIDE and STM32CubeMX will be available exclusively in their standalone versions. STM32CubeMX will no longer be integrated inside STM32CubeIDE. Instead, the two tools will be interoperable in the sam...

Resolved! AES in CTR Mode: IV not saved to IOC file

Hello,I'm facing an issue in CubeMX with the AES IV in CTR ModeThe IV is not saved in the IOC file and is discarded from the generated code, replaced with a full 0 value.The AES content inside the IOC file:AES.Algorithm=CRYP_AES_CTRAES.DataType=CRYP_...

zeboss49 by Associate III
  • 99 Views
  • 4 replies
  • 1 kudos

Resolved! [Resolved] STM32CubeIDE project creation issue

Updated post to reflect permanent fix Dear STM32CubeIDE user, Further to the recent STM32CubeIDE project creation issue, we would like to inform you that a solution is now available for you. This permanent fix applies to all STM32CubeIDE versions. I...

Recognizing a project by reading the flash

 It happens to from time to time that I have a flashed project in a hardware, e.g. a bluepill, but I forgot which source project was belonging to it in the STM32CubeIDE's project treeview.Is there a way to write the name of the project by means of so...

Resolved! TMP102 Configuration Register Read/Write fail

I need help to setup TMP102 alarm function. My board is NUCLEO-F439ZIReading the temperature is working fine.uint8_t TMP102_ADDR = 0x48 << 1;uint8_t REG_TEMP = 0x00;uint8_t buf[12];buf[0] = REG_TEMP;ret = HAL_I2C_Master_Transmit(&hi2c2, 0x90, buf, 1,...

rasem by Associate II
  • 1227 Views
  • 6 replies
  • 0 kudos

Resolved! Post-build step to size object files

I'm using STM32CubeIDE Version 2.0.0 and would like to get the size of all the object files in my build. I know I can do this in Project Settings->C/C++ Build->Settings->Build Steps->Post-build steps->commands using arm-non-eabi-size, but what is the...