<?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>Changing Hardware UART baudrate of nrf52dk in Zephyr?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/105253/changing-hardware-uart-baudrate-of-nrf52dk-in-zephyr</link><description>This is actually a mix of software and hardware question. Im trying to create a pass through device and I&amp;#39;m currently using the peripheral UART example in zephyr. Where Android App &amp;gt;&amp;gt; nrf52dk NUS &amp;gt;&amp;gt;&amp;gt; 900MHz RF and vice versa. My 900MHz RF module has baud</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 02 Nov 2023 05:03:33 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/105253/changing-hardware-uart-baudrate-of-nrf52dk-in-zephyr" /><item><title>RE: Changing Hardware UART baudrate of nrf52dk in Zephyr?</title><link>https://devzone.nordicsemi.com/thread/453610?ContentTypeID=1</link><pubDate>Thu, 02 Nov 2023 05:03:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ad3bdee9-3b69-42e3-8f72-648aa0b458b8</guid><dc:creator>xproto</dc:creator><description>&lt;p&gt;I have not finished it yesterday. After I upgrade SDK toolchains is missing and I cant fix it. Deleted everything this morning and reinstalled. I got it working.&lt;br /&gt;&lt;br /&gt;The&amp;nbsp;&lt;span&gt;zephyr/nrf52dk_nrf52832.overlay doesn&amp;#39;t work. Instead I used the visual editor and it made changes on app.overlay. Visual editor feature is awesome!&lt;br /&gt;&lt;br /&gt;Thank you for the help Oivind!&lt;br /&gt;&lt;br /&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/Screenshot-from-2023_2D00_11_2D00_02-12_2D00_04_2D00_59.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Changing Hardware UART baudrate of nrf52dk in Zephyr?</title><link>https://devzone.nordicsemi.com/thread/453569?ContentTypeID=1</link><pubDate>Wed, 01 Nov 2023 17:38:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bf0fa687-637a-4fcc-b3c6-c88cdd8a5d28</guid><dc:creator>&amp;#216;ivind</dc:creator><description>&lt;p&gt;Even parity is supported, and can be enabled with&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONFIG_UART_0_NRF_PARITY_BIT=y&lt;/p&gt;
&lt;p&gt;Have you configured your app/monitor to the new parameters? Baudrate, parity etc.?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Changing Hardware UART baudrate of nrf52dk in Zephyr?</title><link>https://devzone.nordicsemi.com/thread/453517?ContentTypeID=1</link><pubDate>Wed, 01 Nov 2023 13:33:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4853ad6e-3b3a-4156-a707-74be37cfc3d1</guid><dc:creator>xproto</dc:creator><description>&lt;p&gt;Hello, thank you for reply. I&amp;#39;m using 1.7.1&lt;br /&gt;&lt;br /&gt;Added&amp;nbsp;&lt;span&gt;zephyr/nrf52dk_nrf52832.overlay&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uart0 {
	status = &amp;quot;okay&amp;quot;;
	compatible = &amp;quot;nordic,nrf-uarte&amp;quot;;
	current-speed = &amp;lt;9600&amp;gt;;
	tx-pin = &amp;lt;6&amp;gt;;
	rx-pin = &amp;lt;8&amp;gt;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I want to add this one for parity but it is not recognized.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;nrf-uarte-parity = &amp;lt;UART_CFG_PARITY_EVEN&amp;gt;;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m trying to update the SDK to the latest. Still downloading. Or any other way to modify the parity?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Changing Hardware UART baudrate of nrf52dk in Zephyr?</title><link>https://devzone.nordicsemi.com/thread/453502?ContentTypeID=1</link><pubDate>Wed, 01 Nov 2023 12:43:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5a07362-ac53-416e-9f87-2b5026538f2e</guid><dc:creator>&amp;#216;ivind</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Which version of the nRF Connect SDK are you using?&lt;/p&gt;
&lt;p&gt;You can change the initial baud rate for a uart instance in the overlay file for your board, for example for uart0:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uart0 {
    current-speed = &amp;lt;9600&amp;gt;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;CONFIG_BT_NUS_UART_DEV is declared in the Kconfig file in the peripheral_uart folder. It is simply a string which specifies which uart instance should be used.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>