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

STM32CubeIDE 1.1.0 LL GPIO bug? (stm32g0xx_ll_gpio.h)

Shouldn't these be (Pin * 2U) , or (Pin + Pin)?__STATIC_INLINE void LL_GPIO_SetPinMode(GPIO_TypeDef *GPIOx, uint32_t Pin, uint32_t Mode) { MODIFY_REG(GPIOx->MODER, ((Pin * Pin) * GPIO_MODER_MODE0), ((Pin * Pin) * Mode)); }   __STATIC_INLINE uint32_...

BCoch by Senior
  • 584 Views
  • 1 replies
  • 0 kudos

Resolved! Undefined referenece to error

Hi,from Properties -> Paths and Symbols i added file path to 'Include Directories'. Then, i added my source file and my header file to 'my_libs' which i created under project_name -> Drivers.When i call a function from library i see 'undefined refere...

STM32F303CCT6 OpAmp in STANDALONE mode, gain very low.

Hi all!, I have a electret microphone amplifier (see attached). The circuit works fine with a LM-358, but when I use the internal opamp from a STM32F303, the gain is very low. I use the STM32 opamp in STANDALONE mode. Is ther something I'm missing?I ...

JAlca by Senior
  • 651 Views
  • 0 replies
  • 0 kudos

How to set tool paths?

I attended a recent ST seminar and was delighted to see the improvements in STM32CUBEIDE! Worked great in the seminar and I completed all 6 projects using MEMS components.It's now been about a month and I'm wanting to spend some serious time with the...

doctek by Associate II
  • 599 Views
  • 1 replies
  • 0 kudos

Put 'mx.scratch' under source control?

After generating code for a migrated project (from TrueStudio & CubeMX), I noticed a new file 'mx.scratch' in the project's root.Is this a temp file that gets generated from other files or shall I take it under source control?

Hello, I'm usin STM32F042 nucleo-32 board, with STM32CubeIDE. I would like to test it with green led LD3 blinking. I've created a STM32F042 project, but in .ioc I can't set any pin to LED 3 (not listed).

And if I try to add "LED3_GPIO_CLK_ENABLE();" in main.c as it's done in "TM32Cube\Repository\STM32Cube_FW_F0_V1.11.0\Projects\STM32F042K6-Nucleo\Examples\GPIO\GPIO_IOToggle", I'm getting an error "undefined reference to `LED3_GPIO_CLK_ENABLE'". I hav...