cancel
Showing results for 
Search instead for 
Did you mean: 

I2C in ST10F276

dvir
Associate II
Posted on May 03, 2007 at 06:48

I2C in ST10F276

4 REPLIES 4
dvir
Associate II
Posted on April 29, 2007 at 14:17

Hi,

We are trying to write an I2C driver for the ST10F276 (ST10F276Z5T3 - working at 40Mhz) and we encounterd the following problem:

we use the function below to send the start bit, but it doesn't work ( I2CSR1 bit 0 does not rise )without the delay of about 100uSec between the the assignment of I2C_START value to the I2CCR register and querying of the I2CSR1 register.

Is there a reason for this delay?

we copied this driver from a prior product which used ST10F276 also but worked at 64Mhz and no delay was needed there.

thanks in advance,

Dvir

//------------------------------------------------------------------------

#define I2C_START ((unsigned char)0x08)

#define I2C_SB 0x0001

byte I2C_TransmitStartBit(void)

{

word wSavedTime;

word wIndex;

I2CCR |= I2C_START;

wSavedTime = INT_dwGetTime(); // 1mSec resolution

//************************************************************************

// ~100uSec delay

for (wIndex = 0; wIndex < 150 ; wIndex++ )

{

_nop();

}

//************************************************************************

if ((I2CSR1 & I2C_SB) == 0)

{

if (( INT_dwGetTime() - wSavedTime ) > 3)

{

return(FALSE);

}

}

return(TRUE);

}

//------------------------------------------------------------------------

najoua
Associate II
Posted on May 02, 2007 at 08:33

Hello Dvir,

After the Start condition is sent by setting bit I2C_START in I2CCR register, a wait until the I2C_SB in I2CSR1 register is set, must be done because the SB bit is not set immediately after sending the start condition.

Could you please use the following code instead the delay.

// Check if START condition is generated correctly

while (!(SR1 & I2C_SB)) I2CCheckError();

with:

#define I2C_BERR ((unsigned char)0x02)

void I2CCheckError(void)

{

if( SR2 & I2C_BERR ) _nop();

}

You said that this code works well at 64MHz. May be the duration of the instructions following the launching of the start condition was sufficent for the SB bit to be set.

Could You please tell me how it goes? If you want, I can provide you working I2C routines.

Best regards,

Najoua.

dvir
Associate II
Posted on May 02, 2007 at 13:17

Hi Najoua,

I tried your suggested solution, but i got stuck endlessly inside the

'' while (!(SR1 & I2C_SB)) I2CCheckError(); '' loop.

It seems like reading SR1 frequently while the start is being produced causes the problem, but that's just a guess.

If you have I2C routines that work on 40Mhz MCU, I'll be happy to get them.

Thanks for your help,

Dvir

najoua
Associate II
Posted on May 03, 2007 at 06:48

Hi Dvir,

Please find enclosed the source files of a project which was created using Tasking Toolchain, so minor modifications should be applied to adapt it to your Toolchain.

The purpose of this program is to make use of the ST10F27x I2C peripheral to communicate with a 7 segment diplay.

Hope this helps you.

Please let me know how it goes.

Best regards,

Najoua.

[ This message was edited by: Najoua on 03-05-2007 10:19 ]

________________

Attachments :

7_Segment_Display.zip : https://st--c.eu10.content.force.com/sfc/dist/version/download/?oid=00Db0000000YtG6&ids=0680X000006I0P3&d=%2Fa%2F0X0000000bYa%2FHScQWb.cTy7xWceQnkrSN6UK0go68C0vwCpTQGVByjE&asPdf=false