<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[SIM7080G CAT-M&#x2F;NB-IoT+GNSS Unit Issues]]></title><description><![CDATA[<p dir="auto">Hello everyone,<br />
I come to you because I have a problem with this module, I can not make it work, the UIFlow method does not work nor arduino. When I give him an AT command I have nothing in return. I don’t understand because I have a NB-IoT SIM card that works.<br />
Can you help me, please?</p>
]]></description><link>https://community.m5stack.com/topic/5375/sim7080g-cat-m-nb-iot-gnss-unit-issues</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Apr 2026 10:04:17 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/5375.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Jun 2023 20:05:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SIM7080G CAT-M&#x2F;NB-IoT+GNSS Unit Issues on Thu, 06 Jul 2023 10:06:32 GMT]]></title><description><![CDATA[<p dir="auto">#include &lt;HardwareSerial.h&gt;<br />
HardwareSerial Comm(1);</p>
<p dir="auto">Comm.begin(115200, SERIAL_8N1,TX_pin,RX_pin);  // TX RX</p>
<p dir="auto">Comm.print("AT+IPR=115200\r");        // Set text mode</p>
<p dir="auto">Last command should return an OK. If not, it could be that you have mixed up TX and RX pins or a power issue.</p>
<p dir="auto">To read the reply from the module you could use something like this :<br />
while (millis()&lt;wait_until)<br />
{<br />
while (Comm.available())<br />
{<br />
ccc=Comm.read();<br />
<a href="//Serial.print" target="_blank" rel="noopener noreferrer nofollow ugc">//Serial.print</a>(ccc);<br />
if (k&lt;buffer_size-1)<br />
{<br />
Receive_buffer[k]=ccc;<br />
k++;<br />
}<br />
}<br />
Receive_buffer[k]=NULL;<br />
if (strstr(Receive_buffer,StopCharArray)!=NULL)<br />
{<br />
<a href="//Serial.println" target="_blank" rel="noopener noreferrer nofollow ugc">//Serial.println</a>("OK found");<br />
//  SIM7600_Error=0;<br />
Receive_buffer[k]=NULL;<br />
return false;<br />
}<br />
}</p>
]]></description><link>https://community.m5stack.com/post/21503</link><guid isPermaLink="true">https://community.m5stack.com/post/21503</guid><dc:creator><![CDATA[HappyUser]]></dc:creator><pubDate>Thu, 06 Jul 2023 10:06:32 GMT</pubDate></item><item><title><![CDATA[Reply to SIM7080G CAT-M&#x2F;NB-IoT+GNSS Unit Issues on Fri, 09 Jun 2023 04:53:48 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/44160">@KevinMartins</a></p>
<p dir="auto">which M5 core device are you using? M5Stack (Base, Fire, ...) or M5Core2 or M5CoreS3?</p>
<p dir="auto">Also make sure your SIM card has the PIN disabled.</p>
<p dir="auto">Thanks<br />
Felix</p>
]]></description><link>https://community.m5stack.com/post/21140</link><guid isPermaLink="true">https://community.m5stack.com/post/21140</guid><dc:creator><![CDATA[felmue]]></dc:creator><pubDate>Fri, 09 Jun 2023 04:53:48 GMT</pubDate></item></channel></rss>