Hello,
I'm working with the msp430F5438A.
My question is, what does the flag UCRXEIE mean?
the first option , Is this bit (UCRXEIE ) is for a rejection of faulty
characters and consequently we would not get interrupt.
But if I want to get interrupt just for incorrect information alone ( not for correct byte)
I can not do it, i just can reject the incorrect byte.
( i can not separate between interrupt for proper information
and faulty information , just to reject faulty characters from receive)
Or ( the second option) that the (UCRXEIE ) is it an option
to get interrupt on communication failures alone ( not for proper character, proper character can received without setting interrupt),
or to reject the byte ( if it incorrect byte).
that mean , if proper character is received it will not set interrupt.
proper character will set interrupt only by UCRXIE and GIE.
and faulty characters set interrupt only by UCRXEIE (and GIE Of course)
What is the correct option among these two?
thanks.