<?xml version="1.0" encoding="utf-8"?>
				<!-- generator="e107" -->
				<!-- content type="Forum / topic" -->
				<rss  version="2.0">
				<channel>
				<title>8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes : Forum / topic</title>
				<link>http://www.8051projects.net/</link>
				<description>Learn to make simple microcontroller projects, pic, 8051, avr and arm projects. download 8051 projects, tutorials, libraries, sample codes. join the microcontroller discussion forum and ask doubts regarding electronics. the best source for 8051 over internet.</description>

<language>en-gb</language>
				<copyright><a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank"><img alt="Creative Commons License" width="80" height="15" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/2.5/in/80x15.png" target="_blank" /></a>This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.5/in/" target="_blank">Creative Commons Attribution-Noncommercial 2.5 India License</a>.<a href='http://www.8051projects.net/disclaimer.htm' target='_blank' />Rickey's World Disclaimer</a></copyright>
				<managingEditor>Ajay Bhargav - contact@nospam.com</managingEditor>
				<webMaster>contact@nospam.com</webMaster>
				<pubDate>Mon, 01 Dec 2008 12:30:45 -0800</pubDate>
				<lastBuildDate>Mon, 01 Dec 2008 12:30:45 -0800</lastBuildDate>
				<docs>http://backend.userland.com/rss</docs>
				<generator>e107 (http://e107.org)</generator>
				<ttl>60</ttl>
				<textInput>
				<title>Search</title>
				<description>Search 8051 Microcontroller Projects AVR PIC Projects Tutorials Ebooks Libraries codes</description>
				<name>query</name>
				<link>http://www.8051projects.net/search.php</link>
				</textInput>
						<item>
						<title>problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[hi friends. <br />I am trying to send sms with 8051(89c51rc2)and siemens C55.But I failed.I dont know why.When I try to send sms,cellphone turns off. <br />My schematic and C code here.where is my mistake.I dont know. <br />Also I can send sms by hyperterminal with data cable.And I simulated it by proteus succesfully.And it is project to pass the class.Plz help me firends. <br /><br />///////////////////////////////////////////////////////////////////////// <br /><br />that is C code: <br /><br />/////////////////////////////////////////////////////////////////////////// <br /><br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="c" style="font-family: monospace;"><span style="color: #339933;">#include &lt;t89c51Rx2.h&gt; //</span><br /><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#93;</span>;<br /><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> j;<br /><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> k;<br />bit ok=<span style="color: #cc66cc;">0</span>;<br />bit ok1=<span style="color: #cc66cc;">0</span>;<br /><br /><span style="color: #993333;">void</span> init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #808080; font-style: italic;">/// u put int() here </span><br /><span style="color: #66cc66;">&#123;</span><br />TMOD=0x20;<br />TH1=0xFD;<br />SCON=0x50;<br />TR1=<span style="color: #cc66cc;">1</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><br /><span style="color: #993333;">void</span> sendString<span style="color: #66cc66;">&#40;</span><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> *a<span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br /><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span>*a!=<span style="color: #ff0000;">'<span style="color: #000099; font-weight: bold;">\0</span>'</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />SBUF=*a;<br /><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span>TI==<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;<br />TI=<span style="color: #cc66cc;">0</span>;<br />a++;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #993333;">void</span> sendChar<span style="color: #66cc66;">&#40;</span><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> b<span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />SBUF=b;<br /><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span>TI==<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;<br />TI=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #993333;">unsigned</span> <span style="color: #993333;">char</span> rcv<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br /><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span>RI==<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;<br />RI=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #b1b100;">return</span> SBUF;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #993333;">void</span> checkOK<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br /><span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span>j=<span style="color: #cc66cc;">0</span>;j&lt;<span style="color: #cc66cc;">2</span>;j++<span style="color: #66cc66;">&#41;</span><br />rcvd<span style="color: #66cc66;">&#91;</span>j<span style="color: #66cc66;">&#93;</span>=rcv<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'o'</span>&&rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'k'</span><span style="color: #66cc66;">&#41;</span><br />ok=<span style="color: #cc66cc;">1</span>;<br /><span style="color: #b1b100;">else</span><br />ok=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #993333;">void</span> checkOKe<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />k=rcv<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>k==<span style="color: #ff0000;">'&gt;'</span><span style="color: #66cc66;">&#41;</span><br />ok1=<span style="color: #cc66cc;">1</span>;<br /><span style="color: #b1b100;">else</span><br />ok1=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><br /><span style="color: #993333;">void</span> main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />P2_0=<span style="color: #cc66cc;">0</span>;<br />P2_1=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>P1_0==<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AT&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />checkOK<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>ok==<span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />P2_0=<span style="color: #cc66cc;">1</span>;<br />sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AT+CMGS=19&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />checkOKe<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>ok1==<span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />P2_1=<span style="color: #cc66cc;">1</span>;<br />sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;079109459208003311000C910945664173350000AA05E8329BFD06&quot;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #808080; font-style: italic;">//sms center no:+905429800033, destination number:+905466143753, message:&quot;HELLO&quot; </span><br />sendChar<span style="color: #66cc66;">&#40;</span>0x1A<span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #b1b100;">else</span> P2_1=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #b1b100;">else</span><br />P2_0=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #66cc66;">&#125;</span><br /><span style="color: #66cc66;">&#125;</span></div></div><br /><br /><a href='http://www.8051projects.net/e107_files/public/1208920212_7394_FT0_enson.rar'><img src='http://www.8051projects.net/e107_images/generic/lite/file.png' alt='' style='border:0; vertical-align:middle' /></a> <a href='http://www.8051projects.net/e107_files/public/1208920212_7394_FT0_enson.rar'>enson.rar</a><br /><a class='bbcode' href='http://www.8051projects.net/e107_files/public/1208920212_7394_FT0_new_scmetic.jpg' rel='external'  target='_blank'><img src='http://www.8051projects.net/e107_files/public/1208920212_7394_FT0_new_scmetic_.jpg' class='bbcode' alt='' width='500' height='321'  />	</a><br />]]></description>
<pubDate>Tue, 22 Apr 2008 20:10:13 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[<div class='indent'>sendString("079109459208003311000C910945664173350000AA05E8329BFD06");<br />//sms center no:+905429800033, destination number:+905466143753, message:"HELLO" </div><br /><br />what is this??<br />PDU??<br /><br /><br />doesnot the modem support text mesaging???<br />]]></description>
<author>shyam&lt;shyam@nospam.com&gt;</author>
<pubDate>Tue, 22 Apr 2008 20:25:15 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[yes it is pdu mode.Because my  cellphone is siemens C55 and it supports only pdu mode.<br />I can send sms by hyperterminal with pdu mode.And I simulated it by proteus.Serial communication looks success.But it doesnt work when I do that schematic.Cellphone close itself.I dont know why?<br />]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Tue, 22 Apr 2008 21:10:14 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[my cellphone is siemens c55 <br />and pin configuration is:<br /><br />http://pinouts.ru/CellularPhones-P-W/siemens_c55_pinout.shtml<br /><br />where is DTR?]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 03:01:01 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[problem seems here..<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="c" style="font-family: monospace;"><span style="color: #993333;">void</span> checkOK<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br /><span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span>j=<span style="color: #cc66cc;">0</span>;j&lt;<span style="color: #cc66cc;">2</span>;j++<span style="color: #66cc66;">&#41;</span><br />rcvd<span style="color: #66cc66;">&#91;</span>j<span style="color: #66cc66;">&#93;</span>=rcv<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'o'</span>&&rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'k'</span><span style="color: #66cc66;">&#41;</span><br />ok=<span style="color: #cc66cc;">1</span>;<br /><span style="color: #b1b100;">else</span><br />ok=<span style="color: #cc66cc;">0</span>;<br /><span style="color: #66cc66;">&#125;</span></div></div><br /><br />you are checking for small 'o' and small 'k' whereas phone sends capital 'O' and capital 'K'. so you variable ok is never 1. I hope you got my point.<br /><br />So make the change in program as..<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="c" style="font-family: monospace;"><span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'O'</span>&&rcvd<span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#93;</span>==<span style="color: #ff0000;">'K'</span><span style="color: #66cc66;">&#41;</span><br />&nbsp;</div></div>]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 01:53:44 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[also you dont need to send all those commands...just try to send at+cmgs.and dont check OK.]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:13:52 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[I know.But I wanna check my pdu mode.So I have to know right  communication.And my schematic is right?]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:19:22 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[in schematic......try with DTR pin of mobile = high]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:27:06 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[But I dont understand  DTR pin of mobile=high<br /><br />how it will be.It necessary.And how?]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:39:05 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[this schematic is right too?<br /><a class='bbcode' href='http://www.8051projects.net/e107_files/public/1208943818_7394_FT8860_arayuz_with_datacable.gif' rel='external'  target='_blank'><img src='http://www.8051projects.net/e107_files/public/1208943818_7394_FT8860_arayuz_with_datacable_.gif' class='bbcode' alt='' width='500' height='279'  />	</a><br />]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:43:38 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[do you know pin configuration of your mobile connector??you are not using datacable right?]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:43:43 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[I am not using data cable.And ı know siemens c55 pin configuration.]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 02:54:27 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[as you said u are connecting it to c55 directly then there is no need of DTR.. just direct connection with tx, rx and gnd.<br /><br />Did you try what i said? did you make changes in program?]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 03:41:43 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[ok.I changed my program.You said me change 'O' and 'K' replaca 'o' and 'k'.I did but I havent tried yet.I will try  soon.Thnks for everything]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 06:07:21 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[I do not see any pull up resistor in your schematic.<br />The 8051 port pin can sink 1.6mA (3.2mA for port 0) and source 60uA.<br /><br />When used as outputs, all port pins will drive the state to which the associated SFR latch bit has been set.<br />When a 0 is written to a bit in port the pin is pulled low (0).<br />When a 1 is written to a bit in port the pin goes into a high impedance state.<br />Only the internal (weak or medium) pull the pin up. <br /><br />http://www.freewebs.com/maheshwankhede/ports.html<br /><br />Atmel at89c51rc2 doc4180.pdf<br />Pag.13 Port type<br />Pag.107 Electrical characteristics<br /><br />Regards]]></description>
<author>GioppY&lt;gia.ma.fra@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 08:19:21 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[You have to buffer, or add a pull up resistor to P3.1.<br />Also led design is wrong. <br />8051 family has open drain output stage with a weak pull up. <br />The cellphone rx pin never see a high level.<br />Regards]]></description>
<author>GioppY&lt;gia.ma.fra@nospam.com&gt;</author>
<pubDate>Wed, 23 Apr 2008 07:47:47 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[hi gioppy.<br />I didnt understand you.<br />You said "add a pull up resistor to P3.1"<br />I have done  already it.After that "led desing is wrong"how?<br /><br />8051 family has open drain output stage with a weak pull up. <br />The cellphone rx pin never see a high level.<br /><br />can you explain them more?<br />]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 03:03:23 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[did you test what i said? <img src='http://www.8051projects.net/e107_images/emotes/yahoo/17.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 08:17:08 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[thnks gioppy.Can you make a right schematic for my project .Please...]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 19:28:48 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[In your schematic just add a 10k resistor between Vcc and P3.1......that's your pullup.<br />Like Gioppy suggested your LED's are sourcing current from the 8051 which is bad...they should be made to sink current into the 8051.Look at the attached ckt..<br /><br />And have you tried out Ajay's suggestion?Please confirm..<br /><br /><img src='http://www.8051projects.net/e107_files/public/1209098774_5870_FT8860_humidity.gif' class='bbcode' alt='' width='293' height='139'  />]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Thu, 24 Apr 2008 21:46:42 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[ajay I have tried your suggestion.But I am failed.Cell phone doesnt give me anything.Where is my mistake plsease help me]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Wed, 07 May 2008 18:52:55 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[I gave you two suggestions which one you tried?<br />replacing ok with OK?<br /><br />try abbas's suggestion too.. no need to wait for OK.. just try sending AT commands.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 17:05:21 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[problem can be in micro-mobile connection.can't say more about it <img src='http://www.8051projects.net/e107_images/emotes/yahoo/2.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 06:14:36 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[my schematic and my codes are correct?]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 06:16:02 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[try to send only 1 command..like atd , tell about response you get]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 06:23:13 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[Have you tried with the external pullup?]]></description>
<author>sashijoseph&lt;sashijoseph@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 13:42:34 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[edit your main for a while and replace it with this<br /><div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="c" style="font-family: monospace;"><span style="color: #993333;">void</span> main<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br /><span style="color: #66cc66;">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; P2_0=<span style="color: #cc66cc;">0</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; P2_1=<span style="color: #cc66cc;">0</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>P1_0==<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AT&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;ATE0&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P2_0=<span style="color: #cc66cc;">1</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AT+CMGS=19&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P2_1=<span style="color: #cc66cc;">1</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;079109459208003311000C910945664173350000AA05E8329BFD06&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">//sms center no:+905429800033, destination number:+905466143753, message:&quot;HELLO&quot;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar<span style="color: #66cc66;">&#40;</span>0x1A<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br /><span style="color: #66cc66;">&#125;</span><br />&nbsp;</div></div><br /><br />comment the function which you are not using...<br />like checkOK and all.. then try on controller again.<br /><br />waiting for response.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 17:34:29 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[ajay I havent anytime to do it.Have you any projects that is finished   about it.please help me.I have many class too.I havent more times<br />please help me.]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 17:10:51 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[just I will change my main function?and but in main functiom havent delay when transmitting at commands<br /><br />]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 17:42:41 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[I didnt understand external puul-up.I know just need when we use P0 port.we have to use external pull up.for P2 port doesnt need external pull up ,doesnt <br />it?]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 18:01:31 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[yeah put delay after each at command.]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Fri, 09 May 2008 14:46:06 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[you can put delay after this command<br /> <div class='code_box'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="c" style="font-family: monospace;"><br />&nbsp; &nbsp; &nbsp;sendString<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AT+CMGS=19&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp;sendChar<span style="color: #66cc66;">&#40;</span>0x0D<span style="color: #66cc66;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp;msdelay<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">200</span><span style="color: #66cc66;">&#41;</span>;<br />&nbsp;</div></div>]]></description>
<author>abbas1707&lt;abbas@nospam.com&gt;</author>
<pubDate>Thu, 08 May 2008 20:37:09 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[ok thnks friends.I have sent sms by 8051.I did it.My mistake is connection from 8051 to GSM.<br />Thnks a lot....]]></description>
<author>cllunlu&lt;celal.unlu@nospam.com&gt;</author>
<pubDate>Fri, 16 May 2008 18:22:36 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
						<item>
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
<link>http://www.8051projects.net/forum-t8860.html</link>
<description><![CDATA[<img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  good <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />  glad it worked...]]></description>
<author>Ajay&lt;contact@nospam.com&gt;</author>
<pubDate>Fri, 16 May 2008 23:17:49 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t8860.html</guid>
</item>
				</channel>
				</rss>