STM32CubeIDE (MCUs)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32CubeIDE 1.16.0 released

STM32CubeIDE 1.16.0 was released today on st.com as well as an in-tool update patch. What is new in 1.16.0?Microcontroller and board lists aligned with STM32CubeMX v6.12.0 : STM32C0, STM32WB0 and STM32MP25XXAdded CMake support for multicontext projec...

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. 

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

.ioc nightmare on Linux

Can someone please shed some light on why opening an .ioc file on Linux is like Russian roulette. Sometimes it works, sometimes you get a blank screen, sometimes nothing at all and sometimes 'Yes!!! it's working'.Running IDE 1.16.0 on Linux Mint 21.3...

FFont.2 by Associate II
  • 60 Views
  • 2 replies
  • 0 kudos

Resolved! Can't override a '__weak' function

Hi,I write my own 'void HAL_SPI_TxRxCpltCallback(SPI_HandleTypeDef *hspi)', intend to override the default weak one. But when debug, my version is never called, it always steps into the 'weak' one. I'm new to CubeIDE, the version is 1.16.0, any sugge...