<?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>Using UART2 in Serial LTE Modem Application NCS v1.5.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/73035/using-uart2-in-serial-lte-modem-application-ncs-v1-5-0</link><description>I&amp;#39;m having an issue getting the SLM example to compile with UART2. 
 
 Steps to reproduce: 
 
 Configure project with UART2 
 See error pop-up 
 Compile anyways 
 See Undefined reference to vector start</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 26 Mar 2021 10:06:29 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/73035/using-uart2-in-serial-lte-modem-application-ncs-v1-5-0" /><item><title>RE: Using UART2 in Serial LTE Modem Application NCS v1.5.0</title><link>https://devzone.nordicsemi.com/thread/302093?ContentTypeID=1</link><pubDate>Fri, 26 Mar 2021 10:06:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e29a5e8f-32a5-4f78-91b9-9bcccfe0581f</guid><dc:creator>Albrecht Markus Schellenberger</dc:creator><description>&lt;p&gt;Thanks a lot for the feedback, Andy! Good to hear that it works.&lt;/p&gt;
&lt;p&gt;Using UART flow control is optional. As long as the receiving device can keep up processing the incoming data or your system can handle a possible loss of data, you do not need to use RTS/CTS.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;
&lt;p&gt;Markus&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using UART2 in Serial LTE Modem Application NCS v1.5.0</title><link>https://devzone.nordicsemi.com/thread/301914?ContentTypeID=1</link><pubDate>Thu, 25 Mar 2021 13:17:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3c088fd2-9c56-4b07-a21e-5766eec478fc</guid><dc:creator>austinaoe</dc:creator><description>&lt;p&gt;Hi Markus, looks like it works!&lt;/p&gt;
&lt;p&gt;I&amp;#39;m curious if the RTS and CTS are required?&amp;nbsp; I&amp;#39;m not using them and the application seems to be working fine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using UART2 in Serial LTE Modem Application NCS v1.5.0</title><link>https://devzone.nordicsemi.com/thread/301257?ContentTypeID=1</link><pubDate>Mon, 22 Mar 2021 15:07:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:53f39951-6e3b-4281-90d6-a36b63311797</guid><dc:creator>Albrecht Markus Schellenberger</dc:creator><description>&lt;p&gt;Hello Andy,&lt;/p&gt;
&lt;p&gt;If you have a look at the &lt;em&gt;prj.conf&lt;/em&gt; of the Serial LTE Modem Application, you can see that there is another argument which must be set when switching to UART2:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Use UART_2 (when working with external MCU)
CONFIG_SLM_CONNECT_UART_2=y
CONFIG_UART_2_NRF_HW_ASYNC_TIMER=2&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;So basically, what you should do is:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Update to UART2&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/1172.pastedimage1616425252210v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Look for UART_2_NRF_HW_ASYNC_TIMER, update it to value 2 and press&amp;nbsp;&lt;span&gt;the ‘Configure’ button.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/3755.pastedimage1616425359010v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Unfortunately, there are some instabilities with Kconfig in NCS v1.5.0, &lt;strong&gt;so what I recommend you do instead is:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Open the &lt;em&gt;prj.conf&lt;/em&gt; file of the Serial LTE Modem Application in a text editor of your choice, toggle the comment for the two parameters below and save the changes.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Use UART_2 (when working with external MCU)
CONFIG_SLM_CONNECT_UART_2=y
CONFIG_UART_2_NRF_HW_ASYNC_TIMER=2&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Run a CMake update in SES.&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left:30px;"&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/8802.pastedimage1616425641835v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;You should now be able to build the application. Let me know if you have any more questions.&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;
&lt;p&gt;Markus&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>