LPC1114 Errata

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

LPC1114 Errata

1,363 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by atomicdog on Sun Mar 06 23:10:36 MST 2011
I saw the code below in the I2C example code. Is there an updated errata that mentions this issue and which silicon  revisions are/were effected? The errata I found only talked about an ADC issue for revs A and B. The code uses the 'fixed' version, but when was it fixed?

void I2CSlaveInit( void ) 
{
  /* SSP and I2C reset are overlapped, [B]a known bug[/B], 
  for now, both SSP and I2C use bit 0 for reset enable. 
  Once the problem is fixed, change to "#if 1". */
#if 1
  LPC_SYSCON->PRESETCTRL |= (0x1<<1);
#else
  LPC_SYSCON->PRESETCTRL |= (0x1<<0);
#endif
--John
0 Kudos
Reply
3 Replies

1,307 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by kendwyer on Thu Jun 23 09:40:14 MST 2011
[FONT=&quot]This was a comment from the early silicon validation. It is fixed in the released silicon.

The code sh[/FONT][FONT=&quot]ould read as follows:
[/FONT][FONT=&quot]LPC_SYSCON->PRESETCTRL |= (0x1<<1);


[/FONT]
0 Kudos
Reply

1,307 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by atomicdog on Tue Jun 21 16:11:40 MST 2011

Quote: mfph
Did you find an answer to this? I wanted to ask the same question.

mfph


Nope...:(
0 Kudos
Reply

1,307 Views
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by mfph on Tue Jun 21 15:44:18 MST 2011
Did you find an answer to this? I wanted to ask the same question.

mfph
0 Kudos
Reply