<?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>LPC MicrocontrollersのトピックRe: I2C pin in LPC810</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568591#M17751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MarcVonWindscooting on Tue Feb 09 09:26:08 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Wojtkingson&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;I think, that you can assign I2C function to other pins than true open drain, but you have to set them to open drain mode.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, and take care these pins are NOT 5V tolerantin that case. What's the displays working voltage?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 03:31:51 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T03:31:51Z</dc:date>
    <item>
      <title>I2C pin in LPC810</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568589#M17749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by HammingBird on Tue Jan 05 20:50:53 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hallo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a project on LPC810 with&amp;nbsp; 0.56" 7-Segment Backpack (I2C communication)&amp;nbsp; LED display.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;does anybody knows how to connect&amp;nbsp; SDA (data line) with LPC810 ? coz, LPC810 has SWCLK(PIO0_3), I think its clock line. But I did not find&amp;nbsp; Data line. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is SWDIO(PIO0_2) But I am not sure that, is it&amp;nbsp; Data line or not?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And&amp;nbsp;&amp;nbsp; also need help for&amp;nbsp; header and C&amp;nbsp; file for both LPC810 and&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.56" 7-Segment Backpack LED display.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Thanks in Advanced.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; HammingBird&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:09:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568589#M17749</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: I2C pin in LPC810</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568590#M17750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Wojtkingson on Tue Jan 12 08:59:19 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;I have no experience with LPC810, but SWCLK and SWDIO are intended for programming via SWD - &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.arm.com%2Fproducts%2Fsystem-ip%2Fdebug-trace%2Fcoresight-soc-components%2Fserial-wire-debug.php" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.arm.com/products/system-ip/debug-trace/coresight-soc-components/serial-wire-debug.php&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC812 have these pins on PIO0_10 and PIO0_11, these pins are true open drain, so you can communicate via fast mode (high speed). But you have to use switch matrix, which allows you to connect this function (I2C) to pins&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;void I2cInitPin(u8 sda, u8 scl)
{
/* Enable the clock to the Switch Matrix */
Chip_Clock_EnablePeriphClock(SYSCTL_CLOCK_SWM);

/* Connect the I2C_SDA and I2C_SCL signals to port pins(P0.10, P0.11) */
Chip_SWM_MovablePinAssign(SWM_I2C_SDA_IO, sda);
Chip_SWM_MovablePinAssign(SWM_I2C_SCL_IO, scl);

/* Disable the clock to the Switch Matrix to save power */
Chip_Clock_DisablePeriphClock(SYSCTL_CLOCK_SWM);
}&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think, that you can assign I2C function to other pins than true open drain, but you have to set them to open drain mode.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:09:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568590#M17750</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T20:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: I2C pin in LPC810</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568591#M17751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MarcVonWindscooting on Tue Feb 09 09:26:08 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: Wojtkingson&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;I think, that you can assign I2C function to other pins than true open drain, but you have to set them to open drain mode.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, and take care these pins are NOT 5V tolerantin that case. What's the displays working voltage?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 03:31:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/I2C-pin-in-LPC810/m-p/568591#M17751</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T03:31:51Z</dc:date>
    </item>
  </channel>
</rss>

