2021-01-14 06:46 AM
What would be the register level equivalent of the following statement:
LL_HRTIM_ClearFlag_REP(HRTIM1, LL_HRTIM_TIMER_MASTER);
Solved! Go to Solution.
2021-01-14 08:45 AM
Cube is open source, so you can look it up yourself in Cube's sources.
For example, look at https://github.com/STMicroelectronics/STM32CubeH7/blob/beced99ac090fece04d1e0eb6648b8075e156c6c/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_hrtim.h#L7810
JW
2021-01-14 07:04 AM
Also,
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_10, GPIO_PIN_SET);
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_10, GPIO_PIN_RESET);
Any guide to programming at the register level for all peripherals? Thank you so much!
2021-01-14 08:45 AM
Cube is open source, so you can look it up yourself in Cube's sources.
For example, look at https://github.com/STMicroelectronics/STM32CubeH7/blob/beced99ac090fece04d1e0eb6648b8075e156c6c/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_hrtim.h#L7810
JW
2021-01-14 10:01 AM
Thanks!