<?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[Connecting GPS Module with u-center]]></title><description><![CDATA[<p dir="auto">Hello</p>
<p dir="auto">is here anyone who could support me, how I can connect or what I have to do to see the complete data provided by the GPS module in the u-center software.</p>
<p dir="auto">Thanks for help in advance</p>
<p dir="auto">Olaf</p>
]]></description><link>https://community.m5stack.com/topic/5478/connecting-gps-module-with-u-center</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 00:49:28 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/5478.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 10 Jul 2023 12:18:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Connecting GPS Module with u-center on Sun, 06 Aug 2023 10:00:18 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/46708">@osioli</a>,</p>
<p dir="auto">You can upload to the core first this code (I'm using the Gray core):</p>
<p dir="auto">#include &lt;M5Stack.h&gt;</p>
<p dir="auto">HardwareSerial GPS(2);</p>
<p dir="auto">void setup() {<br />
GPS.begin(9600);<br />
Serial.begin(115200);<br />
}</p>
<p dir="auto">void loop() {<br />
for (;;) {<br />
if (GPS.available() &gt; 0)<br />
Serial.write(GPS.read());<br />
if (Serial.available() &gt; 0)<br />
GPS.write(Serial.read());<br />
}<br />
}</p>
<p dir="auto">In u-center set the baud rate to 115200. Go to View-Messages View (F9), expand UBX-CFG-MSG and check UART1.</p>
<p dir="auto">In my case the satellites detection only works outdoors.</p>
]]></description><link>https://community.m5stack.com/post/21803</link><guid isPermaLink="true">https://community.m5stack.com/post/21803</guid><dc:creator><![CDATA[dynamorando]]></dc:creator><pubDate>Sun, 06 Aug 2023 10:00:18 GMT</pubDate></item></channel></rss>