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

Why not replace Systick by hardware timer?

Recently a thought popped up when I had a look through interrupt handlers (Using HAL):As Systick handler gets called every millisecond (if not changed to something else) only to increase a counter, doesn't this unnecessarily waste valuable compute ti...

ABaus by Associate
  • 720 Views
  • 3 replies
  • 1 kudos

Serial vieuwer shows weird characters!

hey,I have a STM32L432 and with putty i can see a sort of serial monitor. It works.....sort of, well i see weird characters. i have the same baud rate and the rest of the settings are dafeault. i have put the code under here.if you have the answer i...

OTosu.1 by Associate II
  • 355 Views
  • 2 replies
  • 0 kudos

STM32f103 Clock configuration problem

Hello,Here is my code:#include <stdio.h> #include <string.h> #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h"   void GPIOSYS(void){ GPIO_InitTypeDef GPIOStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE); //GPIO_PinRemapConfi...

JJohn.3 by Associate II
  • 606 Views
  • 6 replies
  • 0 kudos

How to get started with STM32L452 SDMMC interface

I am trying to use the STM32L452RE Nucleo to research an interface to an eMMC device. I have generated a project for this using STM32CubeMX. The eMMC device I am using has its interface voltage connected to 3V3, however, when I look at the CLK output...

Resolved! GPIO Output speed range STM32H7

Hi,I am working with STM32H743ZII was configuring GPIO output pins and I have to define "speed" which I assume is related to opamp slew rate. But I have a problem with the units, I can choose between "Very high", "High", "Medium", "Low". After readin...