STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32F405 TIM DMA work only once

Hi ST team,I'm implementing DShot protocol with Timer + DMA. I use 4 PWM channels to generate control signals for ESC. Timer and DMA's parameters are same for all PWM channel. But PA3 (TIM2_CH4) does not work the same as other PWM channels. It only t...

phonght32_2-1740312861345.png phonght32_3-1740312876535.png Screenshot from 2025-02-23 19-06-36.png Screenshot from 2025-02-23 19-07-31.png

Unstable logical state on every I/O pin

Hi Everybody! I confronts a very interesting problem at my project. Details above:Hardware: NUCLEOG071RBAttached the IOC configuration. Control the SPI CS pin by software. I got small 4-8us signal spikes all  GPIO, SPI, I2S pins. SPI and I2S powered ...

pics2.png pics1.png
ProgBoy by Visitor
  • 52 Views
  • 2 replies
  • 0 kudos

Own custom build STLDR file creation issue

hi,I am trying to build my own STLDR file with STM32H723ZGT6 + w25q128.I could able to build the stldr file STLDR creation with Separate Project 1 but it's not working with external loader  project 2 it's giving down load error while program download...

MMARI.1 by Senior
  • 209 Views
  • 4 replies
  • 0 kudos

STM32L476 SRAM2 Parity disable cannot be turned off.

I conducted some test in case the option bytes in the STM32L474 (Nucleo 64 board) are set incorrectly for my application. Note HAL is not used (it's a strict bare metal application since this is a home experiment to reduce power consumption to the ba...

EGi_0-1740230296793.png EGi_1-1740232745795.png EGi_2-1740232766575.png EGi_3-1740232797260.png
EGi by Associate III
  • 62 Views
  • 1 replies
  • 0 kudos

external interrupt in stm32f107

#include "stm32f10x.h" #include "interrupt.h" void intr_config() { RCC -> APB2ENR |= RCC_APB2ENR_IOPAEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPBEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPDEN; RCC -> APB2ENR |= RCC_APB2ENR_AFIOEN; GPIOA ->CRH |= GPIO_CRH_MODE...