STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! How to adjust Compare Value in HRTIM Basic PWM

Hello,currently I am using the NUCLEO-G474RE and the goal is to output a PWM signal simulating a sinewave. Therefore the duty cycle must continuously be adjusted.My issue is that I seemingly cannot do so.The Timer is configured as Timer D, TD1 output...

Matt1234 by Associate II
  • 2049 Views
  • 3 replies
  • 0 kudos

Modifying linker to keep all ram after soft reset

Hi, everyone. I am using stm32l496 and I my application requires me to keep all data in ram after reset. Now i followed these instructions in this link. https://interrupt.memfault.com/blog/noinit-memory it works, like I expected but the thing is I wa...

HZaib.1 by Associate III
  • 2206 Views
  • 7 replies
  • 3 kudos

HAL Library for Medical device EN62304

Hello Everyone I dont know if its the correct place to ask . We design a medical device where EN62304 calss C is applied . the standart says if we use an 3rd party software ( any library ) should be designed to use for medical devices. What about HAL...

STM32L476 SPI incorrect readings

I am trying to communicate with a spectrometer sensor using SPI protocol. With SPI default settings, I am using both arduino and Stm32L476 nucleo boards. (8Bits, MSB First, CPOL Low, CPHA 1 Edge).I read multiple registers from the sensor using both a...

RSath.1 by Associate II
  • 2165 Views
  • 5 replies
  • 0 kudos

HAL_GPIO_TogglePin() not thread-safe

Posted on May 30, 2018 at 21:31STM32Cube_FW_F7_V1.11.0's HAL_GPIO_TogglePin() appears broken in a multi-threaded environment:void HAL_GPIO_TogglePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin){  /* Check the parameters */  assert_param(IS_GPIO_PIN(GPIO_...