<?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>Enabling UART disables the Radio</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/68576/enabling-uart-disables-the-radio</link><description>Hi, 
 I am using the nRF52832 and am going at it barebones because I cannot for the life of me get the SDK to work. I am using the nRF52832 manual. 
 -&amp;gt; Manual 
 I have two boards and I have them configured one as transmitter and one as receiver. 
 Receiver</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 20 Nov 2020 00:20:14 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/68576/enabling-uart-disables-the-radio" /><item><title>RE: Enabling UART disables the Radio</title><link>https://devzone.nordicsemi.com/thread/281008?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 00:20:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:119674b6-dc68-434d-9d16-a326b4c4db6f</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;Nice, you&amp;#39;re welcome. In the code you were using both Tx and Rx were being set to pin P0.00 (~0x...1F), which happens to be the 32kHz crystal input pin (if enabled as such); I imagine the chip designers didn&amp;#39;t plan on that, or Tx being connected to Rx :-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling UART disables the Radio</title><link>https://devzone.nordicsemi.com/thread/281006?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 00:00:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f592787a-849a-470e-8f99-8b07516bcc69</guid><dc:creator>ABHarr</dc:creator><description>&lt;p&gt;No idea why this worked but thank you. I never would have gotten that on my own.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling UART disables the Radio</title><link>https://devzone.nordicsemi.com/thread/281004?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 23:46:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e9b60fe-41af-4013-88d3-5b5463b7d7c2</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;Try replacing&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_UART0-&amp;gt;PSELTXD &amp;amp;= ~GPIO_PIN27_Msk;
NRF_UART0-&amp;gt;PSELRXD &amp;amp;= ~GPIO_PIN26_Msk;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;with&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_UART0-&amp;gt;PSELTXD = 27;
NRF_UART0-&amp;gt;PSELRXD = 26;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;assuming Tx is on pin 27 and Rx on pin 26 of course.&lt;/p&gt;
&lt;p&gt;As an aside, mixing UART0 and UARTE0 is best avoided, even though they are the same physical address it makes the code confusing to review.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>