<?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 22:37:05 -0800</pubDate>
				<lastBuildDate>Thu, 08 Jan 2009 22:37:05 -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>question on PC BASE DATA LOGGER</title>
<link>http://www.8051projects.net/forum-t10537.html</link>
<description><![CDATA[i have few questions on the PC base data logger project availabe at the downloads section.<br />1. inside the asm coding i found that got part coding of DS1307 but i dont found that component inside the circuit.<br />2. which part of the coding is for the serial port interfacing? i cant find it<br /><br />thanks]]></description>
<pubDate>Wed, 02 Jul 2008 07:19:57 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10537.html</guid>
</item>
						<item>
						<title>Re: question on PC BASE DATA LOGGER</title>
<link>http://www.8051projects.net/forum-t10537.html</link>
<description><![CDATA[hi mic,<br />i checked on the code and found that ur second post regarding the serial port interfacing (UART) is indeed true.Also i think the author has used some of the i2c routines of DS1307 for interfacing the temperature sensor (which also followis the i2c interfacing logic.<br />I would recommend u instead to follow the project by abbas bhai on the same topic (only  much better than that  <img src='http://www.8051projects.net/e107_images/emotes/yahoo/3.gif' alt='' style='vertical-align:middle; border:0' /> )  with the following topic "data acquisition using 8051". Here is the link:<br />http://www.8051projects.net/downloads196.html]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Wed, 02 Jul 2008 20:14:29 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10537.html</guid>
</item>
						<item>
						<title>Re: question on PC BASE DATA LOGGER</title>
<link>http://www.8051projects.net/forum-t10537.html</link>
<description><![CDATA[what is i2c interfacing logic? what is ur opinion on the coding of DS1307? will the circuit functioning without the DS1307 part coding? or the author forgot publish circuit diagram for DS1307 part?<br /><br />for the UART part, is that directly add the following code will be ok?<br /><br />Serial_Init:<br />        <br />        mov TMOD,#20H<br />        mov SCON,#50H<br />        mov TH1,#0FDH<br />        mov TL1,#0FDH<br />        setb TR1<br />        ret<br /><br />if add, this UART code need to add to which section of the coding ?<br />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Wed, 02 Jul 2008 23:38:41 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10537.html</guid>
</item>
						<item>
						<title>Re: question on PC BASE DATA LOGGER</title>
<link>http://www.8051projects.net/forum-t10537.html</link>
<description><![CDATA[hi mic,<br />well, i seemed to miss out  that the serial communication is in fact present in the code . check these part of the code by theauthor:<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 />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">TH1</span>,#<span style="color: #ff0000;">0FDH</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">SCON</span>,#50H<br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">SETB</span> TR1<br />&nbsp;</div></div> <br />this does the initialisation of the uart required as u have also posted earlierusing timer 1 to generate the baud rate.<br />take care that the TH1 value has to be selected depending upon the baud rate required and the crystal frquency.<br /><br />Now, the actual transmitting of data is done in this part:<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 />TRANS:<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">MOV</span> <span style="color: #46aa03; font-weight:bold;">SBUF</span>,<span style="color: #46aa03; font-weight:bold;">A</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">JNB</span> TI,$<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">CLR</span> TI<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00007f; font-weight:bold;">RET</span>&nbsp; &nbsp; &nbsp;<br /><br />&nbsp;</div></div> <br /><br />note that the instruction mov sbuf,a initiates the transmission of data transferred to the SBUF register and the TI bit is set when transmission is complete.<br />hope u got the logic now.<br /><br /><br />As for the DS1307 part, as mentioned earlier, the author has only used the i2c communication routines of the ds1307 and not the DS1307 itself. actually this is because the temperature sensor DS1621 used in the circuit also supports i2c protocol for communication. So,No, u need not connect the DS1307 to the circuit.<br />]]></description>
<author>contact@nospam.com (Ajay Bhargav)</author>
<pubDate>Thu, 03 Jul 2008 20:18:59 -0700</pubDate>
<guid isPermaLink="true">http://www.8051projects.net/forum-t10537.html</guid>
</item>
				</channel>
				</rss>