⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c51函数.htm

📁 单片机教程 用c语言实现编程 可以大大缩短我们的开发周期
💻 HTM
📖 第 1 页 / 共 3 页
字号:
                      <TD width=96 vborder="0">
                        <P>0023H</P></TD></TR></TBODY></TABLE>
                  <P>表 9-1&nbsp;&nbsp; &nbsp;AT89c51 芯片中断号和中断向量</P>
                  <P>使用中断服务函数时应注意:中断函数不能直接调用中断函数;不能通过形参传速参数; 
                  在中断函数中调用其它函数,两者所使用的寄存器组应相同。限于篇幅其它与函数相关的知 
                  识这里不能一一加以说明,如变量的传递、存储,局部变量、全部变量等,有兴趣的朋友可 以访问笔者的网站 <A 
                  href="http://www.5jia1.com/"><U><FONT 
                  color=#800080></FONT></U></A>阅读更多相关文章。</P>
                  <P>下面是简单的例子。首先要在前面做好的实验电路中加多一个按钮,接在 P3.2(12 引脚外 部中断 
                  INT0)和地线之间。把编译好后的程序烧录到芯片后,当接在 P3.2 引脚的按钮接下 时,中断服务函数 Int0Demo 
                  就会被执行,把 P3 当前的状态反映到 P1,如按钮接下后 P3.7</P>
                  <P>(之前有在这脚装过一按钮)为低,这个时候 P1.7 上的 LED 就会熄灭。放开 P3.2 上的按钮后,</P>
                  <P>P1LED 状态保持先前按下 P3.2 时 P3 的状态。</P>
                  <P>#include &lt;at89x51.h&gt;</P>
                  <P>unsigned char P3State(void); //函数的说明,中断函数不用说明</P>
                  <P>void main(void)</P>
                  <P>{</P>
                  <P>IT0 = 0; //设外部中断 0 为低电平触发</P>
                  <P>EX0 = 1; //允许响应外部中断 0</P>
                  <P>EA = 1; //总中断开关</P>
                  <P>while(1);</P>
                  <P>}</P>
                  <P>//外部中断 0 演示,使用 2 号寄存器组</P>
                  <P>void Int0Demo(void) interrupt 0 using 2</P></DIV><BR 
                  style="PAGE-BREAK-BEFORE: auto" clear=all>
                  <DIV class=Section61>
                  <P>{</P>
                  <P>unsigned int Temp; //定义局部变量</P>
                  <P>P1 = ~P3State(); //调用函数取得 p2 的状态反相后并赋给 P1</P>
                  <P>for (Temp=0; Temp&lt;50; Temp++); //延时&nbsp;&nbsp; 
                  &nbsp;这里只是演示局部变量的使用</P>
                  <P>}</P>
                  <P>//用于返回 P3 的状态,演示函数的使用</P>
                  <P>unsigned char P3State(void)</P>
                  <P>{</P>
                  <P>unsigned char Temp;</P>
                  <P>Temp = P3; //读取 P3 的引脚状态并保存在变量 Temp 中</P>
                  <P>//这样只有一句语句实在没必要做成函数,这里只是学习函数的基本使用方法</P>
                  <P>return Temp;</P>
                  <P>}</P></DIV><BR><BR><!--推荐--></DIV></TD></TR></TBODY></TABLE></TD></TR>
        <TR>
          <TD class=box_common_title align=middle colSpan=2><A 
            href="http://www.5jia1.com/league/blog/show_comm.php?bid=361540">&lt;&lt; 
            上一篇:第十三课 C51循环语句</A> | <A 
            href="http://www.5jia1.com/league/blog/show_comm.php?bid=361545">下一篇:第十五课 
            C51数组的使用 &gt;&gt; </A></TD></TR>
        <TR class=box_common_content>
          <TD colSpan=2>
            <TABLE width="100%">
              <TBODY>
              <TR>
                <TD align=left><IMG title=人气 src="14.files/icon_click.gif" 
                  align=absMiddle border=0>人气(143)&nbsp; <IMG title=评论 
                  src="14.files/icon_btn_comment.gif" align=absMiddle 
                  border=0>&nbsp;<A 
                  href="http://www.5jia1.com/league/blog/show_comm.php?bid=361543#reply">评论(0)</A> 
                  <IMG title=转贴 src="14.files/icon_repost.gif" align=absMiddle 
                  border=0>&nbsp;转贴<A 
                  onclick=get_refer_list(514465,361543,400,505) 
                  href="javascript:void(0)">(<SPAN id=refer_361543>0</SPAN>)</A> 
                  <IMG title=收藏 src="14.files/icon_btn_favorite.gif" 
                  align=absMiddle border=0>&nbsp;<A onclick=alert_login(); 
                  href="javascript:void(0);"> 收藏</A></TD>
                <TD align=right></TD></TR></TBODY></TABLE></TD></TR>
        <TR class=box_common_content>
          <TD align=right colSpan=2><INPUT 
            onclick="javascript:alert('对不亲,请您登录!');" type=image 
            src="14.files/button_tuijian.gif"> 
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
<TABLE class=box_spec cellSpacing=1 cellPadding=5 width="98%" align=center 
border=0>
  <TBODY>
  <TR>
    <TD><STRONG>发表评论</STRONG><A name=reply></A></TD>
    <TD align=middle>&nbsp;</TD></TR>
  <TR class=box_spec_content>
    <TD align=middle>&nbsp;</TD>
    <TD>
      <TABLE cellSpacing=0 cellPadding=0 border=0>
        <FORM id=comment name=comment onsubmit="return formsubmit();" 
        action=/league/blog/add_comm.php method=post target=hidden_frame><INPUT 
        id=bid type=hidden value=361543 name=bid> <INPUT id=sid type=hidden 
        name=sid> 
        <TBODY>
        <TR>
          <TD><SPAN 
            class=font_common_title>发表评论</SPAN>(最多可填600个字符,300个汉字)&nbsp;<SPAN 
            class=color_red id=left_num>0</SPAN>/600</TD>
          <TD>&nbsp;</TD></TR>
        <TR>
          <TD><TEXTAREA class=input_box01 onpropertychange="textCounter(comment.content, 600)" name=content rows=10 cols=70></TEXTAREA> 
          </TD>
          <TD vAlign=top>
            <DIV><LABEL>插入表情:</LABEL> 
            <TABLE 
            style="BORDER-RIGHT: #96ae72 1px solid; BORDER-TOP: #96ae72 1px solid; BACKGROUND: #edf8dd; BORDER-LEFT: #96ae72 1px solid; BORDER-BOTTOM: #96ae72 1px solid">
              <TBODY>
              <TR>
                <TD><A onclick="insertSmile('[[::keai::]]');" 
                  href="javascript:void(0)"><IMG title=可爱 height=32 
                  src="14.files/1.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::ciya::]]');" 
                  href="javascript:void(0)"><IMG title=呲牙 height=32 
                  src="14.files/2.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::guilian::]]');" 
                  href="javascript:void(0)"><IMG title=鬼脸 height=32 
                  src="14.files/3.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::deyi::]]');" 
                  href="javascript:void(0)"><IMG title=得意 height=32 
                  src="14.files/4.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::xihuan::]]');" 
                  href="javascript:void(0)"><IMG title=喜欢 height=32 
                  src="14.files/5.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::jie::]]');" 
                  href="javascript:void(0)"><IMG title=饥饿 height=32 
                  src="14.files/6.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::chijing::]]');" 
                  href="javascript:void(0)"><IMG title=吃惊 height=32 
                  src="14.files/7.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::sikao::]]');" 
                  href="javascript:void(0)"><IMG title=思考 height=32 
                  src="14.files/8.gif" width=32 border=0></A></TD></TR>
              <TR>
                <TD><A onclick="insertSmile('[[::haixui::]]');" 
                  href="javascript:void(0)"><IMG title=害羞 height=32 
                  src="14.files/9.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::tongkuliu::]]');" 
                  href="javascript:void(0)"><IMG title=痛哭 height=32 
                  src="14.files/10.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::bizui::]]');" 
                  href="javascript:void(0)"><IMG title=闭嘴 height=32 
                  src="14.files/11.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::kubi::]]');" 
                  href="javascript:void(0)"><IMG title=酷酷 height=32 
                  src="14.files/12.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::liuhan::]]');" 
                  href="javascript:void(0)"><IMG title=流汗 height=32 
                  src="14.files/13.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::konghe::]]');" 
                  href="javascript:void(0)"><IMG title=恐吓 height=32 
                  src="14.files/14.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::gaoxing::]]');" 
                  href="javascript:void(0)"><IMG title=高兴 height=32 
                  src="14.files/15.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::kunjuan::]]');" 
                  href="javascript:void(0)"><IMG title=困倦 height=32 
                  src="14.files/16.gif" width=32 border=0></A></TD></TR>
              <TR>
                <TD><A onclick="insertSmile('[[::yiwen::]]');" 
                  href="javascript:void(0)"><IMG title=疑问 height=32 
                  src="14.files/17.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::zhaoji::]]');" 
                  href="javascript:void(0)"><IMG title=着急 height=32 
                  src="14.files/18.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::nanguo::]]');" 
                  href="javascript:void(0)"><IMG title=难过 height=32 
                  src="14.files/19.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::shenqi::]]');" 
                  href="javascript:void(0)"><IMG title=生气 height=32 
                  src="14.files/20.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::tongku::]]');" 
                  href="javascript:void(0)"><IMG title=痛苦 height=32 
                  src="14.files/21.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::yumen::]]');" 
                  href="javascript:void(0)"><IMG title=郁闷 height=32 
                  src="14.files/22.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::daku::]]');" 
                  href="javascript:void(0)"><IMG title=大哭 height=32 
                  src="14.files/23.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::jingkong::]]');" 
                  href="javascript:void(0)"><IMG title=惊恐 height=32 
                  src="14.files/24.gif" width=32 
            border=0></A></TD></TR></TBODY></TABLE></DIV></TD></TR>
        <TR>
          <TD><BR><INPUT type=hidden value=do name=submit> <INPUT class=btn01 onclick=alert_login(); type=button value=发表评论 name=submit1> 
<INPUT class=btn01 type=reset value=重新填写 name=重置> 
        </TD></TR></FORM></TBODY></TABLE></TD></TR></TBODY></TABLE><BR><!--<table width="100%"  border="0" cellpadding="5" cellspacing="1" class="box_common">
			<tr valign="top">
             <td>&nbsp;</td>
           </tr>
		   <tr><td class="box_content">
		   
		 <A name="reply"></A></td>
		   </tr>
		   </table>--></TD></TR></TABLE></DIV></DIV></DIV>
<TABLE class=module_content cellSpacing=0 cellPadding=0 border=0>
  <TBODY>
  <TR>
    <TD class=corner_lb>
      <DIV class=mainLayer_lb>
      <DIV class=subLayer_lb></DIV></DIV></TD>
    <TD class=corner_cb><IMG height=1 width=1></TD>
    <TD class=corner_rb>
      <DIV class=mainLayer_rb>
      <DIV class=subLayer_rb></DIV></DIV></TD></TR></TBODY></TABLE></DIV></DIV><!--底部公用文件-->
<DIV id=copyright><A href="http://www.5jia1.com/main/aboutus/?t=1" 
target=_blank>关于5jia1</A> | <A 
href="http://www.5jia1.com/personal/member/index.php?member_id=100773" 
target=_blank>客户服务</A> | <A href="http://www.5jia1.com/aboutus/?t=4" 
target=_blank>联系我们</A> | <A 
href="http://www.5jia1.com/league/index.php?gid=329849" target=_blank>意见留言板</A> 
| <A href="http://www.5jia1.com/personal/member/index.php?member_id=100773" 
target=_blank>帮助</A><BR>北京美嘉文化有限公司版权所有&nbsp;&nbsp; Copyright &copy; 2005 5jia1.com 
All rights reserved<BR>京ICP证 050254</DIV>
<SCRIPT src="14.files/urchin.js" type=text/javascript></SCRIPT>

<SCRIPT type=text/javascript>
  _uacct="UA-177986-4";
  urchinTracker();
</SCRIPT>
</CENTER><IFRAME id=hidden_frame name=hidden_frame src="about:blank" 
frameBorder=0 width=0 scrolling=no height=0></IFRAME><IFRAME marginWidth=0 
marginHeight=0 src="14.files/update_online.htm" frameBorder=0 width=0 
scrolling=no height=0></IFRAME><!--default_run//-->
<SCRIPT language=JavaScript type=text/JavaScript>

function set_comment(bid,sid)
{
	document.comment.bid.value = bid;
	document.comment.sid.value = sid;
	
}
function formsubmit()
{
	if (document.comment.content.value.trim() == "")
	{
		showAlert("评论内容不能为空!");
		document.comment.content.focus();
		return false;
	}
	var cdw = check_deny_word(document.comment) ;
	if (cdw != false)
	{
		showAlert(cdw);
		return false;
	}
	return true;
}

// 弹出收藏页面
function add_favorite(uid,url)
{
	window.open("/personal/favorite/add.php?member_id="+uid+"&url="+url,'_blank','width=400,height=220,toolbar=0,locationbar=0,menubar=0,statbar=0'); 
	return false;
}

// 提示登录
function alert_login()
{
	showAlert('对不起,您目前没有权限,请先登录!');
	document.login_form1.account.focus();
}
</SCRIPT>
</BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -