<?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: LPC55S36, I3C GETMRL issue</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2088022#M58144</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/228396"&gt;@bell_huang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can download the latest&amp;nbsp; 25.03.00 SDK.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Harry_Zhang_0-1745823160002.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335125iE3A22E92ABC2D0C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Harry_Zhang_0-1745823160002.png" alt="Harry_Zhang_0-1745823160002.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;I think the best is: The GETMRL function returns fail/error status if the driver want to read 3 bytes and the sensor doesn't support 3 bytes (pull low the T-bit of LSB byte).&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion. I will report it to the SDK team.&amp;nbsp;Hope to improve in the future.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 06:54:53 GMT</pubDate>
    <dc:creator>Harry_Zhang</dc:creator>
    <dc:date>2025-04-28T06:54:53Z</dc:date>
    <item>
      <title>LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2081547#M58076</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I'm running I3C on&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/lpcxpresso-boards/lpcxpresso55s36-development-board:LPCXpresso55S36" target="_self" rel="nofollow noopener noreferrer"&gt;LPC5536-EVK&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and find out that &lt;STRONG&gt;GETMRL&lt;/STRONG&gt; command doesn't seem to work for any of the sensors.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;This issue can be reproduced in&amp;nbsp;&lt;A href="https://www.nxp.com/docs/en/application-note-software/AN13577SW.zip" target="_self" rel="nofollow noopener noreferrer"&gt;Building an I3C Sensor Network Using LPC553x/LPC55S3x&lt;/A&gt;&amp;nbsp;example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To begin with the conclusion: if &lt;STRONG&gt;GETMRL&lt;/STRONG&gt; reads 3 bytes, it gets stuck after reading two bytes. However, if &lt;STRONG&gt;GETMRL&lt;/STRONG&gt; reads only 2 bytes, it does not get stuck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SDK:&amp;nbsp;&lt;A href="https://mcuxpresso.nxp.com/en/dashboard" target="_self"&gt;SDK_2.16.000_LPCXpresso55S36&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the beginning, if we call the I3C_BusMasterGetDeviceInfo() function from fsl_component_i3c.h, the function will get stuck. The I3C_BusMasterGetDeviceInfo() function includes several commands, such as GETPID, GETBCR, GETDCR, &lt;STRONG&gt;GETMRL&lt;/STRONG&gt;, and GETMWL.&lt;/P&gt;&lt;P&gt;To simplify things, we copied out the two functions I3C_BusMasterGetBCR (GETBCR) and I3C_BusMasterGetMaxReadLength (&lt;STRONG&gt;GETMRL&lt;/STRONG&gt;) and tested them individually.&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;static status_t I3C_BusMasterGetBCR(i3c_device_t *master, i3c_device_information_t *info)
{
    uint8_t bcr;
    i3c_ccc_cmd_t getBCRCmd = {0};
    status_t result         = kStatus_Success;

    getBCRCmd.isRead   = true;
    getBCRCmd.cmdId    = I3C_BUS_CCC_GETBCR;
    getBCRCmd.destAddr = info-&amp;gt;dynamicAddr;
    getBCRCmd.data     = &amp;amp;bcr;
    getBCRCmd.dataSize = 1U;

    result = I3C_BusMasterSendCCC(master, &amp;amp;getBCRCmd);

    info-&amp;gt;bcr = bcr;

    return result;
}

static status_t I3C_BusMasterGetMaxReadLength(i3c_device_t *master, i3c_device_information_t *info)
{
    i3c_ccc_cmd_t getMRLCmd = {0};
    status_t result         = kStatus_Success;

    getMRLCmd.isRead   = true;
    getMRLCmd.cmdId    = I3C_BUS_CCC_GETMRL;
    getMRLCmd.destAddr = info-&amp;gt;dynamicAddr;
    getMRLCmd.data     = malloc(3U);
    getMRLCmd.dataSize = 3U;

    /*
     * When the device does not have IBI payload GETMRL only returns 2
     * bytes of data.
     */
    if ((info-&amp;gt;bcr &amp;amp; I3C_BUS_DEV_BCR_IBI_PAYLOAD_MASK) == 0U)
    {
        getMRLCmd.dataSize -= 1U;
    }

    result = I3C_BusMasterSendCCC(master, &amp;amp;getMRLCmd);

    uint8_t *pData = getMRLCmd.data;
    if ((info-&amp;gt;bcr &amp;amp; I3C_BUS_DEV_BCR_IBI_PAYLOAD_MASK) != 0U)
    {
        info-&amp;gt;maxIBILength = pData[2];
    }

    info-&amp;gt;maxReadLength = (uint16_t)pData[0] &amp;lt;&amp;lt; 8UL | (uint16_t)pData[1];

    free(getMRLCmd.data);

    return result;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then we can &lt;SPAN&gt;reproduce the stuck issue by calling them:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;i3c_device_information_t device_info;
memset(&amp;amp;device_info, 0, sizeof(device_info));
device_info.dynamicAddr = icm42688p_sensorAddr;
I3C_BusMasterGetBCR(&amp;amp;demo_masterDev, &amp;amp;device_info);
I3C_BusMasterGetMaxReadLength(&amp;amp;demo_masterDev, &amp;amp;device_info);&lt;/LI-CODE&gt;&lt;P&gt;After checking the waveform, we found that it gets stuck at GETMRL. After reading the MRL LSB, the SCL line stops and doesn't move anymore.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bell_huang_0-1744790912809.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333410i8AAE9D0C5F579288/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bell_huang_0-1744790912809.png" alt="bell_huang_0-1744790912809.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In previous case, I3C_BusMasterGetBCR reads the BCR value of the ICM42688P as 39 (= b00100111), which indicates that it supports BCR[2] IBI Payload. As a result, The dataSize of GETMRL in I3C_BusMasterGetMaxReadLength is 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we assume that it does not support BCR[2] IBI Payload, that is, do not call&amp;nbsp;I3C_BusMasterGetBCR, then&amp;nbsp;the dataSize of GETMRL in I3C_BusMasterGetMaxReadLength is 2.&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;i3c_device_information_t device_info;
memset(&amp;amp;device_info, 0, sizeof(device_info));
device_info.dynamicAddr = icm42688p_sensorAddr;
//I3C_BusMasterGetBCR(&amp;amp;demo_masterDev, &amp;amp;device_info);
I3C_BusMasterGetMaxReadLength(&amp;amp;demo_masterDev, &amp;amp;device_info);&lt;/LI-CODE&gt;&lt;P&gt;Then we can see GETMRL workable, it no longer gets stuck.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bell_huang_0-1744791335331.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333414i38E8541E21E9240C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bell_huang_0-1744791335331.png" alt="bell_huang_0-1744791335331.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In &lt;A href="https://www.mipi.org/mipi-i3c-basic-download" target="_self"&gt;MIPI I3C Basic℠ v1.1.1&lt;/A&gt;&amp;nbsp;,&amp;nbsp;5.1.9.3.6 Set/Get Max Read Length (SETMRL/GETMRL), the 3rd byte is IBI Payload Size which is optional. That is, if the sensor support IBI Payload, GETMRL shall read 3 bytes. But in current SDK, it seems get stuck if we read 3 bytes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bell_huang_1-1744791750013.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/333417i87FF2B2D01CD6F21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bell_huang_1-1744791750013.png" alt="bell_huang_1-1744791750013.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 08:25:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2081547#M58076</guid>
      <dc:creator>bell_huang</dc:creator>
      <dc:date>2025-04-16T08:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2082508#M58089</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/228396"&gt;@bell_huang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to reproduce this issue quickly.&lt;/P&gt;
&lt;P&gt;Can you share the&amp;nbsp;i3c_master_read_sensor_icm42688p.c?&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 10:15:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2082508#M58089</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2025-04-17T10:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2082889#M58092</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229957"&gt;@Harry_Zhang&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This issue can be reproduced in&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.nxp.com/docs/en/application-note-software/AN13577SW.zip?_gl=1*ev0hz5*_ga*MTY5MDA5MjI0LjE3NDQ3ODQ0NzY.*_ga_WM5LE0KMSH*MTc0NDkzOTM1My45LjEuMTc0NDkzOTM4MS4wLjAuMA.." target="_self" rel="nofollow noopener noreferrer"&gt;Building an I3C Sensor Network Using LPC553x/LPC55S3x&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 01:24:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2082889#M58092</guid>
      <dc:creator>bell_huang</dc:creator>
      <dc:date>2025-04-18T01:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2084968#M58118</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229957"&gt;@Harry_Zhang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Can you reproduce with attached&amp;nbsp;i3c_sensor_network.c ?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 01:23:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2084968#M58118</guid>
      <dc:creator>bell_huang</dc:creator>
      <dc:date>2025-04-23T01:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2084976#M58120</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/228396"&gt;@bell_huang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, i can reproduce this issue,&amp;nbsp;I am investigating this issue.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 01:41:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2084976#M58120</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2025-04-23T01:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2087856#M58142</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/228396"&gt;@bell_huang&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I am using the latest I3C driver file (MAKE_VERSION(2, 13, 1)), and when the data size is 3, it no longer locks up. After confirming with the SDK team, there is indeed an update. So you can test it.&lt;BR /&gt;Although there is no lock, the 3rd byte is not received. After analysis, it appears that the slave actively terminated the read operation. So you can try to another sensor or consult the sensor manufacturer for further assistance.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 01:51:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2087856#M58142</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2025-04-28T01:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2088002#M58143</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229957"&gt;@Harry_Zhang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for your test. Can you share the link of&amp;nbsp;&lt;SPAN&gt;latest I3C driver file (MAKE_VERSION(2, 13, 1))? I cannot find it out in&amp;nbsp;&lt;A href="https://mcuxpresso.nxp.com/en/dashboard" target="_self"&gt;MCUXpresso SDK Dashboard&lt;/A&gt;&amp;nbsp;. There are only&amp;nbsp;25.03.00,&amp;nbsp;2.16.000,&amp;nbsp;2.15.000.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I test LSM6DST which is an another sensor that supports GETMRL 3 bytes. The&amp;nbsp;original I3C driver doesn't lock.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bell_huang_0-1745820964321.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335111i153215D78A5E54E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bell_huang_0-1745820964321.png" alt="bell_huang_0-1745820964321.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In comparison,&amp;nbsp;&lt;SPAN&gt;ICM42688P&amp;nbsp;pulls low the T-bit of LSB byte to indicate the end of the data. It means that if the sensor doesn't support GETMRL 3 bytes and the original driver want to read 3 bytes, then it will be locked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bell_huang_1-1745821562842.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335117i4F699CB75AD13544/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bell_huang_1-1745821562842.png" alt="bell_huang_1-1745821562842.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the best is: The GETMRL function returns fail/error status if the driver want to read 3 bytes and the sensor doesn't support 3 bytes (pull low the T-bit of LSB byte).&lt;/P&gt;&lt;P&gt;However, it is&amp;nbsp;acceptable: The GETMRL function will not lock at least.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 06:38:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2088002#M58143</guid>
      <dc:creator>bell_huang</dc:creator>
      <dc:date>2025-04-28T06:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2088022#M58144</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/228396"&gt;@bell_huang&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can download the latest&amp;nbsp; 25.03.00 SDK.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Harry_Zhang_0-1745823160002.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335125iE3A22E92ABC2D0C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Harry_Zhang_0-1745823160002.png" alt="Harry_Zhang_0-1745823160002.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;I think the best is: The GETMRL function returns fail/error status if the driver want to read 3 bytes and the sensor doesn't support 3 bytes (pull low the T-bit of LSB byte).&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion. I will report it to the SDK team.&amp;nbsp;Hope to improve in the future.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 06:54:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2088022#M58144</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2025-04-28T06:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: LPC55S36, I3C GETMRL issue</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2090840#M58152</link>
      <description>&lt;P&gt;Thanks. I tested IDE v24.12.148 &amp;amp; SDK&amp;nbsp;&lt;SPAN&gt;25.03.00.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;The GETMRL no longer get stuck.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Test step:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(1) Import SDK example(s)... -&amp;gt; driver_examples -&amp;gt; i3c -&amp;gt;i3c_master_read_sensor_icm42688p&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(2) Remove source/i3c_master_read_sensor_icm42688p.c&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(3) Add attached&amp;nbsp;i3c_sensor_network.c to&amp;nbsp;source/i3c_sensor_network.c&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 06:05:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC55S36-I3C-GETMRL-issue/m-p/2090840#M58152</guid>
      <dc:creator>bell_huang</dc:creator>
      <dc:date>2025-05-02T06:05:19Z</dc:date>
    </item>
  </channel>
</rss>

