<?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>Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/102896/send-text-sms-with-nrf9160-and-lte-link-monitor</link><description>Hello, 
 Could you explain me how I may send text SMS with AT commands and the LTE Link Monitor and the nRF9160 modem? 
 
 Regards 
 Fabrice</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 21 Aug 2023 15:31:07 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/102896/send-text-sms-with-nrf9160-and-lte-link-monitor" /><item><title>RE: Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/thread/442371?ContentTypeID=1</link><pubDate>Mon, 21 Aug 2023 15:31:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a31b77aa-0b7a-4974-8581-3bb7025c04e5</guid><dc:creator>Fabrice D</dc:creator><description>&lt;p&gt;It&amp;#39;s me again.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;I&amp;#39;ve just succeded in sending an SMS. I have removed the &amp;quot;+&amp;quot; character at beginning of the phone number.&lt;/p&gt;
&lt;p&gt;AT#XSMS=2,&amp;quot;33673995916&amp;quot;,&amp;quot;SLM test&amp;quot;&lt;/p&gt;
&lt;p&gt;OK&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Fabrice&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/thread/442367?ContentTypeID=1</link><pubDate>Mon, 21 Aug 2023 15:20:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9890f612-27d7-479c-b5ba-8134aed5cf0f</guid><dc:creator>Fabrice D</dc:creator><description>&lt;p&gt;Hi Didrik,&lt;/p&gt;
&lt;p&gt;I have installed the Serial Terminal application and tried to send an SMS with the AT#XSMS command. Unfortunately, there is an ERROR. Maybe something has to be configured before to send an SMS?&lt;/p&gt;
&lt;p&gt;&amp;gt; AT+CFUN=1&lt;/p&gt;
&lt;p&gt;OK&lt;br /&gt;&amp;gt; AT#XSMS=?&lt;/p&gt;
&lt;p&gt;#XSMS: (0,1,2),&amp;lt;number&amp;gt;,&amp;lt;message&amp;gt;&lt;/p&gt;
&lt;p&gt;OK&lt;br /&gt;&amp;gt; AT#XSMS=2,&amp;quot;+33673995916&amp;quot;,&amp;quot;SLM test&amp;quot;&lt;/p&gt;
&lt;p&gt;ERROR&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Fabrice&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/thread/441913?ContentTypeID=1</link><pubDate>Thu, 17 Aug 2023 15:03:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c5d86098-8f7c-4ad5-93eb-84ab79a9f532</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;The nRF9160 has an integrated application processor, and the modem is only accessible through the application processor.&lt;/p&gt;
&lt;p&gt;Hence why we have a sample application like the at_client, which simply forwards AT commands sent over UART to the modem core.&lt;/p&gt;
&lt;p&gt;Similarly, the SLM runs on the application core, and implements extra AT commands (such as the #XSMS command) so that features that there might not be AT commands for (e.g. IP sockets or GNSS) are exposed as AT commands, or just making some things easier (such as sending and receiving SMS).&lt;/p&gt;
&lt;p&gt;You can find a pre-compiled version for the DK on &lt;a href="https://www.nordicsemi.com/Products/Development-hardware/nRF9160-DK/Download?lang=en#infotabs"&gt;our website&lt;/a&gt;, or you can &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/getting_started.html"&gt;install the nRF Connect SDK&lt;/a&gt; and &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/applications/serial_lte_modem/doc/slm_description.html#building-and-running"&gt;build the application&lt;/a&gt; yourself.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/thread/441765?ContentTypeID=1</link><pubDate>Thu, 17 Aug 2023 07:22:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aefcbd85-4c21-4d48-b336-41f3bc778fc9</guid><dc:creator>Fabrice D</dc:creator><description>&lt;p&gt;Hi Didrik,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thank you for your answer.&lt;/p&gt;
&lt;p&gt;i would like to simply to test sending and receiving SMSes. What is SLM application and how can I get it? I do not see it in the list of applications in the nRF Connect for Desktop.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Fabrice&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Send text SMS with nRF9160 and LTE Link Monitor</title><link>https://devzone.nordicsemi.com/thread/441692?ContentTypeID=1</link><pubDate>Wed, 16 Aug 2023 15:40:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:de0ca983-ee82-48b6-a146-b4dcc02a29fb</guid><dc:creator>Didrik Rokhaug</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;What are you trying to do?&lt;/p&gt;
&lt;p&gt;You can find the SMS related AT commands here: &lt;a href="https://infocenter.nordicsemi.com/topic/ref_at_commands/REF/at_commands/text_mode/text_mode.html"&gt;https://infocenter.nordicsemi.com/topic/ref_at_commands/REF/at_commands/text_mode/text_mode.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;However, they aren&amp;#39;t the easiest to use, as you would have to encode the data yourself.&lt;/p&gt;
&lt;p&gt;If the point is simply to test sending and receiving SMSes, it is much easier to use the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/applications/serial_lte_modem/doc/SMS_AT_commands.html"&gt;#XSMS command in the Serial LTE Modem (SLM) application&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Or, if you want to use SMS in your application, you should use the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/libraries/modem/sms.html"&gt;SMS library&lt;/a&gt;, which is demonstrated in the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/samples/nrf9160/sms/README.html"&gt;SMS sample&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Didrik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>