<?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[GPS Module with Baidoo, Galileo and Glonass]]></title><description><![CDATA[<p dir="auto">Hi guys,</p>
<p dir="auto">your GPS - shield applies a Neo M8N receiver. According to the data sheet its supports not just GPS but other satellite systems (Galileo, Baidoo, etc.) too.  Did you configure it for GPS use only? I received the module in combination with a GPS only antenna (1575.42 MHz). Would it be possible to use the ublox tools for a reconfiguration of the receiver, for instance for a RTK mode?</p>
<p dir="auto">By the way ... many thanks for the m5stack system, it allows us to realize first prototypes very fast!</p>
<p dir="auto">Best wishes</p>
<p dir="auto">Sebastian</p>
]]></description><link>https://community.m5stack.com/topic/1209/gps-module-with-baidoo-galileo-and-glonass</link><generator>RSS for Node</generator><lastBuildDate>Fri, 01 May 2026 14:45:30 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/1209.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 12 Aug 2019 14:15:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to GPS Module with Baidoo, Galileo and Glonass on Mon, 16 Sep 2019 21:38:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sebastian" aria-label="Profile: Sebastian">@<bdi>Sebastian</bdi></a> glad rick could help, I thought he might. Great work, if you get chance it would be nice to see a full guide on our hackster page <a href="http://hackster.io/m5stack" target="_blank" rel="noopener noreferrer nofollow ugc">hackster.io/m5stack</a></p>
]]></description><link>https://community.m5stack.com/post/5610</link><guid isPermaLink="true">https://community.m5stack.com/post/5610</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Mon, 16 Sep 2019 21:38:44 GMT</pubDate></item><item><title><![CDATA[Reply to GPS Module with Baidoo, Galileo and Glonass on Mon, 16 Sep 2019 18:36:49 GMT]]></title><description><![CDATA[<p dir="auto">Nice work so far, and thanks for sharing the code.</p>
]]></description><link>https://community.m5stack.com/post/5604</link><guid isPermaLink="true">https://community.m5stack.com/post/5604</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Mon, 16 Sep 2019 18:36:49 GMT</pubDate></item><item><title><![CDATA[Reply to GPS Module with Baidoo, Galileo and Glonass on Mon, 16 Sep 2019 18:31:03 GMT]]></title><description><![CDATA[<p dir="auto">Ok, based on some advices from Rick I used a small program from documentation to gateway all NMEA messages to <a href="https://www.u-blox.com/en/product/u-center" target="_blank" rel="noopener noreferrer nofollow ugc">u-center</a> a software provided by ublox. Unfortunately, it exists only a Windows version, but it provides a configuration and visualization tool-suite.</p>
<pre><code class="language-#include">HardwareSerial GPSRaw(2);

void setup() {
  M5.begin();
  GPSRaw.begin(9600);// GPS init
  Serial.println("M5Stack ready!");
}

void loop() {
  // put your main code here, to run repeatedly:
  if(Serial.available()) {
    int ch = Serial.read();
    GPSRaw.write(ch);
  }
  if(GPSRaw.available()) {
    int ch = GPSRaw.read();// read GPS information
    Serial.write(ch);
  }
}
</code></pre>
<p dir="auto">For my application (bicycle tracking while riding and walking), I changed the movement model from automotive to pedestrian (this is important for local filtering). Additionally, if you are not interested in the altitude, you can change the fix configuration from 2D to 3D. This adaptation reduces the time for upcoming. Don't forget to burn your settings to the M8N ;-)</p>
<p dir="auto">Unfortunately, I was not able to receive any position from Galileo. Some ideas on how to involve the European system too? Probably I have to use a new antenna?</p>
<p dir="auto">Sebastian</p>
]]></description><link>https://community.m5stack.com/post/5603</link><guid isPermaLink="true">https://community.m5stack.com/post/5603</guid><dc:creator><![CDATA[Sebastian]]></dc:creator><pubDate>Mon, 16 Sep 2019 18:31:03 GMT</pubDate></item><item><title><![CDATA[Reply to GPS Module with Baidoo, Galileo and Glonass on Wed, 14 Aug 2019 08:11:07 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/sebastian" aria-label="Profile: Sebastian">@<bdi>Sebastian</bdi></a> If it is possible I doubt we have documentation on using those satellite systems. Rick Macdonald of <a href="http://Rocketmanrc.com" target="_blank" rel="noopener noreferrer nofollow ugc">Rocketmanrc.com</a> has a lot of knowledge on this subject. I suggested you drop him an email, He's very open to share</p>
]]></description><link>https://community.m5stack.com/post/5145</link><guid isPermaLink="true">https://community.m5stack.com/post/5145</guid><dc:creator><![CDATA[lukasmaximus]]></dc:creator><pubDate>Wed, 14 Aug 2019 08:11:07 GMT</pubDate></item></channel></rss>