STM32CubeMX (MCUs)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32CubeMX 6.14.1 released

We are pleased to announce that the minor version 6.14.1 of STM32CubeMX is available. What is new in 6.14.1: SAI settings not displayed in the configuration tab of STM32H7Bxxx devices: After upgrading to STM32CubeMX 6.14.0, the SAI tab configuration ...

STM32CubeMX 6.14.0 released

We are pleased to announce that the release 6.14.0 of STM32CubeMX is available. What is new in 6.14.0: Added the support for the STM32WBA6xxx microcontrollers and:Added the support for USBX multi-instanceAdded the support for the memory management to...

FreeRTOS v10 - Malloc retruns 0.

Hello community,I'm working with a NUCLEO Board F767ZI and I use cubeMX to generate the project.My project is created with cubeMX 5.2.0 and I use FreeRTOS v10.0.1Now I have a problem with malloc function, inparticular, with this new FreeRTOS version ...

Resolved! STM32L431KBU6 - can't get past clock initialization

Hi!I'm just starting learning STM32, I got a st-link cutoff from a nucleo-board. I find programming ready boards a bit boring, so I went straight to naked MCU on breakout boards.So I got this STM32L431KBU6 chip on breakout and I can't get it to star...

0690X000008BEo0QAG.png 0690X000008BEpDQAW.png 0690X000008BEojQAG.png

STM32CubeMX / STM32CubeIDE100 - Recommendations

In the build-in CubeMX, there are some improvements possible:Unable to alter some pull-down boxes in the Clock Configuration, they disappear when trying to move the mouse to the desired selection (must use cursor and enter keys instead)When selection...

Jack3 by Senior II
  • 298 Views
  • 0 replies
  • 0 kudos

UART DMA Transmit and receive not working

I'm using Atollic True Studio V 9.0 , CubeMx v5.1.0, STM32F407VG-DISC1 board and enabled DMA for UART2. My code:int main(void) { int i = 0; HAL_Init(); for(i = 0; i<10; i++) rx_arr[i] = 0; for(i = 0; i<10; i++) tx_arr[i] = i*2;   SystemCl...