期末问答程序.pdf

  1. 1、本文档共16页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
期末问答程序

程序程序1// F02x_PCA0_Capture_Input.c 程序程序 #include c8051f020.h #define SYSCLK #define T0_CLOCKS 221 #define T2_RELOAD_CLOCKS 5525 sfr16 RCAP2 = 0xCA; sfr16 TMR2 = 0xCC; sbit TEST_OUT = P0^1; void OSCILLATOR_Init (void); void PORT_Init (void); void PCA0_Init (void); void TestTimerInit (void); void main (void) { WDTCN = 0xde; WDTCN = 0xad; PORT_Init (); OSCILLATOR_Init (); PCA0_Init (); TestTimerInit (); EA = 1; while (1) { if (TF2) { TEST_OUT = ~TEST_OUT; TF2 = 0; } }; } void OSCILLATOR_Init (void) { int i; OSCXCN = 0x67; for (i=0; i 256; i++) ; while (!(OSCXCN 0x80)) ; OSCICN = 0x88; } // P0.0 digital open-drain PCA0 CEX0 // P0.1 digital push-pull void PORT_Init (void) { XBR0 = 0x08; XBR1 = 0x00; XBR2 = 0x40; P0MDOUT |= 0x02; } void PCA0_Init (void) { TMOD = 0xF0; TMOD |= 0x02; CKCON |= 0x08; TH0 = -T0_CLOCKS; TL0 = -T0_CLOCKS; PCA0CN = 0x00; PCA0MD = 0x04; PCA0CPM0 = 0x21; EIE1 |= 0x08; CR = 1; TR0 = 1; } void TestTimerInit (void) { CKCON |= 0x20; RCAP2 = -(int)T2_RELOAD_CLOCKS; TMR2 = -(int)T2_RELOAD_CLOCKS; T2CON = 0x04; } void PCA0_ISR (void) interrupt 9 { static unsigned int current_capture_value, previous_capture_value; static unsigned int capture_period; if (CCF0) { CCF0 = 0; current_capture_value = (PCA0CPH0 8) | PCA0CPL0; capture_period = current_capture_value - previous_capture_value; previous_capture_value = current_capture_value; } else { PCA0CN = ~0x9e; } } 程序程序2#include c8051f020.h 程序程序 #include stdio.h sfr16 RCAP2 = 0xca; sfr16 TMR2 =

文档评论(0)

yan698698 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档