<?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>nRF5340-DK VCOM CTS line remains high</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/115897/nrf5340-dk-vcom-cts-line-remains-high</link><description>Hi 
 I&amp;#39;m trying to make the UART-HCI example run on my nRF5340-DK board. 
 Environment: - nRF5340-DK Version 2.0.0 (2022.13) - nRFConnect 2.7.0 
 I&amp;#39;ve built the example with VS Code and downloaded it to the Network Core. On the Applicaiton Core the empty</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 06 Jan 2025 13:03:06 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/115897/nrf5340-dk-vcom-cts-line-remains-high" /><item><title>RE: nRF5340-DK VCOM CTS line remains high</title><link>https://devzone.nordicsemi.com/thread/516987?ContentTypeID=1</link><pubDate>Mon, 06 Jan 2025 13:03:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e4e1067d-12f0-4330-b8ec-e1de42072344</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Sorry about the very late reply here, but this seems to have fallen through the cracks on our end. Just to make sure here, you are using the interface MCU chip for the UART and already existing VCOM on the nRF5340 DK, correct?&lt;/p&gt;
&lt;p&gt;If so, can you share some details on how you&amp;#39;re measuring the pins high/low here, and where in the code the application is at this point? If it is currently transmitting from the interface chip to the nRF5340, it makes sense that the CTS pin is high so it doesn&amp;#39;t send data while it is receiving for example.&lt;/p&gt;
&lt;p&gt;Because if you&amp;#39;re planning on using these pins for UART yourself on the pin outputs you need to cut solder bridges SB27, SB28, SB29 and SB30 to use these pins for other purposes.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF5340-DK VCOM CTS line remains high</title><link>https://devzone.nordicsemi.com/thread/508372?ContentTypeID=1</link><pubDate>Tue, 29 Oct 2024 13:43:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:86e84cab-5deb-4ded-9c70-c6c817894319</guid><dc:creator>Adrian Eggenberger</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I realized that I did not mention, that I need the hardware flow control to be used. I checked the CONFIG register&amp;nbsp;and it has value 1 =&amp;gt; HWFC enabled.&lt;/p&gt;
&lt;p&gt;The SW7 switch is in ON position as it should foir using HW flow control. If I set the SW7 to OFF the data is transmitted, but I assume that flow control is not really working in that case.&lt;/p&gt;
&lt;p&gt;If I understand this correctly the UART lines of the nRF5340 are conencted to the Interface MCU over the switch controlled by the SW7. When I stop the debugger after the transmit has been initiated by the firmware I can see the same logic values in the IN register of the port 0:&lt;/p&gt;
&lt;p&gt;P0.19 - low (nRF5340 not blocking data transmit from MCU interface chip)&lt;br /&gt;&lt;span&gt;P0.20 - high (Transmit line in Idle state)&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;P0.21 - high (MCU interface chip blocks data transmit from nRF5340)&lt;/strong&gt;&lt;br /&gt;&lt;span&gt;P0.22 - high&amp;nbsp;(Reception line in Idle state)&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Except the P0.21 all levels make sense to me, but it seems that the MCU interface chip blocks the transmit of the nRF5340.&lt;/p&gt;
&lt;p&gt;Regards Adrian&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF5340-DK VCOM CTS line remains high</title><link>https://devzone.nordicsemi.com/thread/508356?ContentTypeID=1</link><pubDate>Tue, 29 Oct 2024 12:50:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5df9f54-afb7-4f78-bdd0-357616eb7c2e</guid><dc:creator>Maria Gilje</dc:creator><description>&lt;p&gt;Hi Adrian,&lt;/p&gt;
&lt;p&gt;This seems related to hardware flow control in some way. Some relevant info is found in the nRF5340 PS &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf5340/page/uarte.html#ariaid-title6"&gt;here&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;You can check if hardware flow control is enabled by reading the HWFC field of the &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf5340/page/uarte.html#ariaid-title62"&gt;CONFIG&lt;/a&gt; register for UARTE.&lt;/p&gt;
&lt;p&gt;Also, to cover even more bases, please see if SW7 is off for VCOM0 and/or VCOM2. Since you are using Serial port 1 for UART, VCOM2 is the relevant switch (&lt;a href="https://docs.nordicsemi.com/bundle/ug_nrf5340_dk/page/UG/dk/vir_com_port.html"&gt;reference&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Maria&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>