Part Number: MSP430G2553
Tool/software: TI C/C++ Compiler
I am implementing I2C example from "Resource Explorer". (msp430g2xx3_uscib0_i2c_01.c)
The MCU communicates with a slave IC but stuck on
while (UCB0CTL1 & UCTXSTT); // Loop until I2C STT is sent
If I detach the sensor SDA line from MCU then there is no problem.
I achieved communication with another MCU (STM32). So, I think there is no physical problem on the system.
#include <msp430.h>
int main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop Watchdog Timer
P1SEL |= BIT6 + BIT7; // Assign I2C pins to USCI_B0
P1SEL2|= BIT6 + BIT7; // Assign I2C pins to USCI_B0
UCB0CTL1 |= UCSWRST; // Enable SW reset
UCB0CTL0 = UCMST+UCMODE_3+UCSYNC; // I2C Master, synchronous mode
UCB0CTL1 = UCSSEL_2+UCSWRST; // Use SMCLK, keep SW reset
UCB0BR0 = 12; // fSCL = SMCLK/12 = ~100kHz
UCB0BR1 = 0;
UCB0I2CSA = 0x1C; // Set slave address
UCB0CTL1 &= ~UCSWRST; // Clear SW reset, resume operation
IE2 |= UCB0RXIE; // Enable RX interrupt
TACCTL0 = CCIE; // TACCR0 interrupt enabled
TACTL = TASSEL_2 + MC_2; // SMCLK, contmode
while (1)
{
__bis_SR_register(GIE); // CPU off, interrupts enabled
UCB0CTL1 &= ~UCTR; // I2C RX
UCB0CTL1 |= UCTXSTT; // I2C start condition
while (UCB0CTL1 & UCTXSTT); // Loop until I2C STT is sent
UCB0CTL1 |= UCTR + UCTXSTT; // I2C TX, start condition
__bis_SR_register(GIE); // CPU off, interrupts enabled
while (UCB0CTL1 & UCTXSTT); // Loop until I2C STT is sent
UCB0CTL1 |= UCTXSTP; // I2C stop condition after 1st TX
}
}
#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector = TIMER0_A0_VECTOR
__interrupt void TA0_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(TIMER0_A0_VECTOR))) TA0_ISR (void)
#else
#error Compiler not supported!
#endif
{
//__bic_SR_register_on_exit(CPUOFF); // Exit LPM0
}
// USCI_B0 Data ISR
#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector = USCIAB0TX_VECTOR
__interrupt void USCIAB0TX_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(USCIAB0TX_VECTOR))) USCIAB0TX_ISR (void)
#else
#error Compiler not supported!
#endif
{
UCB0TXBUF = (UCB0RXBUF << 4) | 0x0f; // Move RX data to TX
//__bic_SR_register_on_exit(CPUOFF); // Exit LPM0
}