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

STM32CubeIDE 1.18.1 released

We are pleased to announce that the minor release 1.18.1 of STM32CubeIDE is available. What is new in 1.18.1: This minor release will not bring any major updates to the STM32CubeIDE 1.18.1. It will be aligned with the STM32CubeMX 6.14.1. Main fixed i...

STM32CubeIDE 1.18.0 released

We are pleased to announce that the release 1.18.0 of STM32CubeIDE is available. What is new in 1.18.0: Microcontrollers, microprocessors, and board lists aligned with STM32CubeMX 6.14.0: Added the support for STM32WBA6xxx microcontrollers in the STM...

ST Cube Ide bad ELF programming from debugger.

Good morning,we have a problem with ELF file loading. We are using an STM32U575 MCU on a Nucleo board.In particular:the location 0x0802A61B in the ELF file is set at 0x00 (we see it by open the ELF file with Cube Programmer).1) If we load the ELF fil...

SafeDev by Associate II
  • 502 Views
  • 1 replies
  • 0 kudos

Resolved! Retarget scanf on STM32G070RBxx Cortex M0+

(originally a reply to https://community.st.com/t5/stm32cubeide-mcus/retarget-printf-on-stm32g070rbxx-cortex-m0/td-p/720883) Hi @Andrew Neil,For the scanf do we need to make any other change?My read function is-  int _read(int fd, char *ptr, int len)...

AVerm.4 by Associate III
  • 1207 Views
  • 9 replies
  • 4 kudos

Resolved! STM32L552 Breakpoints won't work

Hi, I just got my board STM32L552 and currently am setting up development environment for it. I'm testing the board with an example project 'CORTEXM_InterruptSwitch_TrustZone' and the code works well, however, I'm not able to set breakpoints for debu...

How to run code and view serial on Nucleo board

Hello,I am trying to count how many clock cycles pieces of code take to run on my Nucleo board. I am using the following code for timing: start_cycles = DWT->CYCCNT; // dummy code end_cycles = DWT->CYCCNT; diff_cycles = end_cycles - start_cycles; pri...