STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Hi, I want to do phase shifting using complementary output at Timer1 using CH1 and CH1N. I believe it can be done using CCR2 register.

MX_TIM1_Init(); /* USER CODE BEGIN 2 */ RCC->APB2ENR |= RCC_APB2ENR_TIM1EN; // Enable timer1 //RCC->APB1ENR |= RCC_APB1ENR_TIM3EN; TIM1->CCMR1 |= 0x0000E8E8; // CH1 & CH2 Output Compare(CC1S), Preload(OC1PE), PWM1 Enable(OC1M)* TIM1->CCMR2 |= 0x00000...

Suraj1 by Associate
  • 426 Views
  • 0 replies
  • 0 kudos

STM32L476 maximal SPI clock speed

We are using stm32L476 in one project where we need to access external SPI flash. I havesetup SPI clock speed to 10Mhz and it works without any problems, but at 21Mhz flash becomenon responsible. When I checked clock with oscilloscope I can see, that...

About STM32L4xx series

Hi,​We tested to rewrite the data into STM32L433CC.May i know why this device is unable to program data in second time?If i use STM32F072, and it is able to rewrite the data in second time.What is the different?​For example, i write the data at addre...

JHsu.14 by Associate II
  • 743 Views
  • 3 replies
  • 0 kudos

Why are STM tools for Linux still 32-bit?

Most Linux distributions now are 64-bit. However the ST tools like > file STM32CubeProgrammerLauncherSTM32CubeProgrammerLauncher: ELF 32-bit LSB executable, Intel 80386, version 1 are still 32-bit executables. Furthermore the programs are picky about...

STM32F105RC PB6 always stay 0, EXTI never trigg

// PB6 Main sync pin GPIO_InitTypeDef GPIO_InitStructure; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz; GPIO_Init(GPIOB, &GPIO_InitStructure);   ...

BSANT.17 by Associate II
  • 2693 Views
  • 10 replies
  • 0 kudos

Problem with USB Hish Speed on STM32F746G-Disco board

Hello,I have problems with some STM32F746G-DISCO boards on the USB High speed port.I have built an application which uses the USB-HS in host mode. On one board, it works fine, but on other ones I cannot make it work.To test the hardware and not my so...