<?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>CFB config issue NCS V2.0.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/89868/cfb-config-issue-ncs-v2-0-0</link><description>Hi, 
 I am trying to compile the cfb sample as provided in v2.0.0. 
 
 my overlay file is as follows 
 
 and my prj file 
 
 
 When I try to build, I get the following error , 
 
 
 Thanks in advance 
 Rod</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 12 Jul 2022 08:05:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/89868/cfb-config-issue-ncs-v2-0-0" /><item><title>RE: CFB config issue NCS V2.0.0</title><link>https://devzone.nordicsemi.com/thread/376544?ContentTypeID=1</link><pubDate>Tue, 12 Jul 2022 08:05:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4bbda40-348c-4880-b871-99bea07862ee</guid><dc:creator>RodWatt</dc:creator><description>&lt;p&gt;Ok, I got it, I has missed the in my overlay file&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;zephyr,concat-buf-size = &amp;lt;520&amp;gt;;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: CFB config issue NCS V2.0.0</title><link>https://devzone.nordicsemi.com/thread/376500?ContentTypeID=1</link><pubDate>Mon, 11 Jul 2022 19:19:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:26f5635c-3539-4bb6-ab9c-80e34ebfa499</guid><dc:creator>RodWatt</dc:creator><description>&lt;p&gt;Sorry, just realised my overlay file had some old code in it.&lt;/p&gt;
&lt;p&gt;I have updated it to this..&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
        chosen {
		zephyr,display = &amp;amp;ssd1306;
        };
};

&amp;amp;pinctrl {
	uart0_default_alt: uart0_default_alt {
		group0 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 0, 24)&amp;gt;, &amp;lt;NRF_PSEL(UART_RX, 0, 22)&amp;gt;;
		};
	};

	uart0_sleep_alt: uart0_sleep_alt {
		group1 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 0, 24)&amp;gt;, &amp;lt;NRF_PSEL(UART_RX, 0, 22)&amp;gt;;
			low-power-enable;
		};
	};

	i2c1_default_alt: i2c1_default_alt {
       		group2 {
          		psels = &amp;lt;NRF_PSEL(TWIM_SDA, 0, 17)&amp;gt;,
                  		&amp;lt;NRF_PSEL(TWIM_SCL, 0, 20)&amp;gt;;
       			};
    		};
};

&amp;amp;uart0 {
	pinctrl-0 = &amp;lt;&amp;amp;uart0_default_alt&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;uart0_sleep_alt&amp;gt;;	
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;

	compatible = &amp;quot;nordic,nrf-uart&amp;quot;;
	current-speed = &amp;lt;115200&amp;gt;;
	status = &amp;quot;okay&amp;quot;;
};

&amp;amp;i2c1 {
    status = &amp;quot;okay&amp;quot;;
    compatible = &amp;quot;nordic,nrf-twim&amp;quot;;
    pinctrl-0 = &amp;lt;&amp;amp;i2c1_default_alt&amp;gt;;
    pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
    clock-frequency = &amp;lt;I2C_BITRATE_STANDARD&amp;gt;;  

	ssd1306: ssd1306@3c {
      	compatible = &amp;quot;solomon,ssd1306fb&amp;quot;;
        	reg = &amp;lt;0x3c&amp;gt;;
        	label = &amp;quot;SSD1306&amp;quot;;
        	height = &amp;lt;32&amp;gt;;
        	width  = &amp;lt;128&amp;gt;;
        	segment-offset  = &amp;lt;0&amp;gt;;
        	page-offset     = &amp;lt;0&amp;gt;;
        	display-offset  = &amp;lt;0&amp;gt;;
        	multiplex-ratio = &amp;lt;31&amp;gt;;
        	prechargep      = &amp;lt;0xD1&amp;gt;;
        	segment-remap;
        	com-invdir;
        	com-sequential;
    	};

};


&amp;amp;i2c1 {
/delete-property/sda-gpios;
/delete-property/scl-gpios;
};

&amp;amp;adc {
	status = &amp;quot;ok&amp;quot;;
};
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This allows the code to build, but am now seeing thus error&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;lt;err&amp;gt; i2c_nrfx_twim: Need to use concatenation buffer and provided size is insufficient (1 + 512 &amp;gt; 16). Adjust the zephyr,concat-buf-size property in the &amp;quot;I2C_1&amp;quot; node.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Rod&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>