<?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>PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/83597/pcb-design-with-nrf5340</link><description>I would like to make my own project of an analog sensor with BLE feature. Is it a good idea to go with third party module (because of the easy availability of Antenna)? can someone help me with the pcb design with nRF5340 SoC? I am using EAGLE as the</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 17 Jan 2022 08:56:48 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/83597/pcb-design-with-nrf5340" /><item><title>RE: PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/thread/347951?ContentTypeID=1</link><pubDate>Mon, 17 Jan 2022 08:56:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1857e557-0ad6-4272-afc8-e3bc21b0e778</guid><dc:creator>Bendik Heiskel</dc:creator><description>&lt;p&gt;Hi Sreejith,&lt;/p&gt;
&lt;p&gt;The battery example is intended to be used with the thingy52, so to be able to use it with another device a&amp;nbsp; DeviceTree overlay file must be added with the missing configurations.&amp;nbsp; By copying the missing parts from the thingy52 devicetree into the overlay file you should be able to build it, but there may be other problems:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/{
	vbatt {
		compatible = &amp;quot;voltage-divider&amp;quot;;
		io-channels = &amp;lt;&amp;amp;adc 4&amp;gt;;
		output-ohms = &amp;lt;180000&amp;gt;;
		full-ohms = &amp;lt;(1500000 + 180000)&amp;gt;;
	};
};
&amp;amp;adc {
	status = &amp;quot;okay&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have since my previous comment discovered that our getting started guide with nRF Connect SDK tutorial have a section for setting up and using the ADC. Section 3.5 in part 2 of the tutorial is dedicated to using the ADC, I would recommend that you use this as a starting point instead of the battery example from Zephyr, since it is intended for the nRF5340.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/guides/nrf-connect-sdk-guides/b/getting-started/posts/nrf-connect-sdk-tutorial---part-2-ncs-v1-4-0"&gt;https://devzone.nordicsemi.com/guides/nrf-connect-sdk-guides/b/getting-started/posts/nrf-connect-sdk-tutorial---part-2-ncs-v1-4-0#h166sjwm56wzcmgvd418wzzus1esk5n3&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Keep in mind that this tutorial have not been updated since version 1.5.0, so there may be some changes needed for it to work with the current version of the nRF Connect SDK.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Bendik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/thread/347867?ContentTypeID=1</link><pubDate>Sat, 15 Jan 2022 12:38:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f43a7849-01ba-4a26-8663-ab3ab92057fb</guid><dc:creator>Sreejith Sundh</dc:creator><description>&lt;p&gt;Hi Bendik,&lt;/p&gt;
&lt;p&gt;I tried the battery example, but it shows build error, any idea how to solve it?&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/error_5F00_1.PNG" /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/5483.error_5F00_2.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Sreejith&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/thread/347695?ContentTypeID=1</link><pubDate>Fri, 14 Jan 2022 08:35:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:72c885eb-ac85-4ca7-a3d6-021b06e9c0d3</guid><dc:creator>Bendik Heiskel</dc:creator><description>&lt;p&gt;There is a sample in Zephyr for using the ADC to measure the battery voltage. You could use this as a starting point, and modify it for your needs,&lt;br /&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/boards/nrf/battery/README.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/boards/nrf/battery/README.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We do also have a SAADC driver:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrfx/drivers/saadc/driver.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrfx/drivers/saadc/driver.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Bendik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/thread/347627?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 14:49:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d92479be-cea0-46ec-927a-eb7952e39ffb</guid><dc:creator>Sreejith Sundh</dc:creator><description>&lt;p&gt;Hi Bendik,&lt;/p&gt;
&lt;p&gt;It is very informative and helpful. As a beginner, is there any git repo or any hardware development project which I can refer. I would like to use only the analog read feature.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Of cource I can understand it is better to go with the tuned antenna such as third party module.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for your time and support.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Sreejith&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: PCB design with nRF5340</title><link>https://devzone.nordicsemi.com/thread/347540?ContentTypeID=1</link><pubDate>Thu, 13 Jan 2022 09:46:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9c1c98db-8487-4b49-a462-3736ac15b051</guid><dc:creator>Bendik Heiskel</dc:creator><description>&lt;p&gt;Hi Sreejith,&lt;/p&gt;
&lt;p&gt;Using a third party module would be the easiest as the antenna and the radio are already tuned. If you do not use a module you can use the&lt;a href="https://www.nordicsemi.com/-/media/Software-and-other-downloads/Dev-Kits/nRF5340-DK/nRF5340-Development-Kit---Hardware-files-1_0_0.zip"&gt; hardware files for the nRF5340DK&lt;/a&gt; as a reference, in conjunction with the &lt;a href="https://infocenter.nordicsemi.com/topic/ps_nrf5340/chapters/ref_circuitry.html?cp=3_0_0_8_2"&gt;reference schematics available in the product specification&lt;/a&gt;.But keep in mind that the radio matching network and the antenna will require tuning to get the optimum BLE range.&lt;/p&gt;
&lt;p&gt;When you have a design ready you can get a hardware review by creating a private case and uploading the schematic and PCB layout. We do not use Eagle, so the preferred file format is the schematic as a PDF and the PCB layout as Gerber files.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Bendik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>