User Activity

The PB7 pin is set as GPIO_EXTI7 and TIM17 is enabled for PWM output. In the generated code, the IRQ routine is generated wrongly as follow:void EXTI9_5_IRQHandler(void) { /* USER CODE BEGIN EXTI9_5_IRQn 0 */   /* USER CODE END EXTI9_5_IRQn 0 */ ...
The function RTC_EnterInitMode in stm32h7xx_hal_rtc.c can cause a forever loop when initializing RTC. The break line is missed as below: while ((hrtc->Instance->ISR & RTC_ISR_INITF) == 0U) { if((HAL_GetTick() - tickstart) > RTC_TIMEOUT_...
It's not a bug. But unlike other STM32 HALs, STM32L4 HAL has no HAL_TIM_DMABurst_MultiReadStart function. My STM32L HAL is version 1.15.1.
When doing a remap IC (Input Capture) for a timer, the code is generated wrongly to use HAL_TIMEx_RemapConfig function to set the remap. To make it work properly, I have to fix it manually by using HAL_TIMEx_TISelection instead.Also, when setting CH1...
Kudos from