<?xml version="1.0" encoding="gb2312"?><rss version="2.0"><channel><title>njf的博客</title><link></link><description></description><language>zh-cn</language><generator>Goodspeed Rss</generator><ttl>20</ttl><pubDate>Sat, 05 Jul 2008 06:48:58 GMT</pubDate><category></category><copyright></copyright><docs></docs><item><title>232串口取电一例</title><pubDate>Tue, 23 Oct 2007 17:36:09 GMT</pubDate><link>http://blog.ednchina.com/njf/54377/message.aspx</link><description></description><comments></comments><guid>http://blog.ednchina.com/njf/54377/message.aspx</guid><category></category><author>njf</author></item><item><title>小功率单电源变双电源(NE555)</title><pubDate>Sun, 21 Oct 2007 19:38:05 GMT</pubDate><link>http://blog.ednchina.com/njf/53969/message.aspx</link><description></description><comments></comments><guid>http://blog.ednchina.com/njf/53969/message.aspx</guid><category></category><author>njf</author></item><item><title>+5V输入+30V输出升压电路</title><pubDate>Sun, 21 Oct 2007 19:31:18 GMT</pubDate><link>http://blog.ednchina.com/njf/53968/message.aspx</link><description></description><comments></comments><guid>http://blog.ednchina.com/njf/53968/message.aspx</guid><category></category><author>njf</author></item><item><title>232电路图二则</title><pubDate>Fri, 05 Oct 2007 16:46:09 GMT</pubDate><link>http://blog.ednchina.com/njf/50232/message.aspx</link><description>一。二。 </description><comments></comments><guid>http://blog.ednchina.com/njf/50232/message.aspx</guid><category></category><author>njf</author></item><item><title>国外制作-7107电压表电路</title><pubDate>Tue, 02 Oct 2007 15:25:43 GMT</pubDate><link>http://blog.ednchina.com/njf/50018/message.aspx</link><description>制作一制作二。 </description><comments></comments><guid>http://blog.ednchina.com/njf/50018/message.aspx</guid><category></category><author>njf</author></item><item><title>实用的LM317工具软件</title><pubDate>Wed, 19 Sep 2007 17:20:38 GMT</pubDate><link>http://blog.ednchina.com/njf/47845/message.aspx</link><description></description><comments></comments><guid>http://blog.ednchina.com/njf/47845/message.aspx</guid><category></category><author>njf</author></item><item><title>SMD 封裝尺寸</title><pubDate>Tue, 18 Sep 2007 19:13:25 GMT</pubDate><link>http://blog.ednchina.com/njf/47554/message.aspx</link><description>英制: 1206 长:0.12英吋 宽:0.06英吋 0805 长:0.08英吋 宽:0.05英吋 0603 长:0.06英吋 宽:0.03英吋 0402 长:0.04英吋 宽:0.02英吋 公制 1608 长:1.6mm 宽:0.8mm 2012 长:2.0mm 宽:1.2mm 3216 长:3.</description><comments></comments><guid>http://blog.ednchina.com/njf/47554/message.aspx</guid><category></category><author>njf</author></item><item><title>一共阳LED数码管演示软件</title><pubDate>Mon, 17 Sep 2007 17:42:09 GMT</pubDate><link>http://blog.ednchina.com/njf/47208/message.aspx</link><description>一。共阳极内电路二。演示软件界面1.按启动键：依次显示0-9，A,C,E,F,0,H,U。2.按暂停键：暂停显示。3.按复位键：重新开始。4.修改延时时间可调整数码管显示时间。三。软件</description><comments></comments><guid>http://blog.ednchina.com/njf/47208/message.aspx</guid><category></category><author>njf</author></item><item><title>一简易数制转换软件</title><pubDate>Tue, 28 Aug 2007 17:28:04 GMT</pubDate><link>http://blog.ednchina.com/njf/44114/message.aspx</link><description> 玩单片机常用到数制转换，本人用VB设计了数制转换软件。介绍如下：一。界面二。EXE文件三。说明 此仅为实验软件。欢迎发表评论并提出意见。 </description><comments></comments><guid>http://blog.ednchina.com/njf/44114/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门7.位运算</title><pubDate>Mon, 27 Aug 2007 16:51:11 GMT</pubDate><link>http://blog.ednchina.com/njf/43862/message.aspx</link><description>一。位运算C按位运算，和汇编相似但使用更方便。二。运算示图三。应用范例#include void main() { P0=0xc4; P0= P0 &amp;amp;amp; 0x0F; P0=0xc4; P0= P0 | 0x30; P0=0xc4; P0= P0 ^ 0xF0; P0=0xc4; P0= ~P0</description><comments></comments><guid>http://blog.ednchina.com/njf/43862/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门6.逻辑运算</title><pubDate>Mon, 27 Aug 2007 16:37:49 GMT</pubDate><link>http://blog.ednchina.com/njf/43858/message.aspx</link><description>一。逻辑运算.二。应用范例 #include void main() { int a=&amp;quot;0x42&amp;quot;,b=0x51; int c,d,e; c=&amp;quot;a&amp;quot;&amp;amp;amp;&amp;amp;amp;b; d=&amp;quot;a||b&amp;quot;; e=!c; }三。运行结果四。程序文件</description><comments></comments><guid>http://blog.ednchina.com/njf/43858/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门5.比较运算</title><pubDate>Mon, 27 Aug 2007 16:33:48 GMT</pubDate><link>http://blog.ednchina.com/njf/43857/message.aspx</link><description>一。比较运算二。应用范例#include &amp;amp;lt;reg51.h&amp;amp;gt;void main() { int a=&amp;quot;0xc3&amp;quot;,b=0x1f; int c,d,e,f,g,h; c=(a&amp;amp;gt;b); d=(a&amp;amp;lt;b); e=(a==b); f=(a&amp;amp;lt;=b); g=(a&amp;amp;gt;=b); h=</description><comments></comments><guid>http://blog.ednchina.com/njf/43857/message.aspx</guid><category></category><author>njf</author></item><item><title>博客开通有感</title><pubDate>Mon, 27 Aug 2007 08:09:22 GMT</pubDate><link>http://blog.ednchina.com/njf/43720/message.aspx</link><description> 总想在网上找个清静的地方，一个属于自己的空间。终于忍不住开通了自己的博客。其实关注EDN好久了，只是找个时机而已！。。。。。。 有个地方，想说就说，想发就发！放飞心情，轻松自己，真好！ 博客开通三天了，意想不到的是访问的人不少！遗憾的是评论太少！  欢迎大家，发表评论！！！</description><comments></comments><guid>http://blog.ednchina.com/njf/43720/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门4.算术运算</title><pubDate>Sun, 26 Aug 2007 20:04:29 GMT</pubDate><link>http://blog.ednchina.com/njf/43650/message.aspx</link><description>一。常用运算 二。应用范例#include void main() { char a=&amp;quot;8&amp;quot;,b=2; char c,d,e,f,g; c=&amp;quot;a&amp;quot;+b; d=&amp;quot;a-b&amp;quot;; e=&amp;quot;a&amp;quot;*b; f=&amp;quot;a/b&amp;quot;; g=&amp;quot;a&amp;quot;%b; c++; d--; }三。运行结果四。程序文件</description><comments></comments><guid>http://blog.ednchina.com/njf/43650/message.aspx</guid><category></category><author>njf</author></item><item><title>單片機定時中斷的精確定時編程方法種種</title><pubDate>Sun, 26 Aug 2007 16:26:46 GMT</pubDate><link>http://blog.ednchina.com/njf/43644/message.aspx</link><description>  單片機定時中斷的精確定時編程方法種種引 言 　　MCS-51單片機的中斷回應延遲時間，取決於其他中斷服務程式是否在進行，或取決於正在執行的是什麼樣的指令。單中斷系統中的中斷回應時間為3～8個機器週期[1]。無論是哪一種原因引起的誤差，在精確定時的應用場合，必須考慮它們的影響，以確保精確的定時控制</description><comments></comments><guid>http://blog.ednchina.com/njf/43644/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门3.常量</title><pubDate>Sun, 26 Aug 2007 14:02:35 GMT</pubDate><link>http://blog.ednchina.com/njf/43636/message.aspx</link><description>C程序会用到一些常量。一。表达方式 十进制： 123 十六进制： 0x10 字符常量：&amp;apos;a&amp;apos; 字符串常量&amp;quot;Heiio&amp;quot;二。应用说明 1.将常量存入程序存储器中：可定义如下： int code a=&amp;quot;123&amp;quot;; //加入code char code a[]=&amp;quot;OK&amp;quot;; //a[]中省略数字，编译器自动</description><comments></comments><guid>http://blog.ednchina.com/njf/43636/message.aspx</guid><category></category><author>njf</author></item><item><title>查表程序设计</title><pubDate>Sun, 26 Aug 2007 10:09:25 GMT</pubDate><link>http://blog.ednchina.com/njf/43628/message.aspx</link><description>查表在程序中应用十分广泛，以设计一流水灯为例介绍设计方法一。在ROM(程序存储器)将数据建表TAB1: DB 0FEH,0FDH,0FBH,0F7H ; 设定数据 DB 0EFH,0DFH,0BFH,07FH DB 0FEH,0FDH,0FDH,0FDH DB 0EFH,0DFH,0BFH,07FH</description><comments></comments><guid>http://blog.ednchina.com/njf/43628/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门1.基本结构</title><pubDate>Sun, 26 Aug 2007 08:50:32 GMT</pubDate><link>http://blog.ednchina.com/njf/43626/message.aspx</link><description> 一。基本结构 #include  #include  main() { 变量声明部分 程序执行部分 }二。编译指令#include 如： #include  1. 指示编译器将包含有reg51.h文件加进来一起编译。 2. 用&amp;amp;lt;&amp;amp;gt;表示文件在位于include 子目录中，如文件保存在 当</description><comments></comments><guid>http://blog.ednchina.com/njf/43626/message.aspx</guid><category></category><author>njf</author></item><item><title>绝缘式交流电过零取样电路</title><pubDate>Sat, 25 Aug 2007 16:49:28 GMT</pubDate><link>http://blog.ednchina.com/njf/43547/message.aspx</link><description>  使用变压器将交流电至20V左右，经限流电阻輸入至光藕合器，由施密特电路取得正負半波,可用于单片机作SCR相位控制 </description><comments></comments><guid>http://blog.ednchina.com/njf/43547/message.aspx</guid><category></category><author>njf</author></item><item><title>C51快速入门2.数据类型</title><pubDate>Sat, 25 Aug 2007 07:46:58 GMT</pubDate><link>http://blog.ednchina.com/njf/43419/message.aspx</link><description>一。常用的数据类型 说明：下表列出的是常用的数据类型。祥细的可查阅相关资料！ 二。应用范例 #include void main() { unsigned char da1=1; //定义da1为无符号字符型局部变量并赋值1  unsigned int da2=2; //定义da2为无符号整型</description><comments></comments><guid>http://blog.ednchina.com/njf/43419/message.aspx</guid><category></category><author>njf</author></item></channel></rss>