STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Am I correctly setting up TIM2 input capture?

Hi everyone.I'm trying to setup TIM2_CH4 remapped as input capture, in order to detect rising edges on PB11.I'm working with HALs. And my code is next:First of all, for initialization: // APB2 (which is 64 MHz) at 8 MHz timer_cap_timhandle_.Inst...

0690X000006DMgfQAG.png
areify by Associate II
  • 385 Views
  • 0 replies
  • 0 kudos

Remote failure reply: E31

Hello,I use TrueSTUDIO 9.2.0 and I sometimes get the followingerror:warning: Remote failure reply: E31C:\Users\***\AppData\Local\Temp\truestudio8442355296883488729gdbscript:14: Error in sourced command file:Remote communication error. Target disconne...

NCTUser by Associate III
  • 604 Views
  • 0 replies
  • 0 kudos

CubeMX 4.25 ToolChain Location Bug ??

Posted on March 26, 2018 at 20:32In CubeMX 4.25.0:      Project -> Settings  (or just Alt-P):    shows Project and ToolchainFolder locations:     But the project name get appended to these locations every time you enter the settings panel, so the co...

Goof Ball by Associate III
  • 732 Views
  • 4 replies
  • 0 kudos

STM32L151 bootloader autobaud issues

Posted on December 17, 2015 at 10:06Hi,We are working on a design utilizing the STM32L151 MCU, which is to be programmed over a UART link using the internal bootloader. Selected baudrate for programming is 115200 (with even parity).The issue we are ...

about stm32 clock configuration

I am trying to configure my stm32L4 device clock for 80MHz with PLL I am trying to understand a piece of code i found online could someone explain what the c code below meansRCC->PLLCFGR = (RCC->PLLCFGR & ~RCC_PLLCFGR_PLLN) | 20U << 8; RCC->PLLCFGR =...