STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32L432KC Nucleo failing to receive serial data from PC

My intention is to program the STM32L432KC to utilize UART2 to monitor incoming serial data from the PC Virtual Com Port via interrupts.void HAL_UART_MspInit(UART_HandleTypeDef* huart) { GPIO_InitTypeDef GPIO_InitStruct = {0};   if(huart->Instanc...

MBenn.2 by Associate
  • 1003 Views
  • 3 replies
  • 0 kudos

Can't make SPI work via DMA. STM32H7xx HAL.

Hello!Trying to launch SPI via DMA data transfer to LCD display. I has created "default" project via cube master.Created SPI2 for LCD display in 8bit Master Transfer Only mode.Added DMA1 Stream 0 to SPI2_TX Mem to Perif.In code I do:static uint8_t bu...

Spider by Associate II
  • 337 Views
  • 0 replies
  • 0 kudos

Resolved! Getting Error 2 on building project

Hi,I created a new project using the GUI and after pressing the Build button, I always get below information on the Console window. The development board I'm using is STM32F407VET6 Black Board.20:47:42 **** Incremental Build of configuration Debug fo...

0693W000007DKiWQAW.jpg
MVerm.2 by Associate III
  • 2803 Views
  • 3 replies
  • 1 kudos

Weird issue in SPI HAL Transmit

I'm having a very strange issue. I update an OLED screen using SPI DMA.The OLED itself is organized as 8 rows, 128bytes each.I use the DMA to send framebuffer chunks containing the data (128 bytes) for one row.When the callback is called, it checks i...