I am working with SPI for the first time. I am using the USCI and have a few questions.
1. Does having the RXIE interrupt called mean that SPI is working?
2. I am trying to write to an eeprom at address 0 and then read from that location and display it on an LCD. Does the MSP430 allow for number's like "81" to be used for TXBUF?
3. Is the value sent to RXBUF from the read able to be store in an "int"? For example, if I write "81" to address "0" and then read from address "0" does RXBUF give me an "81" if I do the following?
int dataRead;
dataRead = UCA0RXBUF;
Thanks for any advice.
Take care,
Jon