STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32l152 can't handle load transient response?

Im using a STM32L152RDT6 in my design and a regulator TPS78326 which does the power supply to the STM. If waking up from STANDBY, the load transient response causes a drop of Vin. In this case 2.6V to 2.4V. The STM is supposed to work down to 1.8V, s...

CBock by Associate
  • 327 Views
  • 0 replies
  • 0 kudos

Resolved! SOLVED: Backup SRAM for STM32 is wiped between resets

Solved: The problem was an improper reading, the BKSRAM-clock was not initialized when reading back the report. Updating with "correct" code for posterity.I'm writing a (better) hard-fault handler for my STM32f207zg and want to do the following:Have ...

turbofish by Associate II
  • 2096 Views
  • 4 replies
  • 0 kudos

Resolved! Help needed with SWD connection

We are bringing up a new board and having troubles establishing SWD connection, I was reaching out seeking help with this.Target - STM32F091RCICSP - ST-Link/V2IDE - TrueSTUDIOThis is our first use of the ST-Link outside of Nucleo-64 board development...

0690X000006D76hQAC.jpg 0690X000006D76mQAC.png 0690X000006D76rQAC.png
Justin1 by Senior
  • 1127 Views
  • 3 replies
  • 0 kudos

Question about the Stepper Library STSW-STM32018

Posted on June 13, 2018 at 11:39If i understand correctly, it is only possible to drive a step motor for a certain time, but what i need is to drive a specified number of steps. In extreme case one step and in best case without jitter.I can get out ...

ADC accuracy without internal re-calibration

Hello,I have an application, where I need ADC samples at a fixed rate, if the device is running. So, I can do a ADC self-calibration at start up and while idle, but not while the application is running.The application can run for several hours and th...

T B by Associate II
  • 299 Views
  • 0 replies
  • 0 kudos

Resolved! SPI using DMA on STM32F103 transmits one word too much

On an STM32F103 I configure SPI in 16bit wide mode and set up a DMA transfer to transmit one word:SPI2->CR1 &= ~SPI_CR1_SPE; SPI2->CR2 = 0; SPI2->CR1 = SPI_CR1_SSM | SPI_CR1_SSI | SPI_CR1_DFF | SPI_CR1_SPE | /* Some baud rate flag...