<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - The great Symbian AT command response challenge? - Comments</title>
 <link>http://www.newlc.com/topic-17827</link>
 <description>Comments for &quot;The great Symbian AT command response challenge?&quot;</description>
 <language>en</language>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-39366</link>
 <description>&lt;p&gt;&lt;br /&gt;
I have at least managed to get a response by using &lt;span style=&quot;font-weight:bold&quot;&gt;ReadOneOrMore &lt;/span&gt;in place of &lt;span style=&quot;font-weight:bold&quot;&gt;Read &lt;/span&gt;function.&lt;/p&gt;

&lt;p&gt;But now the problem is that, no matter how much delay I keep between write and read, in response I get the same command back.&lt;br /&gt;
Whereas I should be getting an &quot;OK&quot; in response..&lt;/p&gt;

&lt;p&gt;Any ideas what the problem is?&lt;/p&gt;</description>
 <pubDate>Thu, 21 Jun 2007 06:58:53 +0200</pubDate>
 <dc:creator>jp4symbian</dc:creator>
 <guid isPermaLink="false">comment 39366 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-39353</link>
 <description>&lt;p&gt;Hi Mayur,&lt;/p&gt;

&lt;p&gt;Please let me know if you have tested this code on &lt;span style=&quot;font-weight:bold&quot;&gt;Nokia 6600 or Nokia 6670.&lt;/span&gt;&lt;br /&gt;
My application goes into an infinite loop when I try to read the data from the port. Writing to the port gives no error and request completes successfully.&lt;/p&gt;

&lt;p&gt;I am using the same code as u have posted here, only that I am not using an Active Object but waiting on the request as follows:&lt;br /&gt;
TBuf8&lt;512&gt; aDes;&lt;br /&gt;
comm.Read(status, aDes);&lt;br /&gt;
User::WaitForRequest(status);&lt;/p&gt;

&lt;p&gt;How much time does it normally take to receive the response of an AT command??&lt;/p&gt;

&lt;p&gt;plz do reply....&lt;/p&gt;

&lt;p&gt;regards,&lt;br /&gt;
jp&lt;/p&gt;</description>
 <pubDate>Wed, 20 Jun 2007 15:55:29 +0200</pubDate>
 <dc:creator>jp4symbian</dc:creator>
 <guid isPermaLink="false">comment 39353 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-37890</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Actually killing FaxModem does not help at all.&lt;br /&gt;I have seen some posts where they have been able to do this stuff without killing any other process.&lt;br /&gt;Any other ideas are welcome?&lt;br /&gt;--Mayur.&lt;/div&gt;</description>
 <pubDate>Mon, 12 Mar 2007 09:37:12 +0100</pubDate>
 <dc:creator>mayur24</dc:creator>
 <guid isPermaLink="false">comment 37890 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-37889</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;I don&amp;#039;t know, try to find a program that shows the hidden tasks on your phone. (I think there is on called gnutask but i&amp;#039;m not sure ...). When you find the task kill it with this code :&lt;br /&gt;&lt;br /&gt;TBuf8&amp;lt;50&amp;gt; buf;&lt;br /&gt;&amp;nbsp; &amp;nbsp; TFullName repName;&lt;br /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;_LIT8(KFAXMODEM,&amp;nbsp; &amp;quot;FaxModem&amp;quot; );&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; TFindProcess process;&lt;br /&gt;&amp;nbsp; &amp;nbsp; for(TInt i = 0; i &amp;lt; 1000; i++)&lt;br /&gt;&amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; while(process.Next(repName) != KErrNotFound)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;buf.Copy(repName);&lt;br /&gt;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ( (buf.Find(KFAXMODEM) != KErrNotFound) )&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RProcess aProcess;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;aProcess.Open(process);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;aProcess.Kill(0);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;aProcess.Close();&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;&amp;nbsp; &amp;nbsp; }&lt;br /&gt;&lt;br /&gt;instead of &amp;quot;FaxModem&amp;quot; you put the name of the task&lt;/div&gt;</description>
 <pubDate>Fri, 09 Mar 2007 09:26:43 +0100</pubDate>
 <dc:creator>wagonli</dc:creator>
 <guid isPermaLink="false">comment 37889 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-37888</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;What about the N-Gage?&lt;br /&gt;--Mayur.&lt;/div&gt;</description>
 <pubDate>Wed, 07 Mar 2007 16:57:42 +0100</pubDate>
 <dc:creator>mayur24</dc:creator>
 <guid isPermaLink="false">comment 37888 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827#comment-37887</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Hi,&lt;br /&gt;&lt;br /&gt;I think it&amp;#039;s like all the nokia&amp;#039;s phone : there is already a program that uses the serial port and is listening to AT command. for example on Nokia N70 this program is called &amp;quot;FaxModem&amp;quot; and you have to kill it before doing anything with the serial port...&lt;/div&gt;</description>
 <pubDate>Wed, 07 Mar 2007 16:20:14 +0100</pubDate>
 <dc:creator>wagonli</dc:creator>
 <guid isPermaLink="false">comment 37887 at http://www.newlc.com</guid>
</item>
<item>
 <title>The great Symbian AT command response challenge?</title>
 <link>http://www.newlc.com/topic-17827</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.newlc.com/topic-17827&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.newlc.com/topic-17827#comments</comments>
 <category domain="http://www.newlc.com/forums/local-communications">Local Communications</category>
 <pubDate>Wed, 07 Mar 2007 14:22:30 +0100</pubDate>
 <dc:creator>mayur24</dc:creator>
 <guid isPermaLink="false">17330 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
