STM32CubeIDE (MCUs)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

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...

USBX code not compiling after IDE generation

Using STM32 Cube IDE v1.15.1 with package stm32u5-1.5.0 or IDE 1.16.0 with package 1.6.0 (Linux and Windows versions) :Create new STM32 project from example Ux_Device_CDC_ACM for board Nucleo-U5A6ZJ-QCompile project : okSlight modification in IOC fil...

DBGMCU_CR_DBG_STOP setting ignored

Setting DBGMCU->CR.DBGMCU_CR_DBG_STOP should allow debugging in STOP mode; eg, from ST examples: /* Allow debugging in Stop Mode */ DBGMCU->CR |= DBGMCU_CR_DBG_STOP; /* Enter Stop Mode */ HAL_PWR_EnterSTOPMode( PWR_LOWPOWERREGULATOR_ON, PWR_S...

AndrewNeil_0-1701710496575.png

Cubeide deletes files if disk is full

So weird behaviour: my disk was running full, while i was modifying a file. When trying to save instead of aborting it just emptied the whole file, what a *** weird behaviour, other editors would just do nothing. 

TwixMeow by Associate
  • 380 Views
  • 1 replies
  • 0 kudos

Extern variable error

Hello,I'd like to use some extern variables in my code, but I always get the error "undefined reference to ..." and I can't find what I am doing wrong.In the timer.h file I declare the variable as: extern volatile uint8_t start_adc_flag;I included th...