User Activity

I like the way CubeIDE generate the code. Especially with "Generate peripheral initialization as a pair of '.c/.h' files per peripheral". This is very helpful tools not only for start the project but also for checking particular functionality.Why exa...
There is strange behaviour with CH1 and CH1N in TIM1 (STM32F411) when using CubeIDE and Low Layer. If you set CH1 in PWM mode 1 it works after:LL_TIM_CC_EnableChannel(TIM1, LL_TIM_CHANNEL_CH1);LL_TIM_EnableCounter(TIM1);If you set CH1N in PWM mode 1 ...
In RM0383 Reference manual on page 215 - Section: Continuous conversion mode.There is "SWSTRT bit" but shoul be "SWSTART bit".This is very important bit :-).
There is a bug in CubeH7 examples. Folder: STM32Cube_FW_H7_V1.7.0\Projects\NUCLEO-H7A3ZI-Q\Examples_LL\TIM\TIM_PWMOutputFile: main.cFunkcion: TimerCaptureCompare_Callback()Instead of "if (LL_TIM_OC_GetCompareCH1(TIM3) > ARR )" should be "if (LL_TIM_O...
Is it possible to run two or more channels on timer with DMA PWM mode?This code starts only first Channel. uint32_t PrawoPWM = 100; uint32_t LewoPWM = 100; HAL_TIM_PWM_Start_DMA(&htim4, TIM_CHANNEL_1 , &PrawoPWM, 1); HAL_TIM_PWM_Start_DMA(&htim4, TIM...
Kudos from