<?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[Unable to read data from GNSS Module with Core 2]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">My configuration is a Core2 stacked to a M5Stack GNSS Module, newly bought on M5Stack Store.</p>
<p dir="auto">I don't manage to receive valid data from the GPS Module. The Serial stream and the source code are copied below.</p>
<p dir="auto">Thank you in advance for your support,</p>
<p dir="auto">Regards,<br />
Philippe</p>
<p dir="auto">``<br />
--- Settings: /dev/cu.usbserial-57130480381  115200,8,N,1<br />
--- RTS: active    DTR: active    BREAK: inactive<br />
--- CTS: inactive  DSR: inactive  RI: inactive  CD: inactive<br />
--- software flow control: inactive<br />
--- hardware flow control: inactive<br />
--- serial input encoding: UTF-8<br />
--- serial output encoding: UTF-8<br />
--- EOL: CRLF<br />
--- filters: default<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   9960  0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   11392 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   12828 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   14268 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   15710 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   17152 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   18599 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   20048 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   21519 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   22972 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   24435 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   25906 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   27544 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   29184 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   30819 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   32460 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   34108 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   35775 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   37424 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   39081 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   40724 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   42372 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   44017 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   45657 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   47299 0         0<br />
**** ***** 0.000000   *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   48941 0         0</p>
<p dir="auto">The Code is below :</p>
<pre><code>#include &lt;M5Core2.h&gt;
#include "M5Module_GNSS.h"
#include &lt;TinyGPSPlus.h&gt;
#include &lt;Adafruit_BMP280.h&gt;
#include &lt;WiFiManager.h&gt; // https://github.com/tzapu/WiFiManager
#include &lt;SPI.h&gt;
#include &lt;WiFi.h&gt;
#include &lt;MQTT.h&gt;


static void smartDelay(unsigned long ms);
static void printFloat(float val, bool valid, int len, int prec);
static void printInt(unsigned long val, bool valid, int len);
static void printDateTime(TinyGPSDate &amp;d, TinyGPSTime &amp;t);
static void printStr(const char *str, int len);

TinyGPSPlus gps;
static const double LONDON_LAT = 51.508131, LONDON_LON = -0.128002;


//Fonction pour MQTT
unsigned long lastMillis = 0;

void setup()
{
    //M5.begin(true, true, true, false, kMBusModeInput);  
    //M5.begin(); 
    M5.begin();
    
    Serial.begin(115200);
    while (!Serial)
        ;


    //Connexion du GPS
    Serial2.begin(115200, SERIAL_8N1, 13, 14);

    M5.Lcd.println();
    M5.Lcd.println(F(
        "Sats HDOP  Latitude   Longitude   Fix  Date       Time     Date Alt   "
        " Course Speed Card  Distance Course Card  Chars Sentences Checksum"));
    M5.Lcd.println(
        F("           (deg)      (deg)       Age                      Age  (m) "
          "   --- from GPS ----  ---- to London  ----  RX    RX        Fail"));
    M5.Lcd.println(F(
        "----------------------------------------------------------------------"
        "------------------------------------------------------------------"));
  
   

}

void loop()
{
  
    printInt(gps.satellites.value(), gps.satellites.isValid(), 5);
    printFloat(gps.hdop.hdop(), gps.hdop.isValid(), 6, 1);
    //printFloat(gps.location.lat(), gps.location.isValid(), 11, 6);
    printFloat(gps.location.lat(), true, 11, 6);

    printFloat(gps.location.lng(), gps.location.isValid(), 12, 6);
    printInt(gps.location.age(), gps.location.isValid(), 5);
    printDateTime(gps.date, gps.time);
    printFloat(gps.altitude.meters(), gps.altitude.isValid(), 7, 2);
    printFloat(gps.course.deg(), gps.course.isValid(), 7, 2);
    printFloat(gps.speed.kmph(), gps.speed.isValid(), 6, 2);
    printStr(
        gps.course.isValid() ? TinyGPSPlus::cardinal(gps.course.deg()) : "*** ",
        6);

    unsigned long distanceKmToLondon =
        (unsigned long)TinyGPSPlus::distanceBetween(
            gps.location.lat(), gps.location.lng(), LONDON_LAT, LONDON_LON) /
        1000;
    printInt(distanceKmToLondon, gps.location.isValid(), 9);

    double courseToLondon = TinyGPSPlus::courseTo(
        gps.location.lat(), gps.location.lng(), LONDON_LAT, LONDON_LON);

    printFloat(courseToLondon, gps.location.isValid(), 7, 2);

    const char *cardinalToLondon = TinyGPSPlus::cardinal(courseToLondon);

    printStr(gps.location.isValid() ? cardinalToLondon : "*** ", 6);

    printInt(gps.charsProcessed(), true, 6);
    printInt(gps.sentencesWithFix(), true, 10);
    printInt(gps.failedChecksum(), true, 9);
    Serial.println();

    smartDelay(1000);

    if (millis() &gt; 5000 &amp;&amp; gps.charsProcessed() &lt; 10)
        Serial.println(F("No GPS data received: check wiring"));

    
        
}

// This custom version of delay() ensures that the gps object
// is being "fed".
static void smartDelay(unsigned long ms) {
    unsigned long start = millis();
    do {
        while (Serial2.available()) gps.encode(Serial2.read());
    } while (millis() - start &lt; ms);
}

static void printFloat(float val, bool valid, int len, int prec) {
    if (!valid) {
        while (len-- &gt; 1) Serial.print('*');
        Serial.print(' ');
    } else {
        Serial.print(val, prec);
        int vi   = abs((int)val);
        int flen = prec + (val &lt; 0.0 ? 2 : 1);  // . and -
        flen += vi &gt;= 1000 ? 4 : vi &gt;= 100 ? 3 : vi &gt;= 10 ? 2 : 1;
        for (int i = flen; i &lt; len; ++i) Serial.print(' ');
    }
    smartDelay(0);
}

static void printInt(unsigned long val, bool valid, int len) {
    char sz[32] = "*****************";
    if (valid) sprintf(sz, "%ld", val);
    sz[len] = 0;
    for (int i = strlen(sz); i &lt; len; ++i) sz[i] = ' ';
    if (len &gt; 0) sz[len - 1] = ' ';
    Serial.print(sz);
    smartDelay(0);
}

static void printDateTime(TinyGPSDate &amp;d, TinyGPSTime &amp;t) {
    if (!d.isValid()) {
        Serial.print(F("********** "));
    } else {
        char sz[32];
        sprintf(sz, "%02d/%02d/%02d ", d.month(), d.day(), d.year());
        Serial.print(sz);
    }

    if (!t.isValid()) {
        Serial.print(F("******** "));
    } else {
        char sz[32];
        sprintf(sz, "%02d:%02d:%02d ", t.hour(), t.minute(), t.second());
        Serial.print(sz);
    }

    printInt(d.age(), d.isValid(), 5);
    smartDelay(0);
}

static void printStr(const char *str, int len) {
    int slen = strlen(str);
    for (int i = 0; i &lt; len; ++i) Serial.print(i &lt; slen ? str[i] : ' ');
    smartDelay(0);
}</code></pre>
]]></description><link>https://community.m5stack.com/topic/6197/unable-to-read-data-from-gnss-module-with-core-2</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Apr 2026 17:48:34 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/6197.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 12 Mar 2024 21:53:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Mon, 29 Apr 2024 13:28:28 GMT]]></title><description><![CDATA[<p dir="auto">For information to future readers, this morning one device Core2+GNSS suddenly started to work without any changes.  The other one (same hw/sw) is now able to see satellites (between 11 to 14) but is totally unable to get a fix.</p>
<p dir="auto">~~I wanted to use the magnetic gyroscope (BMM150) as well, but the data seems crazy and I cannot get any heading from them. Moreover, since this morning, the BIM270 initialisation is not more working.</p>
<p dir="auto">So I give up this module and I will use another GPS solution.~~</p>
<p dir="auto">Edit: thanks to M5Stack Support, the GNSS modules work fine now.<br />
The magnetic gyroscope BMM150, as other magnetometer requires a proper calibration to be used.</p>
]]></description><link>https://community.m5stack.com/post/24844</link><guid isPermaLink="true">https://community.m5stack.com/post/24844</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Mon, 29 Apr 2024 13:28:28 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Tue, 16 Apr 2024 20:29:55 GMT]]></title><description><![CDATA[<p dir="auto">I connected the module to the u-center app to have more information, but nothing helpful here.<br />
The GNSS module does not see any satellite (GSV sentences).<br />
Is there any GPS expert able to check the configuration ?</p>
<p dir="auto"><img src="/assets/uploads/files/1713299335147-config-resized.jpeg" alt="0_1713299332068_config.jpeg" class=" img-fluid img-markdown" /><br />
<img src="/assets/uploads/files/1713299348713-log1-resized.jpeg" alt="0_1713299346969_log1.jpeg" class=" img-fluid img-markdown" /> <img src="/assets/uploads/files/1713299361900-log2-resized.jpeg" alt="0_1713299360561_log2.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/24833</link><guid isPermaLink="true">https://community.m5stack.com/post/24833</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Tue, 16 Apr 2024 20:29:55 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Tue, 16 Apr 2024 15:38:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robski" aria-label="Profile: robski">@<bdi>robski</bdi></a> yes I did. At 38400 I have a communication with the GNSS module. At other baud rates, I've got nothing.<br />
Issue is not to communicate with the module, it is that the module does not return any valid position.</p>
<p dir="auto">After some researches, my understanding is that I need to find out how to configure the GNSS module to make it work in my location (France). It seems that the actual configuration does not work. I'm learning the uBlox PBX commands as we speak.</p>
]]></description><link>https://community.m5stack.com/post/24830</link><guid isPermaLink="true">https://community.m5stack.com/post/24830</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Tue, 16 Apr 2024 15:38:35 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Tue, 16 Apr 2024 07:57:59 GMT]]></title><description><![CDATA[<p dir="auto">Have you tried different baudrates?</p>
]]></description><link>https://community.m5stack.com/post/24822</link><guid isPermaLink="true">https://community.m5stack.com/post/24822</guid><dc:creator><![CDATA[robski]]></dc:creator><pubDate>Tue, 16 Apr 2024 07:57:59 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Mon, 15 Apr 2024 18:38:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/unumdesignum" aria-label="Profile: unumdesignum">@<bdi>unumdesignum</bdi></a> The data returned by the GNSS module in ASCII:</p>
<p dir="auto">$GNRMC,,V,,,,,,,,,,N,V<em>37<br />
$GNVTG,,,,,,,,,N</em>2E<br />
$GNGGA,,,,,,0,00,99.99,,,,,,<em>56<br />
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99,1</em>33<br />
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99,2<em>30<br />
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99,3</em>31<br />
$GNGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99,4<em>36<br />
$GPGSV,1,1,00,1</em>64<br />
$GLGSV,1,1,00,1<em>78<br />
$GAGSV,1,1,00,7</em>73<br />
$GBGSV,1,1,00,1<em>76<br />
$GNGLL,,,,,,V,N</em>7A</p>
]]></description><link>https://community.m5stack.com/post/24812</link><guid isPermaLink="true">https://community.m5stack.com/post/24812</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Mon, 15 Apr 2024 18:38:55 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Mon, 15 Apr 2024 15:47:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robski" aria-label="Profile: robski">@<bdi>robski</bdi></a> Thank you for your message. I tried to set dip 1 to on but without any success nor changes.<br />
(I actually wonder what this PPS is)</p>
<p dir="auto">There are data coming out from Serial2, but it seems that they cannot be decoded by tinyGPS.</p>
<p dir="auto">0x24 0x47 0x4e 0x52 0x4d 0x43 0x2c 0x2c 0x56 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x4e 0x2c 0x56 0x2a 0x33 0x37 0x0d 0x0a 0x24 0x47 0x4e 0x56 0x54 0x47 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x4e 0x2a 0x32 0x45 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x47 0x41 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x30 0x2c 0x30 0x30 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2a 0x35 0x36 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x53 0x41 0x2c 0x41 0x2c 0x31 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x31 0x2a 0x33 0x33 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x53 0x41 0x2c 0x41 0x2c 0x31 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x32 0x2a 0x33 0x30 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x53 0x41 0x2c 0x41 0x2c 0x31 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x33 0x2a 0x33 0x31 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x53 0x41 0x2c 0x41 0x2c 0x31 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x39 0x39 0x2e 0x39 0x39 0x2c 0x34 0x2a 0x33 0x36 0x0d 0x0a 0x24 0x47 0x50 0x47 0x53 0x56 0x2c 0x31 0x2c 0x31 0x2c 0x30 0x30 0x2c 0x31 0x2a 0x36 0x34 0x0d 0x0a 0x24 0x47 0x4c 0x47 0x53 0x56 0x2c 0x31 0x2c 0x31 0x2c 0x30 0x30 0x2c 0x31 0x2a 0x37 0x38 0x0d 0x0a 0x24 0x47 0x41 0x47 0x53 0x56 0x2c 0x31 0x2c 0x31 0x2c 0x30 0x30 0x2c 0x37 0x2a 0x37 0x33 0x0d 0x0a 0x24 0x47 0x42 0x47 0x53 0x56 0x2c 0x31 0x2c 0x31 0x2c 0x30 0x30 0x2c 0x31 0x2a 0x37 0x36 0x0d 0x0a 0x24 0x47 0x4e 0x47 0x4c 0x4c 0x2c 0x2c 0x2c 0x2c 0x2c 0x2c 0x56 0x2c 0x4e 0x2a 0x37 0x41 0x0d 0x0a 0    100.0  ********** *********** **** 00/00/2000 00:00:00 245  ****** ****** ***** ***   ******** ****** ***   369   0         0</p>
]]></description><link>https://community.m5stack.com/post/24811</link><guid isPermaLink="true">https://community.m5stack.com/post/24811</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Mon, 15 Apr 2024 15:47:58 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Mon, 15 Apr 2024 15:03:55 GMT]]></title><description><![CDATA[<p dir="auto">would it matter if your PPS dip switch isn't set as default?</p>
]]></description><link>https://community.m5stack.com/post/24810</link><guid isPermaLink="true">https://community.m5stack.com/post/24810</guid><dc:creator><![CDATA[robski]]></dc:creator><pubDate>Mon, 15 Apr 2024 15:03:55 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Mon, 15 Apr 2024 13:40:34 GMT]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I struggle to get GPS data from the GNSS module to the Core2.<br />
I'm using the demo code here:<br />
<a href="https://github.com/m5stack/M5Module-GNSS/blob/main/examples/getPosition/getPosition.ino" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Module-GNSS/blob/main/examples/getPosition/getPosition.ino</a><br />
with the following settings: Serial2.begin(38400, SERIAL_8N1, 13, 14);</p>
<p dir="auto">it seems like the Core2 is receiving data from the module, but it doesn't catches any satellite.</p>
<p dir="auto">The external antenna is connected and left outside.<br />
I tried with another Core2 and another GNSS module with same result.</p>
<p dir="auto">Any idea ?</p>
<p dir="auto">rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)<br />
configsip: 0, SPIWP:0xee<br />
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00<br />
mode:DIO, clock div:1<br />
load:0x3fff0030,len:1344<br />
load:0x40078000,len:13964<br />
load:0x40080400,len:3600<br />
entry 0x400805f0</p>
<h2>Sats HDOP  Latitude   Longitude   Fix  Date       Time     Date Alt    Course Speed Card  Distance Course Card  Chars Sentences Checksum<br />
(deg)      (deg)       Age                      Age  (m)    --- from GPS ----  ---- to London  ----  RX    RX        Fail</h2>
<p dir="auto">**** ***** ********** *********** **** ********** ******** **** ****** ****** ***** ***   ******** ****** ***   0     0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 951  ****** ****** ***** ***   ******** ****** ***   369   0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 952  ****** ****** ***** ***   ******** ****** ***   738   0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 953  ****** ****** ***** ***   ******** ****** ***   1107  0         0<br />
....</p>
<p dir="auto">0    100.0  ********** *********** **** 00/00/2000 00:00:00 655  ****** ****** ***** ***   ******** ****** ***   25400 0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 656  ****** ****** ***** ***   ******** ****** ***   25437 0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 657  ****** ****** ***** ***   ******** ****** ***   25474 0         0<br />
0    100.0  ********** *********** **** 00/00/2000 00:00:00 657  ****** ****** ***** ***   ******** ****** ***   25511 0         0</p>
<p dir="auto"><img src="/assets/uploads/files/1713188348184-gnss-core2-resized.jpeg" alt="0_1713188342770_gnss-core2.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/24809</link><guid isPermaLink="true">https://community.m5stack.com/post/24809</guid><dc:creator><![CDATA[UnumDesignum]]></dc:creator><pubDate>Mon, 15 Apr 2024 13:40:34 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Thu, 14 Mar 2024 07:46:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fra222" aria-label="Profile: fra222">@<bdi>fra222</bdi></a> said in <a href="/post/24359">Unable to read data from GNSS Module with Core 2</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fra222" aria-label="Profile: fra222">@<bdi>fra222</bdi></a> Thanks a lot again. It is working perfectly now with the 38 400 baudrate. The precision is impressing !</p>
</blockquote>
<p dir="auto">good to hear that you have it sorted now <a class="plugin-mentions-user plugin-mentions-a" href="/user/fra222" aria-label="Profile: FRA222">@<bdi>FRA222</bdi></a></p>
]]></description><link>https://community.m5stack.com/post/24362</link><guid isPermaLink="true">https://community.m5stack.com/post/24362</guid><dc:creator><![CDATA[robski]]></dc:creator><pubDate>Thu, 14 Mar 2024 07:46:39 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Thu, 14 Mar 2024 05:55:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/fra222" aria-label="Profile: fra222">@<bdi>fra222</bdi></a> Thanks a lot again. It is working perfectly now with the 38 400 baudrate. The precision is impressing !</p>
]]></description><link>https://community.m5stack.com/post/24359</link><guid isPermaLink="true">https://community.m5stack.com/post/24359</guid><dc:creator><![CDATA[FRA222]]></dc:creator><pubDate>Thu, 14 Mar 2024 05:55:33 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Wed, 13 Mar 2024 18:48:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ajb2k3" aria-label="Profile: ajb2k3">@<bdi>ajb2k3</bdi></a> Thank you very much for your help. I did the tests with the external antenna, outside, on the roof close to a window.</p>
]]></description><link>https://community.m5stack.com/post/24355</link><guid isPermaLink="true">https://community.m5stack.com/post/24355</guid><dc:creator><![CDATA[FRA222]]></dc:creator><pubDate>Wed, 13 Mar 2024 18:48:19 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Wed, 13 Mar 2024 18:46:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robski" aria-label="Profile: robski">@<bdi>robski</bdi></a> Thank you very much for your answer. I tried 115200, 57600 and 9600 without any success. I will try tomorrow the other one you gave in your message and will tell you.</p>
]]></description><link>https://community.m5stack.com/post/24354</link><guid isPermaLink="true">https://community.m5stack.com/post/24354</guid><dc:creator><![CDATA[FRA222]]></dc:creator><pubDate>Wed, 13 Mar 2024 18:46:13 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Wed, 13 Mar 2024 18:22:39 GMT]]></title><description><![CDATA[<p dir="auto">Are you trying it inside building or outside as they don't often work inside buildings</p>
]]></description><link>https://community.m5stack.com/post/24352</link><guid isPermaLink="true">https://community.m5stack.com/post/24352</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 13 Mar 2024 18:22:39 GMT</pubDate></item><item><title><![CDATA[Reply to Unable to read data from GNSS Module with Core 2 on Wed, 13 Mar 2024 12:26:13 GMT]]></title><description><![CDATA[<p dir="auto">have you tried diff baudrates for GNSS like 9600 or 38400 which is NEO chip default as per docs</p>
]]></description><link>https://community.m5stack.com/post/24343</link><guid isPermaLink="true">https://community.m5stack.com/post/24343</guid><dc:creator><![CDATA[robski]]></dc:creator><pubDate>Wed, 13 Mar 2024 12:26:13 GMT</pubDate></item></channel></rss>