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
TI has the following slave code msp430fr6043_euscib0_i2c_11.c which writes to a master, i just snipit the ISR for reference.
switch(__even_in_range(UCB0IV, USCI_I2C_UCBIT9IFG)) { case USCI_NONE: break; // Vector 0: No interrupts case USCI_I2C_UCALIFG: break; // Vector 2: ALIFG case USCI_I2C_UCNACKIFG: break; // Vector 4: NACKIFG case USCI_I2C_UCSTTIFG: break; // Vector 6: STTIFG case USCI_I2C_UCSTPIFG: // Vector 8: STPIFG TXData = 0; UCB0IFG &= ~UCSTPIFG; // Clear stop condition int flag break; case USCI_I2C_UCRXIFG3: break; // Vector 10: RXIFG3 case USCI_I2C_UCTXIFG3: break; // Vector 12: TXIFG3 case USCI_I2C_UCRXIFG2: break; // Vector 14: RXIFG2 case USCI_I2C_UCTXIFG2: break; // Vector 16: TXIFG2 case USCI_I2C_UCRXIFG1: break; // Vector 18: RXIFG1 case USCI_I2C_UCTXIFG1: break; // Vector 20: TXIFG1 case USCI_I2C_UCRXIFG0: // Vector 22: RXIFG0 break; case USCI_I2C_UCTXIFG0: // Vector 24: TXIFG0 UCB0TXBUF = TXData++; //toggle LED P1OUT ^= BIT5; // Toggle LED P1.5 break; case USCI_I2C_UCBCNTIFG: break; // Vector 26: BCNTIFG case USCI_I2C_UCCLTOIFG: break; // Vector 28: clock low timeout case USCI_I2C_UCBIT9IFG: break; // Vector 30: 9th bit default: break; }
i am looking for snippet that reads a byte from master.
thanks,
Hi Ephraim,
You can find an example of this functionality in the MSP430Ware SDK at: [SDK Install Path]\msp430ware_3_80_14_01\examples\devices\MSP430FR5xx_6xx\MSP430FR60x7_MSP430FR60x5_Code_Examples\C\msp430fr60x7_eusci_i2c_standard_slave.c
This example was developed for the MSP430FR6047, but that is just a higher memory + LCD variant of the MSP430FR50431, so the I2C code for the two should be the same.
hi Dylan,
following the path you gave, me i do not find that specific file:
can you send me that file, i want to read a byte from the master.
thanks,
hi Dylan,
i believe this example will do it msp430fr60x7_euscib0_i2c_multislave.c.
thanks
**Attention** This is a public forum