<?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>Creating my own board with nrf9161</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/115646/creating-my-own-board-with-nrf9161</link><description>Hi all, 
 I&amp;#39;ve build my own board with nrf9161 LACA, so for now I&amp;#39;ve tried to create my own board, for the moment I&amp;#39;m just trying to pilot my 3 leds. I&amp;#39;ve follow dev academy blinky example but unfortunally it&amp;#39;s not working. 
 To create my custom board</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 22 Oct 2024 12:15:47 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/115646/creating-my-own-board-with-nrf9161" /><item><title>RE: Creating my own board with nrf9161</title><link>https://devzone.nordicsemi.com/thread/507350?ContentTypeID=1</link><pubDate>Tue, 22 Oct 2024 12:15:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:70f42e70-0caf-409c-83fd-ceb89fb7a102</guid><dc:creator>simon884</dc:creator><description>&lt;p&gt;Thanks&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/oys"&gt;Øyvind (oys&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre class="tw-data-text tw-text-large tw-ta" style="text-align:left;" data-placeholder="Traduction" data-ved="2ahUKEwj26Lq3-6GJAxV09LsIHZF9JLkQ3ewLegQIDxAT"&gt;&lt;span class="Y2IQFc" lang="en"&gt;Effectively&lt;/span&gt; my board is similar with nrf9160 Feather, I&amp;#39;ll try &lt;span class="Y2IQFc" lang="en"&gt;your suggestion, keep you in touch :)&lt;br /&gt;&lt;br /&gt;EDIT : looking circuitdojo board help me thanks&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/oys"&gt;Øyvind&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;span class="Y2IQFc" lang="en"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family:arial, helvetica, sans-serif;"&gt;&lt;span class="Y2IQFc" lang="en"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Creating my own board with nrf9161</title><link>https://devzone.nordicsemi.com/thread/507155?ContentTypeID=1</link><pubDate>Mon, 21 Oct 2024 13:14:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:48ba718f-ec0b-4942-acee-98162773c182</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hi Simon, based on your description, your project sounds similar to the &lt;a href="https://www.circuitdojo.com/products/nrf9160-feather"&gt;nRF9160 Feather by Circuit Dojo&lt;/a&gt;. This board also uses the CP2102 to communicate with the computer. Have a look at the board files&amp;nbsp;in&amp;nbsp;&lt;code&gt;zephyr\boards\arm\circuitdojo_feather_nrf9160\&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not familiar with how the CP2102 works. Comparing you pinctrl with the nRF9160 Feather I see that you have two groups in your setup.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;uart0_default: uart0_default {
	group1 {
		psels = &amp;lt;NRF_PSEL(UART_TX, 0, 6)&amp;gt;,
			&amp;lt;NRF_PSEL(UART_RX, 0, 5)&amp;gt;;
	};
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Creating my own board with nrf9161</title><link>https://devzone.nordicsemi.com/thread/506961?ContentTypeID=1</link><pubDate>Fri, 18 Oct 2024 13:53:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3c2e4294-fe21-4614-9c5a-da5f19e1f31d</guid><dc:creator>simon884</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/oys"&gt;Øyvind&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My basic project works fine right now I can control my leds :). But for now I&amp;#39;m trying to add UART but it&amp;#39;s doesn&amp;#39;t work, I think I don&amp;#39;t understand something with pinctrl&lt;/p&gt;
&lt;p&gt;Let me explain my config, on my custom board I have wired PA0.05 to TX of CP2102N and PA0.06 to RX of CP2102N. My cp2102N works (I can detect it on y computer).&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So in my pinctrl file I&amp;#39;ve added :&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;
 &amp;amp;pinctrl {
	uart0_default: uart0_default {
		group1 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 0, 6)&amp;gt;;
		};
		group2 {
			psels = &amp;lt;NRF_PSEL(UART_RX, 0, 5)&amp;gt;;
			bias-pull-up;
		};
	};

	uart0_sleep: uart0_sleep {
		group1 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 0, 6)&amp;gt;,
				&amp;lt;NRF_PSEL(UART_RX, 0, 5)&amp;gt;;
			low-power-enable;
		};
	};
 };&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t use RTS and CTS pin. SO after that I&amp;#39;ve added my yart0 to my dts file like this :&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;&amp;amp;uart0 {
	status = &amp;quot;okay&amp;quot;;
	current-speed = &amp;lt;115200&amp;gt;;
	pinctrl-0 = &amp;lt;&amp;amp;uart0_default&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;uart0_sleep&amp;gt;;
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;And in my chosen part&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;	chosen {
		zephyr,sram = &amp;amp;sram0;
		zephyr,flash = &amp;amp;flash0;
		zephyr,code-partition = &amp;amp;slot0_partition;
		zephyr,console = &amp;amp;uart0;
		zephyr,shell-uart = &amp;amp;uart0;
		zephyr,uart-mcumgr = &amp;amp;uart0;
	};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But unfortunately I have nothing coming on my serial port whan I&amp;#39;m dping printf() in my while blinking loop&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;My cp2102n is wired like this&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/Capture-d_1920_e_0103_cran-2024_2D00_10_2D00_18-a_0003_-15.51.37.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Creating my own board with nrf9161</title><link>https://devzone.nordicsemi.com/thread/506908?ContentTypeID=1</link><pubDate>Fri, 18 Oct 2024 12:12:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:724ae6c5-7d3b-4368-8edd-9d918413fa13</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello,&amp;nbsp;&lt;/p&gt;
[quote user=""]I&amp;#39;ve build my own board with nrf9161 LACA, so for now I&amp;#39;ve tried to create my own board, for the moment I&amp;#39;m just trying to pilot my 3 leds. I&amp;#39;ve follow dev academy blinky example but unfortunally it&amp;#39;s not working[/quote]
&lt;p&gt;Could you please provide more information? Have you made a custom hardware for your nRF9161? Did you verify that LEDs are connected to the correct GPIO in the Devicetree? Are you able to run e.g. AT Client or Serial LTE Modem, and verify that these work on your board?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote user=""]&lt;p&gt;I can compile without error but my led doen&amp;#39;t blink.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;[/quote]
&lt;p&gt;Any logs from your application?&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>