STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

New possibilities for the ultra-low power segment!

STM32U0 is the first Cortex-M0+ with a static consumption of only 160 nA in standby mode with RTC (Real-Time Clock) and 16 nA in shutdown. It also achieves 118 points in CoreMark and targets SESIP level 3 and PSA level 1 focusing on firmware code pro...

gif-stm32u0.gif

Resolved! Setting Up Clock UART RX TX Baudrate 9600

Hi Everyone!I am using the STM32407IG and i am trying to send data to another mcu chip via USART RX TX Pins.The Problem is when i run it via USB FS i don't get the baud rate adjusted.How can i setup the Clock for a Baud rate of 9600?That's my clock s...

arduo by Senior
  • 572 Views
  • 3 replies
  • 1 kudos

I am SPI DMA working on STM32F7, but when i try to shift the same to STM32H7 i am not able to get it working. I am not gettin DMA callback.

I am only using DMA to receive data continuously so when i want to receive data I am swithcing modes from full duplex to receive only. this whole pattern was working on F7 but not able to get it working on H7.I have followed some solutions given on S...

sgand.16 by Associate
  • 363 Views
  • 2 replies
  • 0 kudos

STM32F0 ADC Accuracy

Posted on May 31, 2018 at 11:34Hi, everyone. I've been using STM32F030F4P6 for a project. While prototyping the circuit that I am going to use on my project, I shorted Vdda and Vdd pins together with 10uF and 100nF capacitors to the ground. I am giv...

Nuppo by Associate II
  • 910 Views
  • 7 replies
  • 0 kudos

What is the format of .bin output files?

Posted on October 01, 2015 at 21:13I'm working with the STM32 Bootloader, and I see that the .hex output from my Eclipse build has reasonable addresses. When I look in the .bin output, though, the contents don't seem to match what I expect. Is the ....

STM32 HAL NAND flash library bug

Posted on May 04, 2015 at 02:31I found a bug in stm32f4xx_hal_nand.c module, in ''HAL_NAND_Read_Page'' function!Need to change this line: *(__IO uint8_t *)((uint32_t)(deviceAddress | ADDR_AREA)) = 0x00; to this: *(__IO uint8_t *)((uint32_t)(deviceAd...

[How to] Design a capacitive touch sensor

Each touch sensor features 2 sets of electrodes: the Transmitting ones (also known as Tx, or the driving electrodes, or simply X electrodes) and the Receiving ones (also known as Rx, or the sensing electrodes or simply Y electrodes).Electrodes are us...

PAram by Associate II
  • 857 Views
  • 0 replies
  • 0 kudos

(many) DMAs to GPIO

Hello!I have to build a system that throws data simultaneously to 6 16-bit ports. It should be bit-accurate, so I was thinking about preparing all the DMA channels with one single timer, and when everything is ready, start the timer. I already did th...