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.

MSP430FR5994: Timer_B0 and eUSCI_B interrupt priority problem

Part Number: MSP430FR5994

Hi, 

I am interfacing two sensors through i2c protocol and simultaneously i am also trying to attach a timestamp for the data i getting from those peripherals. For time stamp i have created timer library using the timer_B. Both the I2c library and Timer Library are working fine on their own space. But when i try to compile together the timer interrupt is not getting triggered only the i2c protocol is working and i tried with RTC also i got the same result. I am attaching by timer code here please go through it and let me know your suggestions

Thankyou

Timer code:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <msp430.h>
#include <stdio.h>
#include <stdint.h>
volatile uint32_t millis=4294967294;
uint8_t secs=0;
uint8_t minutes=0;
uint8_t hours=0;
uint32_t fun()
{
secs= seconds%60;
minutes = seconds/60;
hours = seconds/60/60;
return seconds;
}
int main(void)
{
WDTCTL = WDTPW | WDTHOLD; // Stop WDT
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • The first place I would look is the I2C code, but I don't see any here. I would be looking for

    1) spin-loops (or equivalent) which keep execution in the ISR for a long time. 

    2) An LPM wakeup sequence which accidentally disables interrupts (GIE) in main e.g. "__bic_SR_register_on_exit(LPM0_bits | GIE)". [Small but significant typo.]

    Unsolicited: "seconds" should be declared "volatile".

  • Hey Bruce,

    Thanks for the reply.Could you please let me know how i can tackle this spinloop problem and LPM disable GIE issue and here is i2c code

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #include <msp430.h>
    #include <stdint.h>
    #include <stdbool.h>
    #include <stdio.h>
    //******************************************************************************
    // Pin Config ******************************************************************
    //******************************************************************************
    #define LED_OUT P1OUT
    #define LED_DIR P1DIR
    #define LED0_PIN BIT0
    #define LED1_PIN BIT1
    //******************************************************************************
    // Example Commands ************************************************************
    //******************************************************************************
    #define SLAVE_ADDR 0x53
    /* CMD_TYPE_X_SLAVE are example commands the master sends to the slave.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • This looks OK as far as it goes. How do you combine the two?

    Also: how do you tell that the timer interrupt isn't happening? A breakpoint in the ISR? Or some external indicator?

  • First i tried with the breakpoint and then i tried by enabling a Led under the interrupt routine. I guess the while entering the LPM in the i2c transaction it disables the timer interrupt or spin lock that you've mentioned earlier

  • What does your combined main (the one that fails) look like? I notice that your timer example enables interrupts (GIE) right at the beginning, but the I2C example doesn't enable GIE until the first I2C operation. I'm wondering what the resulting (failing) code does.

  • This is my combined code. In this one the timer interrupt is not triggering at all

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #include <msp430.h>
    #include <mlx90614.h>
    #include <ADXL345.h>
    #include <i2c.h>
    #include <stdint.h>
    #include <stdio.h>
    #include <Timer.h>
    /**
    * main.c
    */
    #define Clock_div 160
    typedef enum sys_mode{
    Idle_mode,
    Accel_mode,
    Pox_mode,
    Temp_mode
    } sys_mode;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • First principles: 

    1) if you pause the program in the debugger, where are you executing?

    2) In the debugger Registers view, under "CPU registers" (top line), what is the value of SR? In particular, is GIE=1?

    3) Under TIMER_B0 (further down), what is the value of TB0CTL? In particular, are both TBIE=1 and TBIFG=1?

    If GIE=1, TBIE=1, and TBIFG=1, then we expect the ISR will be called; if not, that points one direction. If one of these is =0, that points in a different direction.

  • Hey bruce i have checked it  and these are status of the bits

    GIE=0, TBIE=1, and TBIFG=0

  • 1) if you pause the program in the debugger, where are you executing? 

    2) What is the value of TB0CTL? [Now we're interested in TBSSEL and MC, to see whether the timer is running. We're still interested in TBIE and TBIFG.]

**Attention** This is a public forum