<?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: Gudielines on 3G modem integration</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409523#M61204</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weidong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the detailed reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to find the methodologies adopted in the mobile phone vendor specific android repo's on using the modem in the phone ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does all the android mobile phone vendors keep their android repo open ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lyf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Aug 2015 10:11:49 GMT</pubDate>
    <dc:creator>lyfsci</dc:creator>
    <dc:date>2015-08-05T10:11:49Z</dc:date>
    <item>
      <title>Gudielines on 3G modem integration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409521#M61202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any guidelines document on 3G/4G modem integration with the iMX platforms running Android Lollipop versions ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;lyf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 12:48:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409521#M61202</guid>
      <dc:creator>lyfsci</dc:creator>
      <dc:date>2015-08-04T12:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Gudielines on 3G modem integration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409522#M61203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lyf,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Generally speaking, porting documents on 3G/4G should be provided by manufacture, For different 3G/4G module, porting steps are also distinct。the following steps are for ZTE 3G on android jb 4.2.2, for you as a reference:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----Common steps:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;(1) linux USB driver&lt;/P&gt;&lt;P&gt;In linux kernel, we should select GSM module in USB driver path.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2)Communication port for 3G&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;After linux booting normally, you can find some communation port at path /dev/, like ttyUSB0,ttyUSB1,ttyUSB2...&lt;/P&gt;&lt;P&gt;These tty ports are for AT commands &amp;amp; data transimiiting, but which one is for data , or which one is for AT command, we should have to ask manufacture or get informaiton for them.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(3)dial script&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;3G manufacture will give the script to you, if not, ask for it.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(4)Dynamic library(libreference-ril.so)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;3G manufacture will give you the library to replace original one in android.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(5)Add service for 3G in init.rc file according their documents&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;---As an example, let us see steps for ZTE 3G(CDMA)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;** Replace original file with libreference-ril.so file that ZTE released.&lt;/P&gt;&lt;P&gt;**Copy init.gprs-pppd file to system/etc/ppp directory&lt;/P&gt;&lt;P&gt;**Modify init..rc like following:&lt;/P&gt;&lt;P&gt;service ril-daemon /system/bin/rild -l /system/lib/libreference-ril.so -- -d /dev/ttyUSB2 -u /dev/ttyUSB0&lt;/P&gt;&lt;P&gt;class main&lt;/P&gt;&lt;P&gt;socket rild stream 660 root radio&lt;/P&gt;&lt;P&gt;socket rild-debug stream 660 radio system&lt;/P&gt;&lt;P&gt;socket rild-ppp stream 660 radio system&lt;/P&gt;&lt;P&gt;user root&lt;/P&gt;&lt;P&gt;group radio cache inet misc audio sdcard_rw log&lt;/P&gt;&lt;P&gt;service pppd_gprs /etc/ppp/init.gprs-pppd&lt;/P&gt;&lt;P&gt;class main&lt;/P&gt;&lt;P&gt;user root&lt;/P&gt;&lt;P&gt;group radio cache inet misc&lt;/P&gt;&lt;P&gt;disabled&lt;/P&gt;&lt;P&gt;oneshot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope above steps and information can help you !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Weidong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 03:42:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409522#M61203</guid>
      <dc:creator>weidong_sun</dc:creator>
      <dc:date>2015-08-05T03:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Gudielines on 3G modem integration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409523#M61204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weidong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the detailed reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to find the methodologies adopted in the mobile phone vendor specific android repo's on using the modem in the phone ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does all the android mobile phone vendors keep their android repo open ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lyf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 10:11:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Gudielines-on-3G-modem-integration/m-p/409523#M61204</guid>
      <dc:creator>lyfsci</dc:creator>
      <dc:date>2015-08-05T10:11:49Z</dc:date>
    </item>
  </channel>
</rss>

