<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LPC176x errata in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621503#M24351</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ping,&lt;/P&gt;&lt;P&gt;thank's for the example but it did not really answer my question.&lt;/P&gt;&lt;P&gt;In your code you set the I2C-pins in open drain mode (Chip_IOCON_EnableOD(LPC_IOCON, 0, 11)&lt;/P&gt;&lt;P&gt;but according to the errata this is not possible if the pin is not used as a GPIO. So the question is, will it automatically be an OD when used as I2C. Otherwise there might be problems.&lt;/P&gt;&lt;P&gt;However, I can use the I2C interface without problem, but I would still know what gives in this case and any other setup of functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Sep 2016 08:57:21 GMT</pubDate>
    <dc:creator>mikaelstolt</dc:creator>
    <dc:date>2016-09-20T08:57:21Z</dc:date>
    <item>
      <title>LPC176x errata</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621501#M24349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see in the errata for LPC176x that it is impossible to set a pin to open drain-mode unless it set as GPIO. How does that work if the pin is set to I2C mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 18:53:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621501#M24349</guid>
      <dc:creator>mikaelstolt</dc:creator>
      <dc:date>2016-09-15T18:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC176x errata</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621502#M24350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I've attached the I2C pins initialization function, please refer to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Sets up board specific I2C interface */&lt;BR /&gt;void Board_I2C_Init(I2C_ID_T id)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;switch (id) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;case I2C0:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 27, IOCON_MODE_INACT, IOCON_FUNC1);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 28, IOCON_MODE_INACT, IOCON_FUNC1);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_SetI2CPad(LPC_IOCON, I2CPADCFG_STD_MODE);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;break;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;case I2C1:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 19, IOCON_MODE_INACT, IOCON_FUNC2);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 20, IOCON_MODE_INACT, IOCON_FUNC2);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_EnableOD(LPC_IOCON, 0, 19);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_EnableOD(LPC_IOCON, 0, 20);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;break;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;case I2C2:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 10, IOCON_MODE_INACT, IOCON_FUNC2);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_PinMux(LPC_IOCON, 0, 11, IOCON_MODE_INACT, IOCON_FUNC2);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_EnableOD(LPC_IOCON, 0, 10);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Chip_IOCON_EnableOD(LPC_IOCON, 0, 11);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;break;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Ping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 07:07:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621502#M24350</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2016-09-20T07:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: LPC176x errata</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621503#M24351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ping,&lt;/P&gt;&lt;P&gt;thank's for the example but it did not really answer my question.&lt;/P&gt;&lt;P&gt;In your code you set the I2C-pins in open drain mode (Chip_IOCON_EnableOD(LPC_IOCON, 0, 11)&lt;/P&gt;&lt;P&gt;but according to the errata this is not possible if the pin is not used as a GPIO. So the question is, will it automatically be an OD when used as I2C. Otherwise there might be problems.&lt;/P&gt;&lt;P&gt;However, I can use the I2C interface without problem, but I would still know what gives in this case and any other setup of functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 08:57:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621503#M24351</guid>
      <dc:creator>mikaelstolt</dc:creator>
      <dc:date>2016-09-20T08:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: LPC176x errata</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621504#M24352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Although the user manual states otherwise, setting the pin to open-drain mode manually in PINMODE_ODx is not required for I2C functions. As soon as you select one of SDA1, SCL1, SDA2, SCL2 for a pin in PINSELx, the corresponding output stage is forced into open-drain mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is why the GPIO.1 erratum doesn't affect you when using I2C1 and I2C2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 09:54:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621504#M24352</guid>
      <dc:creator>rolfmeeser</dc:creator>
      <dc:date>2016-09-20T09:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: LPC176x errata</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621505#M24353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Rolf.&lt;/P&gt;&lt;P&gt;Just want I wanted to hear!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 12:14:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC176x-errata/m-p/621505#M24353</guid>
      <dc:creator>mikaelstolt</dc:creator>
      <dc:date>2016-09-20T12:14:43Z</dc:date>
    </item>
  </channel>
</rss>

