Solved
This topic has been closed for replies.
Hello @LOnGr.1 ,
DMA1_Stream6_IRQHandler() is an interrupt handler for DMA1 stream 6.It adds a process to clear the transmit completion flag if it is present.
If the flag is not cleared, the next transmission will not be performed.
void DMA1_Stream6_IRQHandler(void)
{
/* USER CODE BEGIN DMA1_Stream6_IRQn 0 */
if( LL_DMA_IsActiveFlag_TC6(DMA1) == 1){
LL_DMA_ClearFlag_TC6(DMA1);
}
/* USER CODE END DMA1_Stream6_IRQn 0 */
/* USER CODE BEGIN DMA1_Stream6_IRQn 1 */ /* USER CODE
/* USER CODE END DMA1_Stream6_IRQn 1 */ /* USER CODE
}Foued
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.