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.

MSP430F2274: Master continuously receives data although it is not connected to slave or is actually receiving data

Part Number: MSP430F2274
Other Parts Discussed in Thread: MSP-FET,

I have programmed a MSP430 board to act as a master, and to light and LED once it receives character. Although this device is not actually receiving data, the LED will continuously light up. I have connected the device to an MSP-FET, the eZ430-RF2500, and a battery board, all with the same result. Is there any logical reason as to why this would occurring? My code is included in case there is a problem with the device is programmed. It should be noted that the device is configured to SPI communications using USCI_B.

#include <msp430.h>

void configGPIO(void);
void configSPI(void);

unsigned char send_byte;

int main(void)
{
    volatile int i;

    WDTCTL = WDTPW + WDTHOLD;               // Stop watchdog timer
    configGPIO();
    configSPI();

    P3OUT &= ~0x01;                         //clear output of reset/enable
    P3OUT |= 0x01;                          //set output to high

    for(i = 50; i > 0; i--);

    send_byte = 0x01;
    UCB0TXBUF = send_byte;

    __bis_SR_register(LPM0_bits + GIE);     //enter low power mode 3 w/interrupts enabled

}

void configGPIO(void)
{
    /* configure ports for USCI B0 SPI mode */
    P1OUT = 0x00;                  //setup for LED output
    P1DIR |= 0x03;                  //

    P3OUT = 0x01;                   //set output to high
    P3DIR |= 0x01;                  //output direction for rst/enable
    P3SEL |= 0x0E;                  //slave out/master in, clock input/output
}


void configSPI(void)
{
    /* configure USCI B0 for SPI mode */
    UCB0CTL0 |= UCCKPL + UCMSB + UCMST + UCSYNC;     //msb first, master mode, 3-pin SPI
    UCB0CTL1 |= UCSSEL_2;
    UCB0BR0 |= 0x02;
    UCB0BR1 |= 0x00;
    UCB0CTL1 &= ~UCSWRST;                   //initialize USCI state machine
    IE2 |= UCB0RXIE;             //enable rx/tx interrupts
}


#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector=USCIAB0RX_VECTOR
__interrupt void USCIB0RX_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(USCIAB0RX_VECTOR))) USCIA0RX_ISR (void)
#else
#error Compiler not supported!
#endif
{
    volatile int j;
    volatile long g;
    while (!(IFG2 & UCB0TXIFG));


    volatile int junk = UCB0RXBUF;
    //P1OUT ^= 0x02;
    for(g = 50000; g > 0; g--);
    P1OUT ^= 0x02;

    send_byte++;
    UCB0TXBUF = send_byte;

    //IE2 &= ~UCB0RXIE;

    for(j = 50; j > 0; j--);
}

  • Hi Sean,
    The recieve and transmit operations happen concurrently, so when you initially load the TXBUF, you are actually clocking data in (which should be junk since you say that pin is floating). Then your ISR fires and initiates another transmit, clocking more data in, and so on.

    This example shows how to implement a state machine if constant data reception is not desired (note that the ISR will still fire though, this just shows how to handle a more real world scenario). dev.ti.com/.../
  • From what I understand from your post, although there is no connection to a device which is transmitting data to the master, the interrupt is still triggering as it loads in data while it transmitting. My initial goal was to get SPI communication working between two MSP430F2274 devices, where a LED on the master will only light after receiving data from the slave. As it stands now, the LED will light up regardless of what it is connected to. Also, the example you provided is for a different MSP430 board, and I am unsure if it will have a similar functionality.
  • Woops! Here's the same code for your device.

    Master: dev.ti.com/.../

    Slave: dev.ti.com/.../

**Attention** This is a public forum