STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Faulty pins?

Hey, I made some simple code for my STM32L053C8 Discovery kit to toggle GPIO pins which are connected to LEDs. I used PA0 PA1 and PA2 pins and only PA0 pin responded. Then I turned all GPIO pins high and using LED found some more pins which didn't tu...

DSimp.1 by Associate III
  • 636 Views
  • 3 replies
  • 1 kudos

STM32F407VG not showing up under my computer

I'm new to STM MCUs and am trying to start with loading basic binary files (mBed) to my STM32F407VG, but when I plug in the MCU it is not appearing in windows file explorer as a drive, which is a problem since I will need to move my binary files ther...

EBroo.1 by Associate II
  • 835 Views
  • 4 replies
  • 0 kudos

Is it possible to run a dual bank flash memory and a SW Watchodg at the same time on stm32F767VI

I am implementing a flash driver on a stm32F767VI. So far the driver works fine until the running with the software watchdog. Of course, the MCU resets on a flash erase to a certain sector.Thanks to the AN4826, I found that I could use the dual bank ...

stm32f407 mem to mem DMA with different Sizes

My data has zeros every 2 bytes.it's like this: 0x55 0x55 00 00 0xaa 0xaa 00 00 0x33 0x33 00 00 ......I want to remove these zeros with address increment feature of DMA.I wrote a configuration for stm32f107 DMA and removed these zeros without problem...

How to calibrate STM32L412 ADC

I have a STM32L412, I am using a 3V external reference but my ADC is not very accurate - it never reaches its full value, even though the voltage present is the same as the external voltage. I want to calibrate the ADC to see if it improves the perfo...

deep_rune by Associate III
  • 987 Views
  • 2 replies
  • 0 kudos

Resolved! SPI / DMA / D-Cache

HelloI'm confused about SPI in combination with DMA and D-Cache.I'm using the STM32H743ZI and KEIL uVision CMSIS Driver.In my opinion, the CMSIS driver has a weak point. It only sends data by HAL_SPI_TransmitReceive_DMA() if length is a multiple of 3...