STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

what is HAL_OSPI_AutoPolling() ? how to fix it ?

After trying the sample code from STM32Cube_FW_L4_V1.18.0 for octo spi I getting stuck on HAL_OSPI_AutoPolling(hospi, &sConfig, HAL_OSPI_TIMEOUT_DEFAULT_VALUE); it is not working, after reading posts and STM32L4Rxxx and STM32L4Sxxx device errata I fo...

MNapi by Senior III
  • 3267 Views
  • 28 replies
  • 5 kudos

Waking up from STOP mode using UART

Posted on May 09, 2018 at 22:36I am using STM32L051 mcu. The mcu goes to STOP mode after initialization and only wakes up if there is any incoming byte at USART1. MCU wakes up with START_BIT_DETECTION on USART1 and goes back to sleep after it receiv...

Resolved! Broken device through optoin bytes

Hello, I am currently fiddling around with a STM32G491 in bare metal. I wanted to test the write protection. So I executed following code               FLASH->KEYR = FLASH_KEY1; FLASH->KEYR = FLASH_KEY2; while(FLASH->CR&bit31); // wait for unlock...

machinist by Associate III
  • 875 Views
  • 3 replies
  • 0 kudos

Noise spike when ADC completes and triggers DMA

On the H743VIT6 I am seeing a strong spike on the VDDA line every time the 32 samples are completed and DMA triggers to copy them to memory.This is causes the samples to have a 1500 Hz signal with 4 harmonics in the data.The board is 4-layer, solid g...

Robmar by Senior III
  • 531 Views
  • 2 replies
  • 0 kudos

SOLVED - X Nucleo PLC01A1 : porting to F7

After writing some code for PLC01A1 and STM32 F446RE, I'm trying to port it on my F767ZI.PLC Board uses SPI PA5, PA6 and PA7 for CLK, MISO and MOSI, and F4 & F7 have the same pinout. In addition PLS01A1 uses F4's PB10,PB6 and PC7, but the same pins a...

STM32F407-Baremetal clock not working

Hi all, I tried to configure the clock to run at 32MHz and I was using Systick to toggle the LED every 1 Sec by configuring the Systick reload value by 32Mhz -1. But, Somehow toggling is not happening for exactly 1 sec I also used a logic analyzer to...