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

How to read the current DMA buffer pointer correctly?

Hello, I'm using an stm32f429zit6's ADC in triple interleaved DMA mode. They're giving me 7.2 Msps currently.The ADC is continuously running in circular mode and filling a buffer with a size of 3000.So I wanted to find out the DMA buffer pointer when...

MMoha.3 by Associate III
  • 1769 Views
  • 3 replies
  • 0 kudos

Interfacing STM32 MCU to micro-LED (µLED) display.

Hi Community,I am working on Interfacing STM32 MCU to VGA LED display through SPI protocol.Display Power Requirement. 1) Core Supply Provided : 1.2V, 1000mA. (required 200mA)2) IO Supply : 2.5V, 1000mA. (required 200mA)3) Cathode Supply : -2V, 200mA....

Vins by Senior
  • 739 Views
  • 2 replies
  • 0 kudos

About ADC_DMA_PROJECT(STM32H7)

Hello,I am working on the ADC_DMA_Transfer projectI have a question about MPU settings.The following code was executed when the MCU was initialized:Should I always run this code?//////static void MPU_Config(void){ MPU_Region_InitTypeDef MPU_InitStruc...

forst by Associate III
  • 1536 Views
  • 5 replies
  • 1 kudos

Update Code Without Flashing?

Is it possible to update executable code without reflashing the entire device, and without overwriting the entire codebase?Ie,multiple applications, such that individual applications can be separately installed, updated, and uninstalled?We don’t want...

The BOOM by Associate III
  • 1581 Views
  • 6 replies
  • 0 kudos

Can't erase flash after writing to it.

I have a program that writes to flash using HAL_FLASH_Program().Before it does, I erase the flash with this function:bool Erase_Flash(void) { static FLASH_EraseInitTypeDef EraseInitStruct;   uint32_t PAGEError = 0; HAL_StatusTypeDef status; print...