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.
I need to use the MSP430G2403 as a bridge of communication which converts UART protocol to I2C protocol to interface two devices
i.e,
UART I2C
UART_Device <---------->MSP430G2403 <---------------> I2C_Device
the problem here is both UART (Tx) and I2C(RX/Tx) are sharing the interrupt vector while both UART(Rx) and I2C(status) are sharing the same interrupt vector.
What can I do with dis situation.
Usually in those cases, in the interrupt routine you check (poll) the relevant register to know who caused the interrupt.
In the User's Guide, page 437, you have an example for a similar case.
**Attention** This is a public forum