STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

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
  • 751 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...

Resolved! I have a timer set up to measure the input PWM period on channel 1 and pulse width on channel 2 as outlined in the reference manual and it works fine. However, when I stop the input signal, the capture registers are never reset to indicate 0 frequency.

Timer configurations are as follows:   // Control registers(input PWM on channel 1 and 2[pin 12 & 13])  TIM4->CCMR1 |= TIM_CCMR1_CC1S_0 ; // Active input for tim_ccr1  TIM4->CCMR1 |= TIM_CCMR1_CC2S_1; // Active input for tim_ccr2   TIM4->CCER  |= TIM...

bmose.2 by Associate
  • 1055 Views
  • 2 replies
  • 0 kudos