Iam trying to define a ISR for a UART interrupt on the esp32, generally, my Programm should just send out and array of bytes from the transmit-buffer(tx-FIFO), do an interrupt as soon as the transmit-buffer is empty and start another output of the same array from the transmit-buffer.
Currenty I cant find how to assign a specific ISR(which I can then define myself) to the UART_TX_DONE_INT interrupt, which indicates that the transmit buffer is empty.
A main reason for my stuck is because i dont get the Idea of what an interrupt handle / handler is, in the way this guy http://zerothelement21.blogspot.com/2018/05/esp32-uart-interrupt-handling.html describes it.
Expectation: I can define an interrupt, which is triggered when the tx_FIFO is empty and that I can define the ISR of this interrupt myself.