<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/103871/i2c_burst_read-0x0-failed-ret--5-on-ncs-v2-4-2</link><description>I use nRF52832 device to test I2C reading/writing registers. But it failed with error code -5. What is meaning of error code -5 and how to fix this issue? 
 
 Procedures to reproduce this issue are as follows. 
 1. Unzipping custom_nrf52832.zip to C:</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 20 Sep 2023 06:06:23 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/103871/i2c_burst_read-0x0-failed-ret--5-on-ncs-v2-4-2" /><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446759?ContentTypeID=1</link><pubDate>Wed, 20 Sep 2023 06:06:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f95a6870-ca29-4190-b381-c2ce35f332d8</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;Thanks for your reply! I can read/write registers now.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static int _lp5861ReadReg(uint16_t regAddr, uint8_t *regVal) {
    printk(&amp;quot;tca6424aReadReg(regAddr=0x%x)\n&amp;quot;, regAddr);
    const uint16_t devAddr   = LP5861_CHIP_ADDRESS | _lp5861GetRegAddrHigh(regAddr);
    const uint8_t  startAddr = _lp5861GetRegAddrLow(regAddr);
    printk(&amp;quot;devAddr=0x%x, startAddr=0x%x\n&amp;quot;, devAddr, startAddr);
    uint8_t rbuf[2];
    const int ret = i2c_burst_read(_gI2cDev, devAddr, startAddr, rbuf, sizeof(rbuf));
    if (ret &amp;lt; 0) {
        printk(&amp;quot;i2c_burst_read(0x%x) failed, ret=%d\n&amp;quot;, regAddr, ret);
        return ERROR_I2C_READ_FAIL;
    }

    printk(&amp;quot;rbuf[0]=0x%x, rbuf[1]=0x%x\n&amp;quot;, rbuf[0], rbuf[1]);
    *regVal = rbuf[0];
    return 0;
}

static int _lp5861WriteReg(uint16_t regAddr, uint8_t regVal) {
    printk(&amp;quot;tca6424aWriteReg(regAddr=0x%x, regVal0x%x)\n&amp;quot;, regAddr, regVal);
    const uint16_t devAddr   = LP5861_CHIP_ADDRESS | _lp5861GetRegAddrHigh(regAddr);
    const uint8_t  startAddr = _lp5861GetRegAddrLow(regAddr);
    printk(&amp;quot;_lp5861GetRegAddrHigh(regAddr)=0x%x\n&amp;quot;, _lp5861GetRegAddrHigh(regAddr));
    printk(&amp;quot;devAddr=0x%x, startAddr=0x%x\n&amp;quot;, devAddr, startAddr);
    const uint8_t wbuf[2] = { regVal,  0x00};
    const int ret =  i2c_burst_write(_gI2cDev, devAddr, startAddr, wbuf, sizeof(wbuf));
    if (ret &amp;lt; 0) {
        printk(&amp;quot;i2c_burst_write(0x%x) failed, ret=%d\n&amp;quot;, regAddr, ret);
        return ERROR_I2C_WRITE_FAIL;
    }

    return 0;
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446619?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 09:58:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e953e945-b719-400e-895d-b646603061e5</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Also, you can look at the documentation:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/hardware/peripherals/i2c.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/hardware/peripherals/i2c.html&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Br,&amp;nbsp;&lt;br /&gt;Joakim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446618?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 09:57:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:515bd283-8b58-4779-adee-956902a4deee</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Thanks.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I haven&amp;#39;t tested that sample.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There are several other tickets regarding i2c already on devzone, that you can take a look at.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/86388/i2c-samples-for-nrf9160"&gt;I2C samples for nRF9160&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Br,&amp;nbsp;&lt;br /&gt;Joakim&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446594?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 08:12:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:166ab3c8-2ccf-4668-a70a-c4ef33f4a25f</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;The attached file is result of &lt;a id="" href="https://github.com/crfosse/ncs_projects/tree/main/peripheral_zephyr/i2c"&gt;https://github.com/crfosse/ncs_projects/tree/main/peripheral_zephyr/i2c&lt;/a&gt; I2C scanner. The result is very strange since it found a lot of I2C devices.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/i2c_5F00_scanner.txt"&gt;devzone.nordicsemi.com/.../i2c_5F00_scanner.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446577?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:05:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a884f8ff-9456-40f1-9503-6dbde31d0e8f</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/4834.led_5F00_driver.c"&gt;devzone.nordicsemi.com/.../4834.led_5F00_driver.c&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446576?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:05:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:650777b3-eb79-4531-a5d5-b1c79b360196</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/0654.nrf5340_5F00_cpuapp_5F00_common.dts"&gt;devzone.nordicsemi.com/.../0654.nrf5340_5F00_cpuapp_5F00_common.dts&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446575?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:04:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:873de6f8-ba70-4505-a422-68a87f68a34a</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/nrf5340_5F00_cpuapp_5F00_common_2D00_pinctrl.dtsi"&gt;devzone.nordicsemi.com/.../nrf5340_5F00_cpuapp_5F00_common_2D00_pinctrl.dtsi&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446574?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:04:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e87f15b7-dbc9-48aa-9391-2b15ddc0ad25</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/5265.prj.conf"&gt;devzone.nordicsemi.com/.../5265.prj.conf&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446573?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:03:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8fcae7bd-5c93-40a6-91b1-e53269a443a4</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_I2C=y
CONFIG_I2C_NRFX=y
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446572?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:02:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4dfcadd4-89cb-4a36-84a6-2e18b0038498</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static int _lp5861ReadReg(uint16_t regAddr, uint8_t *regVal) {
    printk(&amp;quot;tca6424aReadReg(regAddr=0x%x)\n&amp;quot;, regAddr);
    //printk(&amp;quot;LP5861_REG_ADDR_HIGH(regAddr)=0x%lx, LP5861_REG_ADDR_LOW(regAddr)=0x%lx\n&amp;quot;, LP5861_REG_ADDR_HIGH(regAddr), LP5861_REG_ADDR_LOW(regAddr));
#if 1
    uint8_t addrBuf[2];

    addrBuf[1] = regAddr &amp;amp; 0xFF;
    addrBuf[0] = regAddr &amp;gt;&amp;gt; 8;
    const int ret = i2c_write_read(_gI2cDev, LP5861_CHIP_ADDRESS, addrBuf, sizeof(addrBuf), regVal, 1);
#else
    const uint16_t devAddr   = LP5861_CHIP_ADDRESS | LP5861_REG_ADDR_HIGH(regAddr) &amp;gt;&amp;gt; 7 | LP5861_REG_READ_MSK;
    const uint8_t  startAddr = LP5861_REG_ADDR_LOW(regAddr);
    printk(&amp;quot;devAddr=0x%x, startAddr=0x%x\n&amp;quot;, devAddr, startAddr);
    const int ret = i2c_burst_read(_gI2cDev, LP5861_CHIP_ADDRESS, regAddr, regVal, 1);
#endif
    if (ret &amp;lt; 0) {
        printk(&amp;quot;i2c_burst_read(0x%x) failed, ret=%d\n&amp;quot;, regAddr, ret);
        return ERROR_I2C_READ_FAIL;
    }

    return 0;
}

static int _lp5861WriteReg(uint16_t regAddr, uint8_t regVal) {
    printk(&amp;quot;tca6424aWriteReg(0x%x, 0x%x)\n&amp;quot;, regAddr, regVal);
#if 1
    uint8_t addrBuf[2];
    struct i2c_msg msg[2];

    addrBuf[1] = regAddr &amp;amp; 0xFFU;
    addrBuf[0] = regAddr &amp;gt;&amp;gt; 8U;
    msg[0].buf = addrBuf;
    msg[0].len = 2UL;
    msg[0].flags = I2C_MSG_WRITE;

    msg[1].buf = (uint8_t *)&amp;amp;regVal;
    msg[1].len = sizeof(regVal);
    msg[1].flags = I2C_MSG_WRITE | I2C_MSG_STOP;

    const int ret = i2c_transfer(_gI2cDev, msg, 2, LP5861_CHIP_ADDRESS);
#else
    const uint8_t buf[1] = { regVal };
    const int ret =  i2c_burst_write(_gI2cDev, LP5861_CHIP_ADDRESS, regAddr, buf, 1);
#endif
    if (ret &amp;lt; 0) {
        printk(&amp;quot;i2c_burst_write(0x%x) failed, ret=%d\n&amp;quot;, regAddr, ret);
        return ERROR_I2C_WRITE_FAIL;
    }

    return 0;
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446571?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:02:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d60ec876-6ef1-44b4-860e-145828b7859d</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;i2c1_default: i2c1_default {
		group1 {
			psels = &amp;lt;NRF_PSEL(TWIM_SDA, 1, 2)&amp;gt;,
				&amp;lt;NRF_PSEL(TWIM_SCL, 1, 3)&amp;gt;;
		};
	};

	i2c1_sleep: i2c1_sleep {
		group1 {
			psels = &amp;lt;NRF_PSEL(TWIM_SDA, 1, 2)&amp;gt;,
				&amp;lt;NRF_PSEL(TWIM_SCL, 1, 3)&amp;gt;;
			low-power-enable;
		};
	};
	
	&amp;amp;i2c1 {
	compatible = &amp;quot;nordic,nrf-twim&amp;quot;;
	status = &amp;quot;okay&amp;quot;;
	clock-frequency = &amp;lt;I2C_BITRATE_STANDARD&amp;gt;;
	pinctrl-0 = &amp;lt;&amp;amp;i2c1_default&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;i2c1_sleep&amp;gt;;
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446570?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 07:00:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:891e8746-0fca-435c-a91e-9c9b9ea499f3</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/imgpsh_5F00_fullsize_5F00_anim.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446569?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 06:59:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9fa5667c-4a63-4cdf-8e34-4fc78e5dedb1</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;Thanks for your reply! I am using nRF5340 DK. And I can&amp;#39;t find I2C clock from logical analyzer snapshot.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446568?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 06:58:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f0723b69-e7f4-4dee-ae8e-f914ecffeba1</guid><dc:creator>Joakim Jakobsen</dc:creator><description>&lt;p&gt;Hi.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As you can see, error code -5 is a general input / output error:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/hardware/peripherals/i2c.html#c.i2c_burst_read"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/hardware/peripherals/i2c.html#c.i2c_burst_read&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Are you using an nRF52-DK or a custom device?&lt;/p&gt;
&lt;p&gt;Br,&amp;nbsp;&lt;br /&gt;Joakim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446538?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 02:01:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cb8e913a-ae7b-48d1-bb12-edff72bb2bb1</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/1172.prj.conf"&gt;devzone.nordicsemi.com/.../1172.prj.conf&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446537?ContentTypeID=1</link><pubDate>Tue, 19 Sep 2023 02:01:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:691500ba-3ce0-4ea7-9eb1-87119b2960bd</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;Another question is that I added CONFIG_I2C_DUMP_MESSAGES=y in &lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/1172.prj.conf"&gt;prj.conf&lt;/a&gt; file. But I can&amp;#39;t see any dump messages related to I2C.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446421?ContentTypeID=1</link><pubDate>Mon, 18 Sep 2023 08:13:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e589a57e-e218-4906-bd9f-585f4450063f</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/8400.registers.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446420?ContentTypeID=1</link><pubDate>Mon, 18 Sep 2023 08:13:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1037cbc5-079c-4750-9d29-1ea232a48d5d</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/1200.I2c_5F00_timing.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446419?ContentTypeID=1</link><pubDate>Mon, 18 Sep 2023 08:11:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c99f6f14-5935-4618-804c-36ac509eee56</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/7801.I2c_5F00_data_5F00_format.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446418?ContentTypeID=1</link><pubDate>Mon, 18 Sep 2023 08:10:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c421683-3f5a-4bf3-bee0-ecd71e4c3023</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/minimal_5F00_log_5F00_led.zip"&gt;devzone.nordicsemi.com/.../minimal_5F00_log_5F00_led.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: i2c_burst_read(0x0) failed, ret=-5 on ncs v2.4.2</title><link>https://devzone.nordicsemi.com/thread/446417?ContentTypeID=1</link><pubDate>Mon, 18 Sep 2023 08:10:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e4f1c7a7-d3a4-484d-bf90-eeeacee587cc</guid><dc:creator>snowuyl</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/73678.custom_5F00_nrf52832.zip"&gt;devzone.nordicsemi.com/.../73678.custom_5F00_nrf52832.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>