Hi Team,
I am currently working on UART-LIN. I am trying to check if the stop bit has arrived with each data transmission. However, I don’t know how to check the stop bit in UART. Can anyone please help me regarding this, ASAP.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi Team,
I am currently working on UART-LIN. I am trying to check if the stop bit has arrived with each data transmission. However, I don’t know how to check the stop bit in UART. Can anyone please help me regarding this, ASAP.
Hi Dennis,
Thank you for the reply
DL_UART_Extend_enableInterrupt(LIN_0_INST,
DL_UART_EXTEND_INTERRUPT_BREAK_ERROR |
DL_UART_EXTEND_INTERRUPT_LINC0_MATCH |
DL_UART_EXTEND_INTERRUPT_LIN_COUNTER_OVERFLOW |
DL_UART_EXTEND_INTERRUPT_LIN_FALLING_EDGE |
DL_UART_EXTEND_INTERRUPT_RXD_POS_EDGE);
__STATIC_INLINE void DL_UART_enableInterrupt(
UART_Regs *uart, uint32_t interruptMask)
{
uart->CPU_INT.IMASK |= interruptMask;
}
IMASK register -> we have RXINT yes I have configured
Hi Santhosh,
Ok, I see you enable the RXINT interrupt. Do you have and ISR handler for the UART?
Hi Dennis,
Thank you so much for the reply,
Issue is resloved Dennis,I am able to get the data but I am trying with FIFO I will come back if I face any issue within Today