STM32CubeIDE (MCUs)

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

malloc(1)

I'm using cJSON on a STM32F401 and I'm a bit worried with possible problems regarding with memory allocation.If a call malloc(1) (so asking the heap for 1 byte only) how many bytes are really used on the Heap?I would assume correct answer with be 16 ...

EGonc.1 by Associate II
  • 1440 Views
  • 3 replies
  • 0 kudos

stm32L476G-DISCO upload not working

I have a stm32L476G-DISCO.trying to get this simple blink led program working.CODE: while (1) { HAL_GPIO_TogglePin( LD_G_GPIO_Port, LD_G_Pin ); //(LD_R_Pin); HAL_Delay(2000); /* USER CODE END WHILE */ MX_USB_HOST_Process();   /* ...

Kt.11 by Associate
  • 651 Views
  • 1 replies
  • 0 kudos

Resolved! How to enable Tracing in STM32Cube

Hello,I am trying to get tracing working and when i start the debugger this window pops up saying "Tracing is not supported".Any one have any idea what it means as i can't find any reference to it.I have a STM32F411CEU6, watched many how videos and c...

0693W000008wr7hQAA.jpg
Iknig.1 by Associate II
  • 8465 Views
  • 6 replies
  • 0 kudos

STM32CubeIDE: Problems with including files

I know this has been discussed before before, but for some reasons, I still can't make my project compile without having errors in it, because of including one file. I have included the path in "Paths and Symbols" tab.Code in "main.h" file This is th...

0693W000008wq3eQAA.png
FGerm.1 by Associate II
  • 2320 Views
  • 4 replies
  • 0 kudos

Custom HID device

Hello,I am planning to use the Custom HID device from CUBEIDE on an STM32F103 (I do not want to use CDC). I would like to use this in order to transfer simple packets of 20 bytes to and from the PC in a reasonable speed. I already set up some keyboar...