<?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 how to read and write</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151123#M42175</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;There are two ways to enter the ISP mode:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In the power-on hold low the&amp;nbsp;P2_7.&lt;/LI&gt;
&lt;LI&gt;Call the reinvoke ISP ROM API in your software.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Alexis Andalon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2020 21:13:08 GMT</pubDate>
    <dc:creator>Alexis_A</dc:creator>
    <dc:date>2020-09-09T21:13:08Z</dc:date>
    <item>
      <title>i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1071426#M41310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #666666; background-color: #ffffff; font-size: 14px;"&gt;Use 1837 sdk&amp;nbsp;&amp;nbsp;periph_i2cm_polling&amp;nbsp;&amp;nbsp;example&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #666666; font-size: 14px; "&gt;IDE LPCXpresso&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I tried to read and write some data, and I read some information&lt;BR /&gt;But I don’t know how to write 3bit&lt;BR /&gt;E.g &lt;BR /&gt;Write 0x2e&lt;BR /&gt;Read out as 0x00&lt;BR /&gt;As shown below 1.png&lt;/P&gt;&lt;P&gt;Hope someone can help me&lt;BR /&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #666666; background-color: #ffffff; font-size: 14px;"&gt;static void SetupXferRecAndExecute(uint8_t devAddr,&lt;BR /&gt; uint8_t *txBuffPtr,&lt;BR /&gt; uint16_t txSize,&lt;BR /&gt; uint8_t *rxBuffPtr,&lt;BR /&gt; uint16_t rxSize)&lt;BR /&gt;{&lt;BR /&gt; /* Setup I2C transfer record */&lt;BR /&gt; i2cmXferRec.slaveAddr = devAddr;&lt;BR /&gt; i2cmXferRec.options = 0;&lt;BR /&gt; i2cmXferRec.status = 0;&lt;BR /&gt; i2cmXferRec.txSz = txSize;&lt;BR /&gt; i2cmXferRec.rxSz = rxSize;&lt;BR /&gt; i2cmXferRec.txBuff = txBuffPtr;&lt;BR /&gt; i2cmXferRec.rxBuff = rxBuffPtr;&lt;BR /&gt; Chip_I2CM_XferBlocking(LPC_I2C0, &amp;amp;i2cmXferRec);&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static void WriteBoard_I2CM(int writeVal)&lt;BR /&gt;{&lt;BR /&gt; uint8_t tx_buffer[3];&lt;/P&gt;&lt;P&gt;/* set configuration to default value */&lt;BR /&gt; tx_buffer[0] = BANK_0; /* Write to Config register */&lt;BR /&gt; tx_buffer[1] = 0;&lt;/P&gt;&lt;P&gt;SetupXferRecAndExecute(SMB_ADDR, tx_buffer, 3, NULL, 0);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;static void BANK0_read()&lt;BR /&gt;{&lt;BR /&gt; uint8_t tx_buffer[3];&lt;BR /&gt; uint8_t rx_buffer[3];&lt;/P&gt;&lt;P&gt;tx_buffer[0] = BANK_0; /* Read the Voltage across the shunt */&lt;BR /&gt; rx_buffer[0] = 0;&lt;BR /&gt; Write_BAN0();&lt;BR /&gt; SetupXferRecAndExecute(SMB_ADDR, tx_buffer, 1, rx_buffer, 2);&lt;BR /&gt; DEBUGOUT("BANK_0: 0x%02X%02X\r\n", rx_buffer[0], rx_buffer[1]);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2020 12:26:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1071426#M41310</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-08-27T12:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1133502#M42120</link>
      <description>&lt;P&gt;Hello Wade,&lt;/P&gt;
&lt;P&gt;I don't understand what are you trying to achieve, for what I'm understanding is that you're trying to read/write a register from other device but the device is not answering as expected, am I right?&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Alexis Andalon&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 02:42:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1133502#M42120</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-02T02:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1133997#M42125</link>
      <description>&lt;P&gt;YES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 08:58:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1133997#M42125</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-02T08:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1134219#M42127</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;FONT&gt;HI&amp;nbsp; &lt;/FONT&gt;&lt;SPAN class=""&gt;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;FONT&gt;Alexis_A&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;When I tried to write 3BIT,&lt;BR /&gt;Sometimes it succeeds, sometimes it fails&lt;BR /&gt;tx_buffer [0] = 0x03;&lt;BR /&gt;tx_buffer [1] = 0x0C;&lt;BR /&gt;tx_buffer [2] = 0x30;&lt;BR /&gt;tx_buffer [3] = 0xC0;&lt;/P&gt;&lt;P&gt;thank you for your help&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 12:36:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1134219#M42127</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-02T12:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1149875#M42158</link>
      <description>&lt;P&gt;Hello Wade,&lt;/P&gt;
&lt;P&gt;I still don't understand what you mean with 3bit, but since this sometimes works and other times don't I will suggest checking the signal with an oscilloscope to discard any hardware problems.&lt;/P&gt;
&lt;P&gt;Also, I'm not familiarized with this device so be sure the write sequence an address is doing correctly.&lt;/P&gt;
&lt;P&gt;Let me know your findings.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Alexis Andalon&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2020 23:04:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1149875#M42158</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-07T23:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151025#M42173</link>
      <description>&lt;P&gt;&lt;STRONG&gt;HI&amp;nbsp;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;SPAN class=""&gt;Alexis_A&lt;/SPAN&gt;&lt;/A&gt;&lt;STRIKE&gt;&lt;BR /&gt;&lt;/STRIKE&gt;&lt;BR /&gt;Excuse me, how does this board enter ISP MODE?&lt;BR /&gt;&lt;BR /&gt;I do not see COME ACMO in LINUX&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 10:25:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151025#M42173</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-09T10:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151123#M42175</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;There are two ways to enter the ISP mode:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In the power-on hold low the&amp;nbsp;P2_7.&lt;/LI&gt;
&lt;LI&gt;Call the reinvoke ISP ROM API in your software.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Alexis Andalon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 21:13:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151123#M42175</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-09T21:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151187#M42180</link>
      <description>&lt;P&gt;hi &lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;SPAN class=""&gt;Alexis_A&lt;/SPAN&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;How to modify it? ISP ROM API in your software.&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 01:34:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151187#M42180</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-10T01:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151752#M42192</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-unlink="true"&gt;In the following &lt;A href="https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc18xx:LPCOPEN-SOFTWARE-FOR-LPC18XX" target="_self"&gt;link&lt;/A&gt; you can find a list of example to use with the LPC18xx. In this package there's an example called flashIAP that has a list of ROM commands, the reinvoke IAP between them.&lt;/P&gt;
&lt;P data-unlink="true"&gt;You need to also import these projects to your workspace if you want to run these examples:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alexis_A_0-1599771812070.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/124868iF4EEFCA8C96FDEBD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alexis_A_0-1599771812070.png" alt="Alexis_A_0-1599771812070.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Alexis Andalon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 21:08:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1151752#M42192</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-10T21:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1155837#M42301</link>
      <description>&lt;P&gt;1.&amp;nbsp;Is there any tool to do FLASH update on ARM LINUX&lt;BR /&gt;&lt;BR /&gt;2. When I execute the IAP SDK, after displaying the ID, no other things will be displayed. Do I need to enter other commands?&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2020 13:09:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1155837#M42301</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-20T13:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1156512#M42324</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Usually, we use the flash magic tool (&lt;A href="https://www.flashmagictool.com/" target="_self"&gt;link&lt;/A&gt;) to communicate with LPC devices in ISP mode but this is only available for windows.&lt;/P&gt;
&lt;P&gt;Also, we have a tool called LPCScrypt (&lt;A href="https://www.nxp.com/design/microcontrollers-developer-resources/lpc-microcontroller-utilities/lpcscrypt-v2-1-1:LPCSCRYPT" target="_self"&gt;link&lt;/A&gt;) that can be used for this purpose.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Alexis Andalon&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 20:57:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1156512#M42324</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-21T20:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1161219#M42433</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;hi&lt;/SPAN&gt;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;SPAN class=""&gt;Alexis_A&lt;/SPAN&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. How do I see vcom on linux?&lt;BR /&gt;2. Do you want to change from uart isp mode?&lt;BR /&gt;3.&amp;nbsp;Which version of sdk are you using in the iap mode mentioned earlier&lt;BR /&gt;I am using sdk 3.02 version&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 09:18:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1161219#M42433</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-09-30T09:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1161427#M42437</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;1. How do I see vcom on linux?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Please try this command:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dmesg | grep tty&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2. Do you want to change from uart isp mode?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I'm not understanding this question, but the usual procedure to communicate with the ISP is to send the command unlock to start the communication.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;3.&amp;nbsp;Which version of sdk are you using in the iap mode mentioned earlier&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'm using the SDK including in the MCUXpresso 2.20 but the one you're using the latest one should be better.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alexis Andalon&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 15:55:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1161427#M42437</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-09-30T15:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1162657#M42460</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Hello,&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.nxp.com/t5/user/viewprofilepage/user-id/167559" target="_self"&gt;&lt;SPAN class=""&gt;Alexis_A&lt;/SPAN&gt;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I tried many times, I still can’t change uart isp to usb isp&lt;BR /&gt;Can you help me, how can I modify it?&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 01:24:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1162657#M42460</guid>
      <dc:creator>wade985136</dc:creator>
      <dc:date>2020-10-05T01:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: i2c how to read and write</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1163118#M42468</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150041"&gt;@wade985136&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Please check the Table 16. Boot mode when OTP BOOT_SRC bits are zero, this section mention the state the boot pins need to be to boot from the different available sources:&lt;/P&gt;
&lt;DIV id="tinyMceEditorAlexis_A_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorAlexis_A_2" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorAlexis_A_3" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2020-10-05 154837.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/126786i4C38C288D550A32A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2020-10-05 154837.png" alt="Screenshot 2020-10-05 154837.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Alexis Andalon&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 20:49:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/i2c-how-to-read-and-write/m-p/1163118#M42468</guid>
      <dc:creator>Alexis_A</dc:creator>
      <dc:date>2020-10-05T20:49:45Z</dc:date>
    </item>
  </channel>
</rss>

