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

Resolved! Why is the ADC w/DMA in STM32G4 not working?

I am initialising the ADC2 w/DMA via STM32CubeMX. Scan conv. = enabledcontinuous conv. = enabledDMA cont. requests = enabledoverrun behaviour = data preservednumber of conversions = 2 (channel 1 and channel 2)sequence of program (specific to DMA):1 -...

snjy1697 by Associate II
  • 1554 Views
  • 4 replies
  • 0 kudos

Hey everyone, for an IoT project I'm using an NUCLEO-L011K4. I need to use SPI to communicate with a RFM95 LoRa chip. For this I'm using Keil uvision, CubeMX and the HAL SPI library. I however can't manage to make it work. Can anyone help?

I think the issue lies within SPI not working correctly. I'm using the following function to transmit data using SPI.void RFM_Write(unsigned char RFM_Address, unsigned char RFM_Data) { uint8_t spiData[2]; spiData[0] = RFM_Address | 0x80; spiData[...

BKas.1 by Associate
  • 512 Views
  • 1 replies
  • 0 kudos

C++ main.cpp generation

Dear ST,Do we have a functionality to generate main.cpp from CubeMX? HAL supports C++ and it is possible to make project C++ by renaming main.c to main.cpp, but after regeneration you just get new main.c without your code, so again need to merge it m...