cancel
Showing results for 
Search instead for 
Did you mean: 

"HAL_UART_Transmit_DMA(...)" without HTIE (Half transfer interrupt enable)

BRoge
Associate II

Is there a HAL method that allows you to easily set a transmit DMA interrupt like "HAL_UART_Transmit_DMA(...)" but without setting the half transfer interrupt routine? Since the Tx buffer is full when this is enabled, I can expect the DMA to start transmitting right away, so I was wondering if there is a HAL method to disable the HTIE before starting the DMA.

1 ACCEPTED SOLUTION

Accepted Solutions
S.Ma
Principal

Nope, manually disable unwanted interrupts, hal hack needed.

View solution in original post

2 REPLIES 2
S.Ma
Principal

Nope, manually disable unwanted interrupts, hal hack needed.

BRoge
Associate II

Darn, ok thanks for letting me know. I think I'll just copy the function and modify it to my needs in a different .c file.