<?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>2008 Rickey's World</copyright>
				<managingEditor>contact@nospam.com (Ajay Bhargav)</managingEditor>
				<webMaster>contact@nospam.com (Ajay Bhargav)</webMaster>
				<pubDate>Thu, 08 Jan 2009 21:02:16 -0800</pubDate>
				<lastBuildDate>Thu, 08 Jan 2009 21:02:16 -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>doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[i am  trying to implement a real time clock using an 16x2 LCD microcontroller AT89C5131 in our project.<br />we want only the clock part without the alarm and i removed some part of the clock.asm program and tried but its not working.our lcd is working properly.we are trying to display date,time and day only<br />i want to know if the code given below will work<br />additional change is i have given a small delay before actual starting.<br /><br /><div class='indent'> Code removed! </div>]]></description>
<pubDate>Sun, 29 Apr 2007 07:23:43 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[I removed the code from the first post, coz no more needed.<br />So regarding the information about the flags i used.. i am gonna explain then one by one.. all the defination in the code.<br /><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;"><br /><span style="color: #00007f; font-weight:bold;">sec</span> <span style="color: #0000ff;">equ</span> 30h &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;second register *needed*</span><br />to store RTC seconds<br />min <span style="color: #0000ff;">equ</span> 31h &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;minutes register *needed*</span><br />to store mins<br />hour <span style="color: #0000ff;">equ</span> 32h &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;hour register *needed*</span><br />to store hr<br />days <span style="color: #0000ff;">equ</span> 33h &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;days register *needed*</span><br />to store days<br />date <span style="color: #0000ff;">equ</span> 34h &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;date register *needed*</span><br />to store date<br />month <span style="color: #0000ff;">equ</span> 35h &nbsp; <span style="color: #adadad; font-style: italic;">;month register *needed*</span><br />to store month<br />year <span style="color: #0000ff;">equ</span> 36h &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;year register *needed*</span><br />to store year<br />alarm <span style="color: #0000ff;">equ</span> 37h &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;alarm register *needed*</span><br />it is written as alarm but it is used <span style="color: #0000ff;">for</span> SQWT register of<br />your RTC. so is also needed, <span style="color: #0000ff;">if</span> you want change the <span style="color: #0000ff;">name</span> to<br />sqwt <span style="color: #00007f; font-weight:bold;">or</span> something u want.<br />sig <span style="color: #0000ff;">equ</span> 38h &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;signature for data checking in RTC RAM *needed*</span><br />needed <span style="color: #0000ff;">for</span> checking of valid ram content of RTC<br />ahour <span style="color: #0000ff;">equ</span> 39h &nbsp; <span style="color: #adadad; font-style: italic;">;alarm hour register</span><br /><span style="color: #0000ff;">for</span> alarm only can be removed<br />amin <span style="color: #0000ff;">equ</span> 3Ah &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;alarm minute register</span><br /><span style="color: #0000ff;">for</span> alarm only can be removed<br />sda <span style="color: #0000ff;">equ</span> P1<span style="color: #ff0000;">.1</span> &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;Serial data pin *needed*</span><br />SDA pin <span style="color: #0000ff;">for</span> I2C<br />scl <span style="color: #0000ff;">equ</span> P1<span style="color: #ff0000;">.0</span> &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;Serial clock pin *needed*</span><br />SCL pin <span style="color: #0000ff;">for</span> I2C communication<br />rw <span style="color: #0000ff;">equ</span> p3<span style="color: #ff0000;">.6</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;read write pin of LCD</span><br /><span style="color: #0000ff;">for</span> LCD<br />en <span style="color: #0000ff;">equ</span> p3<span style="color: #ff0000;">.5</span> &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;enable pin of LCD</span><br /><span style="color: #0000ff;">for</span> LCD<br />rs <span style="color: #0000ff;">equ</span> p3<span style="color: #ff0000;">.7</span> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;register select pin of LCD</span><br /><span style="color: #0000ff;">for</span> LCD<br />alarm_key <span style="color: #0000ff;">equ</span> p3<span style="color: #ff0000;">.3</span> &nbsp; <span style="color: #adadad; font-style: italic;">;Alarm set key</span><br />to <span style="color: #00007f; font-weight:bold;">set</span> alarm.. <span style="color: #00007f; font-weight:bold;">not</span> needed.. so one key can be removed. <span style="color: #00007f; font-weight:bold;">and</span><br />also the subroutine <span style="color: #0000ff;">at</span> location 0x13H<br />time_key <span style="color: #0000ff;">equ</span> p3<span style="color: #ff0000;">.2</span> &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;Time ser key *needed*</span><br />to <span style="color: #00007f; font-weight:bold;">set</span> time of clock<br />increment <span style="color: #0000ff;">equ</span> p1<span style="color: #ff0000;">.3</span> &nbsp; <span style="color: #adadad; font-style: italic;">;Increment value *needed*</span><br />to <span style="color: #00007f; font-weight:bold;">set</span> time <span style="color: #00007f; font-weight:bold;">and</span> alarm, but <span style="color: #0000ff;">for</span> u it will only time<br />decrement <span style="color: #0000ff;">equ</span> p1<span style="color: #ff0000;">.2</span> &nbsp; <span style="color: #adadad; font-style: italic;">;Decrement Value *needed*</span><br />to <span style="color: #00007f; font-weight:bold;">set</span> time <span style="color: #00007f; font-weight:bold;">and</span> alarm, used to reduce the value<br />alarm_port <span style="color: #0000ff;">equ</span> p1<span style="color: #ff0000;">.4</span> &nbsp; <span style="color: #adadad; font-style: italic;">;Alarm Buzzer port</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />alarm_flag <span style="color: #0000ff;">equ</span> 20h &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;flag for alarm</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />time_flag <span style="color: #0000ff;">equ</span> 21h &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;flag for time *needed*</span><br />when u press time <span style="color: #00007f; font-weight:bold;">set</span> key <span style="color: #0000ff;">this</span> flag is <span style="color: #00007f; font-weight:bold;">set</span>.<br />ampm_flag <span style="color: #0000ff;">equ</span> 22h &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;am/pm flag *needed*</span><br />used <span style="color: #00007f; font-weight:bold;">in</span> display am/pm<br />alarm_on <span style="color: #0000ff;">equ</span> 23h &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;Alarm on flag</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />alarm_off <span style="color: #0000ff;">equ</span> 24h &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;alarm off flag</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />alarm_ring <span style="color: #0000ff;">equ</span> 25h &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;alarm ring flag</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />alarm_hrs <span style="color: #0000ff;">equ</span> 58h &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;Alarm hour register</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />alarm_min <span style="color: #0000ff;">equ</span> 59h &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;Alarm Minutes register</span><br /><span style="color: #00007f; font-weight:bold;">not</span> needed<br />alarm_chk_hour <span style="color: #0000ff;">equ</span> 5Ah <span style="color: #adadad; font-style: italic;">;Alarm hour check register</span><br /><span style="color: #00007f; font-weight:bold;">not</span> needed<br />alarm_chk_min <span style="color: #0000ff;">equ</span> 5Bh &nbsp;<span style="color: #adadad; font-style: italic;">;Alarm min check register</span><br /><span style="color: #00007f; font-weight:bold;">not</span> required<br />ampm <span style="color: #0000ff;">equ</span> 61h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;AM/PM register *needed*</span><br />needed<br />BELL <span style="color: #0000ff;">equ</span> 0h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;Bell icon *needed*</span><br />SPEAKER_OFF <span style="color: #0000ff;">equ</span> 1h &nbsp;<span style="color: #adadad; font-style: italic;">;speaker off icon *needed*</span><br />SPEAKER_ON <span style="color: #0000ff;">equ</span> 2h &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;speaker on icon *needed*</span><br />CLOCK <span style="color: #0000ff;">equ</span> 3h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;clock icon *needed*</span><br />OK <span style="color: #0000ff;">equ</span> 4h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #adadad; font-style: italic;">;ok icon *needed*</span><br />HEART <span style="color: #0000ff;">equ</span> 5h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;heart icon *needed*</span><br />MUSIC <span style="color: #0000ff;">equ</span> 6h &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #adadad; font-style: italic;">;music icon *needed*</span></div></div><br />U can see what things are needed, what variables or flags<br />needed. Please carefully edit the code now.]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Mon, 30 Apr 2007 05:32:18 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[actually you did not edited the code properly.<br />you removed many things which were necessary for the clock. I am giving you one example...<br />In your code above there is a mistake..<br /><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;">done:<br /><span style="color: #00007f; font-weight:bold;">mov</span> <span style="color: #00007f; font-weight:bold;">sec</span>,#<span style="color: #ff0000;">00h</span> <span style="color: #adadad; font-style: italic;">;For more information about the RTC DS1307</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> min,#0h <span style="color: #adadad; font-style: italic;">;Please refer to the datasheet</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> hour,#51h <span style="color: #adadad; font-style: italic;">;21h for 24 hour format</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> days,#<span style="color: #ff0000;">01h</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> date,#1h<br /><span style="color: #00007f; font-weight:bold;">mov</span> month,#1h<br /><span style="color: #00007f; font-weight:bold;">mov</span> year,#<span style="color: #ff0000;">05h</span><br /><span style="color: #adadad; font-style: italic;">;;;LINE MISSING;;;</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> sig,#<span style="color: #7f007f;">'~'</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> <span style="color: #46aa03; font-weight:bold;">r6</span>,#<span style="color: #ff0000;">07h</span><br /><span style="color: #00007f; font-weight:bold;">mov</span> <span style="color: #46aa03; font-weight:bold;">r0</span>,#30h<br /><span style="color: #00007f; font-weight:bold;">mov</span> <span style="color: #46aa03; font-weight:bold;">r1</span>,#<span style="color: #ff0000;">00h</span><br /><span style="color: #00007f; font-weight:bold;">acall</span> rtc_ini <span style="color: #adadad; font-style: italic;">;initializing RTC if required</span></div></div><br />there is a line missing.. i mentioned where...<br />you missed..<br /><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;"><span style="color: #00007f; font-weight:bold;">mov</span> alarm,#<span style="color: #ff0000;">0</span></div></div><br />the reason is.. if you take a look at the datasheet of DS1307 then register #7 is SQWT register so.. as we are not using it, so we have to make it 0. The reason i made kept its name as alarm was, i was first driving the alarm from internal square wave generator but then i changed it. if you want you can keep the old name. or change the alarm to sqwt for your knowledge.<br />so make these changes in above code..<br />put the missing line there and change this<br /><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;"><span style="color: #00007f; font-weight:bold;">mov</span> <span style="color: #46aa03; font-weight:bold;">r6</span>,#<span style="color: #ff0000;">08h</span></div></div><br />make it 08H u using 07H<br /><br />and i do not understand why you are putting this code<br /><div class='code_asm'>CODE:</div><div class='code_highlight' style='unicode-bidi: embed; direction: ltr'><div class="asm" style="font-family: monospace;"><span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">R7</span>,#<span style="color: #ff0000;">0FFH</span><br />BACK1:<span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">TMOD</span>,#<span style="color: #ff0000;">01H</span><br /><span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">TL0</span>,#<span style="color: #ff0000;">00H</span><br /><span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">TH0</span>,#<span style="color: #ff0000;">00H</span><br /><span style="color: #00007f; font-weight:bold;">SETB</span> TR0<br />HER:<span style="color: #00007f; font-weight:bold;">JNB</span> TF0,HER<br /><span style="color: #00007f; font-weight:bold;">CLR</span> TF0<br /><span style="color: #00007f; font-weight:bold;">CLR</span> TR0<br /><span style="color: #00007f; font-weight:bold;">DJNZ</span> <span style="color: #46aa03; font-weight:bold;">R7</span>,BACK1</div></div><br />Please explain the use of this. and check what all things are missing in the code. i think you must start reviewing the original code again and rewrite the original one according to your need.]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Sun, 29 Apr 2007 12:29:48 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[thanks for the advice...<br />actually had a doubt in understanding the code.<br />wanted to know why exactly time flag and alarmflag used...and also the increament and decreament flag.<br /> can we do without using switches.i.e is it for setting time in clock or setting time  for alarm...]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Mon, 30 Apr 2007 04:24:14 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[Well i need help and contribution from other forum members too.. <img src='http://www.8051projects.net/e107_images/emotes/yahoo/4.gif' alt='' style='vertical-align:middle; border:0' />  not just me.. ok?]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Sat, 05 May 2007 23:56:12 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[great help! keep it up Rickey!]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Fri, 04 May 2007 11:27:44 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[In your code , there's a label i dont understand .it's the<br />algorthm to read data from ds1307<br /><br />recv:						;Recieving data from I2C bus<br />	mov        r7,#08<br />back2:<br />	setb       sda<br />	setb       scl<br />	lcall      delay       ;nop nop nop;<br />	mov        c,sda<br />	rlc        a<br />	clr        scl<br />	lcall      delay       ;nop nop nop;<br />	djnz       r7,back2<br />	setb       sda<br />	clr        scl<br />	lcall      delay       ;nop nop nop;<br />	clr        sda<br />	setb       scl<br />	lcall      delay       ;nop nop nop;<br />	clr        scl<br />	lcall      delay       ;nop nop nop<br />	mov        @r0,a<br />	inc        r0<br />	ret<br /><br />SDA=1 => C=1 , then A =11111111 after 8 times shift left ??????????<br />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Tue, 08 May 2007 11:50:50 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[<div class='quote_top'>NiceThou wrote ...</div><div class='quote'><br />In your code , there's a label i dont understand .it's the<br />algorthm to read data from ds1307<br /><br />recv:						;Recieving data from I2C bus<br />	mov        r7,#08<br />back2:<br />	setb       sda<br />	setb       scl<br />	lcall      delay       ;nop nop nop;<br />	mov        c,sda<br />	rlc        a<br />	clr        scl<br />	lcall      delay       ;nop nop nop;<br />	djnz       r7,back2<br />	setb       sda<br />	clr        scl<br />	lcall      delay       ;nop nop nop;<br />	clr        sda<br />	setb       scl<br />	lcall      delay       ;nop nop nop;<br />	clr        scl<br />	lcall      delay       ;nop nop nop<br />	mov        @r0,a<br />	inc        r0<br />	ret<br /><br />SDA=1 => C=1 , then A =11111111 after 8 times shift left ??????????<br /><br /></div><br />I thought everything was mentioned clearly...<br />recv:      ;Receiving data from I2C bus<br />it is to receive data from I2C bus... <br />and yes, if u keep SDA = 1 so while reading C will also be 1.<br />but everytime the clock changes, the new data comes on the SDA pins. so next can be 0 or 1.<br />if whole data is 1, then u get a = 11111111 <img src='http://www.8051projects.net/e107_images/emotes/yahoo/1.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Tue, 08 May 2007 12:09:42 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[you're welcome <img src='http://www.8051projects.net/e107_images/emotes/yahoo/3.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Wed, 09 May 2007 12:02:10 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[Thankz u .Now i understand <img src='http://www.8051projects.net/e107_images/emotes/yahoo/4.gif' alt='' style='vertical-align:middle; border:0' />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Wed, 09 May 2007 10:19:52 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[can provide the sample c programming about this project??<br />actually I use the DS1302 real time clock do this  project??<br /> can provide the sample c programming ?<br />thanks]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Thu, 26 Jun 2008 22:43:31 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
						<item>
						<title>Re: doubt in rtc</title>
<link>http://www.8051projects.net/forum-t760.html</link>
<description><![CDATA[I dont that enough time to do that.. I am really sorry. I highly insist you to please start it on your own.. read the datasheet and check the timing diagram on how to start with reading and writing. Will help you in all respect.<br />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Mon, 30 Jun 2008 06:25:34 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t760.html</guid>
</item>
				</channel>
				</rss>