<?xml version="1.0" encoding="utf-8" ?>
				<!-- generator="e107" -->
				<!-- content type="Forum / topic" -->
				<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
				<channel rdf:about="http://www.8051projects.net/">
				<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>
				<dc:language>en-gb</dc:language>
				<dc:date>2008-12-01T23:55:21-08:00</dc:date>
				<dc:creator>contact@nospam.com</dc:creator>
				<admin:generatorAgent rdf:resource="http://e107.org" />
				<admin:errorReportsTo rdf:resource="mailto:contact@nospam.com" />
				<sy:updatePeriod>hourly</sy:updatePeriod>
				<sy:updateFrequency>1</sy:updateFrequency>
				<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
				<items>
				<rdf:Seq>
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
						<rdf:li rdf:resource="http://www.8051projects.net/forum-t8860.html" />
				</rdf:Seq>
				</items>
				</channel>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator></dc:creator>
						<dc:subject></dc:subject>
						<description>hi friends. 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. My schematic and C code here.where is my mistake.I dont know. 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. ///////////////////////////////////////////////////////////////////////// that is C code: /////////////////////////////////////////////////////////////////////////// CODE:#include &lt;t89c51Rx2.h> //<br />unsigned char rcvd&#91;2&#93;;<br />unsigned char j;<br />unsigned char k;<br />bit ok=0;<br />bit ok1=0;<br /><br />void init&#40;&#41; /// u put int() here <br />&#123;<br />TMOD=0x20;<br />TH1=0xFD;<br />SCON=0x50;<br />TR1=1;<br />&#125;<br /><br />void sendString&#40;unsigned char *a&#41;<br />&#123;<br />while&#40;*a!='\0'&#41;<br />&#123;<br />SBUF=*a;<br />while&#40;TI==0&#41;;<br />TI=0;<br />a++;<br />&#125;<br />&#125;<br />void sendChar&#40;unsigned char b&#41;<br />&#123;<br />SBUF=b;<br />while&#40;TI==0&#41;;<br />TI=0;<br />&#125;<br />unsigned char rcv&#40;&#41;<br />&#123;<br />while&#40;RI==0&#41;;<br />RI=0;<br />return SBUF;<br />&#125;<br />void checkOK&#40;&#41;<br />&#123;<br />for&#40;j=0;j&lt;2;j++&#41;<br />rcvd&#91;j&#93;=rcv&#40;&#41;;<br />if&#40;rcvd&#91;0&#93;=='o'&&rcvd&#91;1&#93;=='k'&#41;<br />ok=1;<br />else<br />ok=0;<br />&#125;<br />void checkOKe&#40;&#41;<br />&#123;<br />k=rcv&#40;&#41;;<br />if&#40;k=='>'&#41;<br />ok1=1;<br />else<br />ok1=0;<br />&#125;<br /><br />void main&#40;&#41;<br />&#123;<br />P2_0=0;<br />P2_1=0;<br />while&#40;1&#41;<br />&#123;<br />if&#40;P1_0==0&#41;<br />&#123;<br />init&#40;&#41;;<br />sendString&#40;"AT"&#41;;<br />sendChar&#40;0x0D&#41;;<br />checkOK&#40;&#41;;<br />if&#40;ok==1&#41;<br />&#123;<br />P2_0=1;<br />sendString&#40;"AT+CMGS=19"&#41;;<br />sendChar&#40;0x0D&#41;;<br />checkOKe&#40;&#41;;<br />if&#40;ok1==1&#41;<br />&#123;<br />P2_1=1;<br />sendString&#40;"079109459208003311000C910945664173350000AA05E8329BFD06"&#41;;<br />//sms center no:+905429800033, destination number:+905466143753, message:"HELLO" <br />sendChar&#40;0x1A&#41;;<br />&#125;<br />else P2_1=0;<br />&#125;<br />else<br />P2_0=0;<br />&#125;<br />&#125;<br />&#125; enson.rar</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>shyam</dc:creator>
						<dc:subject></dc:subject>
						<description>sendString("079109459208003311000C910945664173350000AA05E8329BFD06");//sms center no:+905429800033, destination number:+905466143753, message:"HELLO" what is this??PDU??doesnot the modem support text mesaging???</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>yes it is pdu mode.Because my  cellphone is siemens C55 and it supports only pdu mode.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?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>my cellphone is siemens c55 and pin configuration is:http://pinouts.ru/CellularPhones-P-W/siemens_c55_pinout.shtmlwhere is DTR?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>problem seems here..CODE:void checkOK&#40;&#41;<br />&#123;<br />for&#40;j=0;j&lt;2;j++&#41;<br />rcvd&#91;j&#93;=rcv&#40;&#41;;<br />if&#40;rcvd&#91;0&#93;=='o'&&rcvd&#91;1&#93;=='k'&#41;<br />ok=1;<br />else<br />ok=0;<br />&#125;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.So make the change in program as..CODE:if&#40;rcvd&#91;0&#93;=='O'&&rcvd&#91;1&#93;=='K'&#41;<br />&nbsp;</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>also you dont need to send all those commands...just try to send at+cmgs.and dont check OK.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>I know.But I wanna check my pdu mode.So I have to know right  communication.And my schematic is right?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>in schematic......try with DTR pin of mobile = high</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>But I dont understand  DTR pin of mobile=highhow it will be.It necessary.And how?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>this schematic is right too?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>do you know pin configuration of your mobile connector??you are not using datacable right?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>I am not using data cable.And ı know siemens c55 pin configuration.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>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.Did you try what i said? did you make changes in program?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>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>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>GioppY</dc:creator>
						<dc:subject></dc:subject>
						<description>I do not see any pull up resistor in your schematic.The 8051 port pin can sink 1.6mA (3.2mA for port 0) and source 60uA.When used as outputs, all port pins will drive the state to which the associated SFR latch bit has been set.When a 0 is written to a bit in port the pin is pulled low (0).When a 1 is written to a bit in port the pin goes into a high impedance state.Only the internal (weak or medium) pull the pin up. http://www.freewebs.com/maheshwankhede/ports.htmlAtmel at89c51rc2 doc4180.pdfPag.13 Port typePag.107 Electrical characteristicsRegards</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>GioppY</dc:creator>
						<dc:subject></dc:subject>
						<description>You have to buffer, or add a pull up resistor to P3.1.Also led design is wrong. 8051 family has open drain output stage with a weak pull up. The cellphone rx pin never see a high level.Regards</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>hi gioppy.I didnt understand you.You said "add a pull up resistor to P3.1"I have done  already it.After that "led desing is wrong"how?8051 family has open drain output stage with a weak pull up. The cellphone rx pin never see a high level.can you explain them more?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>did you test what i said?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>thnks gioppy.Can you make a right schematic for my project .Please...</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>sashijoseph</dc:creator>
						<dc:subject></dc:subject>
						<description>In your schematic just add a 10k resistor between Vcc and P3.1......that's your pullup.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..And have you tried out Ajay's suggestion?Please confirm..</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>ajay I have tried your suggestion.But I am failed.Cell phone doesnt give me anything.Where is my mistake plsease help me</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>I gave you two suggestions which one you tried?replacing ok with OK?try abbas's suggestion too.. no need to wait for OK.. just try sending AT commands.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>problem can be in micro-mobile connection.can't say more about it</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>my schematic and my codes are correct?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>try to send only 1 command..like atd , tell about response you get</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>sashijoseph</dc:creator>
						<dc:subject></dc:subject>
						<description>Have you tried with the external pullup?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>edit your main for a while and replace it with thisCODE:void main&#40;&#41;<br />&#123;<br />&nbsp; &nbsp; &nbsp; &nbsp; P2_0=0;<br />&nbsp; &nbsp; &nbsp; &nbsp; P2_1=0;<br />&nbsp; &nbsp; &nbsp; &nbsp; while&#40;1&#41; &#123;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if&#40;P1_0==0&#41; &#123;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; init&#40;&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString&#40;"AT"&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar&#40;0x0D&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString&#40;"ATE0"&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar&#40;0x0D&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P2_0=1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString&#40;"AT+CMGS=19"&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar&#40;0x0D&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; P2_1=1;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendString&#40;"079109459208003311000C910945664173350000AA05E8329BFD06"&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //sms center no:+905429800033, destination number:+905466143753, message:"HELLO"<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar&#40;0x1A&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sendChar&#40;0x0D&#41;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#125;<br />&nbsp; &nbsp; &nbsp; &nbsp; &#125;<br />&#125;<br />&nbsp;comment the function which you are not using...like checkOK and all.. then try on controller again.waiting for response.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>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 timesplease help me.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>just I will change my main function?and but in main functiom havent delay when transmitting at commands</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>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 it?</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>yeah put delay after each at command.</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>abbas1707</dc:creator>
						<dc:subject></dc:subject>
						<description>you can put delay after this command CODE:<br />&nbsp; &nbsp; &nbsp;sendString&#40;"AT+CMGS=19"&#41;;<br />&nbsp; &nbsp; &nbsp;sendChar&#40;0x0D&#41;;<br />&nbsp; &nbsp; &nbsp;msdelay&#40;200&#41;;<br />&nbsp;</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>cllunlu</dc:creator>
						<dc:subject></dc:subject>
						<description>ok thnks friends.I have sent sms by 8051.I did it.My mistake is connection from 8051 to GSM.Thnks a lot....</description>
						</item>
						<item rdf:about="http://www.8051projects.net/forum-t8860.html">
						<title>Re: problem is sending sms with 8051 by siemens C55</title>
						<link>http://www.8051projects.net/forum-t8860.html</link>
						<dc:date>2008-12-01T23:55:21-08:00</dc:date>
						<dc:creator>Ajay</dc:creator>
						<dc:subject></dc:subject>
						<description>good   glad it worked...</description>
						</item>
				</rdf:RDF>