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.

MSP430FR2355: MSP430FR2355

Part Number: MSP430FR2355
Other Parts Discussed in Thread: MSP-TS430PT48, , BQ76940

Hi

we are using msp-ts430pt48 with mcu MSP430FR2355.

on the other end, there is bq76940 evm.

two evms use i2c to interconnected by external wire.

on the msp-ts430pt48, it use p4.6 and p4.7 for the i2c ping. 

I port a sample program and it block on the first data send from MSP430FR2355.

it keep looping in the following in I2CSendBytes() function line 226

========================================================

HWREG16(baseAddress + OFS_UCBxCTLW0) |= UCTR + UCTXSTT;

while(!(HWREG16(baseAddress + OFS_UCBxIFG) & UCTXIFG))

========================================================

I check UCBxIE and it all turn on and all registers value all make sense to me.

Not sure why the flag is always 0

please advise

Thanks

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
*
* main.c
*
* This module demonstrates operation of CRC with the bq769x0 family
* AFE devices using a MSP430G2553
*
* Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the
* distribution.
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • >P4SEL0 |= BIT6 + BIT7; // Assign I2C pins to USCI_B0, P1.6 for SCL and P1.7 for SDA
    >P4SEL1 |= BIT6 + BIT7; // Assign I2C pins to USCI_B0, P1.6 for SCL and P1.7 for SDA

    To get UCB1SDA/SCL on P4.6/7 you need PSEL=01, i.e. the PSEL1 bits should be =0 [Ref FR2355 data sheet (SLASEC4D) Table 6-66].

    Remove the second of these lines.

    --------------

    Did you install the I2C pullups? [Ref EVM data sheet (SLVU925C) Sec 6.6]

    If your wires are very short and you don't run the bus too fast (try BRW=80 instead of BRW=8) you might succeed with the internal pullups:

    >P4OUT |= (BIT6|BIT7);

    >P4REN |= (BIT6|BIT7);

  • change the configuration in the following

    1> pull up I2C on both side

    2> 

    P4SEL0 |= BIT6 + BIT7; // Assign I2C pins to USCI_B0, P1.6 for SCL and P1.7 for SDA
    P4SEL1 = 0;
    P4OUT |= BIT6 + BIT7;
    P4REN |= BIT6 + BIT7;

    When I try the same steps, I do see  UCTXIFG set to 1.

    However, it is in the B0 module .

    My setting is on B1 module.

    Does this make sense and how can i fix this?

    please advise

    Thanks

  • This does seem unusual. What is the value of EUSCI_B1_BASE? (It should be 0x05C0) [Right-click on the name and "Go To Definition".]

    Do the other UCB0 registers show your settings as well? An uninitialized EUSCI_B has UCTXIFG=1 [Ref User Guide (SLAU445I) Table 23-18].

  • Hello,

    Please see the following resources for debugging I2C issues with MSP430.

    MSP Academy: I2C Concepts

    Solutions to Common issues of eUSCI and USCI Serial Communications

  • I think this issue is not even related to I2C.

    we just found out that msp-ts430pt48 has no crystal.

    I will mark this issue solved.

    Thanks

     

**Attention** This is a public forum