Question
SW TRIGGER wrong logic check in HAL_DAC_START - STM32L4 HAL
/* Check if software trigger enabled */
if ((hdac->Instance->CR & (DAC_CR_TEN1 | DAC_CR_TSEL1)) == DAC_CR_TEN1)I think the if check is wrong - we should check if TEN and TSEL are set, but now we check for TSEL=111 and TEN=0
