<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックRe: Android suitable GPS module for i.MX 8QuadMax MEK</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013145#M150043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you so much for this information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have connected Ublox- NEO-6M GPS module to UARTvia USB-Serial interface.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that NMEA packet are being received on /dev/ttyUSB0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using Android 9 Auto (downloaded from &lt;A href="https://www.nxp.com/design/i.mx-developer-resources/i.mx-software-and-development-tools:IMX-SW"&gt;here&lt;/A&gt;) on i.MX 8QuadMax MEK.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Purpose&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;I need to feed this NMEA data across all the layers so that it will be available at the Application layer in Android. Using this, one can use applications like&amp;nbsp;Maps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Do you have any pointers how it can be achieved ? Do you have any detailed information here ?&lt;/P&gt;&lt;P&gt;2) I have downloaded an&amp;nbsp;&lt;A href="https://github.com/kconger/android-serial-gps-driver"&gt;Android-serial-GPS-driver&lt;/A&gt;. But not sure which will be right place to keep the same as i dont see /hardware/imx/ in this Android version. But i found it inside /vendor/nxp-opensource/imx/. Do you suggest any other library ?&lt;/P&gt;&lt;P&gt;3) I also saw in logcat that there is no log GNSSProvider. My understanding is GNSSProvider is mandatory for above mentioned purpose. Is my understanding correct ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request you to throw some light here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Feb 2020 12:34:28 GMT</pubDate>
    <dc:creator>amit251291</dc:creator>
    <dc:date>2020-02-15T12:34:28Z</dc:date>
    <item>
      <title>Android suitable GPS module for i.MX 8QuadMax MEK</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013143#M150041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are planning to use&amp;nbsp;UART available on the base board of i.MX 8QuadMax MEK for GPS module.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please suggest some of the Android compatible GPS modules with UART interface ?&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;If there are any other android compatible modules available with other interfaces on this board please suggest the same.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2020 05:31:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013143#M150041</guid>
      <dc:creator>amit251291</dc:creator>
      <dc:date>2020-01-29T05:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Android suitable GPS module for i.MX 8QuadMax MEK</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013144#M150042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one can use any gps module, gps is connected via a serial port connection.&lt;/P&gt;&lt;P&gt;No need for special drivers, but for an application to read the port.&lt;/P&gt;&lt;P&gt;The gps looks like it sends a serial stream in NMEA format.&lt;/P&gt;&lt;P&gt;In Android write an application that uses location services, and include the ability&lt;/P&gt;&lt;P&gt;to parse NMEA sentences.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developer.android.com/reference/android/location/GpsStatus.NmeaListener.html" title="https://developer.android.com/reference/android/location/GpsStatus.NmeaListener.html"&gt;GpsStatus.NmeaListener &amp;nbsp;|&amp;nbsp; Android Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to include location services:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://stackoverflow.com/questions/1513485/how-do-i-get-the-current-gps-location-programmatically-in-android" title="https://stackoverflow.com/questions/1513485/how-do-i-get-the-current-gps-location-programmatically-in-android"&gt;geolocation - How do I get the current GPS location programmatically in Android? - Stack Overflow&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://stackoverflow.com/questions/18978271/how-to-read-gps-data-and-accelerometer-data-in-one-activity" title="https://stackoverflow.com/questions/18978271/how-to-read-gps-data-and-accelerometer-data-in-one-activity"&gt;android - How to read GPS data and accelerometer data in one activity - Stack Overflow&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2020 11:09:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013144#M150042</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2020-01-29T11:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Android suitable GPS module for i.MX 8QuadMax MEK</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013145#M150043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you so much for this information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have connected Ublox- NEO-6M GPS module to UARTvia USB-Serial interface.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that NMEA packet are being received on /dev/ttyUSB0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using Android 9 Auto (downloaded from &lt;A href="https://www.nxp.com/design/i.mx-developer-resources/i.mx-software-and-development-tools:IMX-SW"&gt;here&lt;/A&gt;) on i.MX 8QuadMax MEK.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Purpose&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;I need to feed this NMEA data across all the layers so that it will be available at the Application layer in Android. Using this, one can use applications like&amp;nbsp;Maps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Do you have any pointers how it can be achieved ? Do you have any detailed information here ?&lt;/P&gt;&lt;P&gt;2) I have downloaded an&amp;nbsp;&lt;A href="https://github.com/kconger/android-serial-gps-driver"&gt;Android-serial-GPS-driver&lt;/A&gt;. But not sure which will be right place to keep the same as i dont see /hardware/imx/ in this Android version. But i found it inside /vendor/nxp-opensource/imx/. Do you suggest any other library ?&lt;/P&gt;&lt;P&gt;3) I also saw in logcat that there is no log GNSSProvider. My understanding is GNSSProvider is mandatory for above mentioned purpose. Is my understanding correct ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request you to throw some light here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 style="color: #646464; background-color: #ffffff; border: 0px; font-weight: 200; font-size: 2rem;"&gt;&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Feb 2020 12:34:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1013145#M150043</guid>
      <dc:creator>amit251291</dc:creator>
      <dc:date>2020-02-15T12:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Android suitable GPS module for i.MX 8QuadMax MEK</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1538092#M196383</link>
      <description>&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;Were you able to get the GPS data in Android Maps? I am trying to implement a similar application where i need to get the GPS data from a USB receiver (connected to iMX8QXP MEK) to Google Maps.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Oct 2022 08:50:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Android-suitable-GPS-module-for-i-MX-8QuadMax-MEK/m-p/1538092#M196383</guid>
      <dc:creator>sooraj_ms</dc:creator>
      <dc:date>2022-10-15T08:50:00Z</dc:date>
    </item>
  </channel>
</rss>

