<?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>custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/99802/custom-at-commands-in-nrf5340</link><description>I want to create custom AT commands in NRF5340 like this 
 I add CONFIG_AT_CUSTOM_CMD=y in prj.conf file and #include &amp;lt;modem/at_cmd_parser.h&amp;gt; in main.c. 
 But i get: 
 
 I tried many ways to include nrf_modem_at.h header in main.c but nothing worked.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 14 Dec 2023 13:27:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/99802/custom-at-commands-in-nrf5340" /><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/460376?ContentTypeID=1</link><pubDate>Thu, 14 Dec 2023 13:27:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d4dc2f57-30cc-4d47-a1c1-886a8f4eb743</guid><dc:creator>uzer123</dc:creator><description>&lt;p&gt;Adafruit implementation looks useful. I have already finish this project with my one very limited kind of parser as i had to implement very few commands..so its more of a hard coded thing, but your suggestions are good for future reference. Thank you.&lt;/p&gt;
&lt;p&gt;I close the issue.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/427247?ContentTypeID=1</link><pubDate>Wed, 24 May 2023 13:18:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:95ad7f52-d348-4d03-a686-ab03741bc804</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;I see. Our AT cmd library is related to the 91 modem firmware, so using it wouldn&amp;#39;t be the best either way.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;You need an&amp;nbsp;AT command parser for these custom at commands. Which is similar to what we have in modem. Our &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/nrf9160/slm_shell/README.html"&gt;SLM application&amp;nbsp;&lt;/a&gt;also have the implementation but it might be a bit complex, I think it would be better to use some commons &lt;a href="https://blog.adafruit.com/2023/01/25/a-tiny-at-modem-communications-command-parser-communications-vintagecomputing/"&gt;parser implementation like this one&lt;/a&gt;.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;&lt;a href="https://www.google.com/search?q=At+command+parser&amp;amp;sxsrf=APwXEdfoXcoTklS5npAA1DzwECt55-8jBA%3A1684934264671&amp;amp;source=hp&amp;amp;ei=eA5uZKrBJqeNxc8PkaCAIA&amp;amp;iflsig=AOEireoAAAAAZG4ciKZU6ziQ_aCMenraX00cxvnqtcb2&amp;amp;ved=0ahUKEwiq3cCihY7_AhWnRvEDHREQAAQQ4dUDCAk&amp;amp;uact=5&amp;amp;oq=At+command+parser&amp;amp;gs_lcp=Cgdnd3Mtd2l6EAMyBwgjEIoFECcyBQgAEIAEMgYIABAWEB4yBggAEBYQHjIGCAAQFhAeMgYIABAWEB4yBggAEBYQHjIGCAAQFhAeMgYIABAWEB4yBggAEBYQHlAAWABgggNoAHAAeACAAUWIAUWSAQExmAEAoAECoAEB&amp;amp;sclient=gws-wiz"&gt;Or some of the numerous other implementations&lt;/a&gt; out there.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;Regards,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;Elfving&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/426813?ContentTypeID=1</link><pubDate>Tue, 23 May 2023 09:15:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe7a5874-d33f-4750-886e-7194cf70768e</guid><dc:creator>uzer123</dc:creator><description>&lt;p&gt;Yes, this is the correct link. I would like to know if i can use this library with nRF5340&lt;br /&gt;I want to send an AT command like: AT+BLINK and see a led blinking&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/426550?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 12:05:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1e0f2b50-ff53-4c5a-8b4a-c9caff2532be</guid><dc:creator>Elfving</dc:creator><description>[quote user=""]I want to create custom AT commands in NRF5340 like &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/libraries/modem/at_custom_cmd.html#custom-at-commands"&gt;this&lt;/a&gt;[/quote]
&lt;p&gt;Is &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.2.0/nrf/libraries/modem/at_custom_cmd.html"&gt;this&lt;/a&gt; what you wanted to link to here?&lt;/p&gt;
&lt;p&gt;Could you expand a bit on what/how you would want to test using these commands?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/426509?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 10:52:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dda5210d-39b8-4c50-a2a0-0768e15b3588</guid><dc:creator>uzer123</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;Yes, i know there isnt modem on nRF5340. I just want to have some custom AT commands for testing purposes (not modem related). Is there any nordic library for&amp;nbsp;this?&lt;/p&gt;
&lt;div id="gtx-trans" style="left:196px;position:absolute;top:22px;"&gt;
&lt;div class="gtx-trans-icon"&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/426497?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 10:15:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:412ba41f-4ede-4d1a-917b-e731804390ac</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hello Dimitrios, and thank you for your patience.&lt;/p&gt;
&lt;p&gt;I am a bit confused as to what you are trying to achieve though, as the nRF5340 does not have an onboard modem. Maybe you are confusing the nRF5340 and the nRF9160?&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: custom AT commands in nRF5340</title><link>https://devzone.nordicsemi.com/thread/426233?ContentTypeID=1</link><pubDate>Fri, 19 May 2023 11:30:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5a227032-657d-4bbc-a06b-cc07f121193f</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;br /&gt;I am sorry, but we are short staffed this week due to Public Holidays in Norway. We will be back on Monday 22nd and hope to be able to answer all incoming requests within a couple of days, depending on the backlog. I am sorry for the inconvenience.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>