#include <system.h> #include <LCD1602.h> #include <INTRINS.H> #include <stdio.h> sbit T2Pin=P3^5; unsigned char a[16]="H: T: "; unsigned char b[10]; unsigned char p; unsigned char n,k=0; //k 计数器1的中断次数 unsigned long count; //555 输出频率 unsigned char i=0; #define th0 (15536>>8) #define tl0 ((unsigned char)(15536)) unsigned int th,tl; void counter1(void) interrupt 3 { k++; } main() { //delay(5000); TMOD=0x51; ET0=0; ET1=1;EA=1; LCDInit(); while(1) { //delay(20000); TH0=th0;TL0=tl0; TH1=TL1=0;k=0; TR0=TR1=1; for(n=0;n<20;n++) //定时1S { while(!TF0); TF0=0; TH0=th0;TL0=tl0; } TR0=TR1=0; count=TH1; count<<=8; count+=TL1; count+=(((unsigned long)k)<<16); sprintf(&a[0],"%ldHz",count); SetCurPos(1,1); LCDPrint(&a[0]); TH0=TL0=0; while(T2Pin); while(!T2Pin);TR0=1; while(T2Pin);TR0=0;//高电平时间 th=(TH0<<8)+TL0; TH0=TL0=0; while(!T2Pin); while(T2Pin);TR0=1; while(!T2Pin);TR0=0;//高电平时间 tl=(TH0<<8)+TL0; sprintf(&a[0],"%4.1f",th100.0/(th+tl)); SetCurPos(2,1); LCDPrint(&a[0]); } }此代码是用外部中断来测量占空比
时间: 2023-10-14 09:06:05 浏览: 61
这个代码是通过外部中断来测量占空比的方式进行测量的。具体来说,它使用了定时器0和定时器1来测量出周期时间,然后通过外部中断计数器1的中断次数来测量出高电平时间,从而计算出占空比。在代码中,T2Pin表示用于测量的引脚,当引脚为高电平时,计时器1开始计数,直到引脚变为低电平时停止计数,并通过计算得出高电平时间。同样地,通过测量周期时间来计算出周期长度,从而计算出占空比。
相关问题
#include<REG52.H> #include<stdio.h> #include <intrins.h> sbit Trig=P2^0; sbit Echo=P2^1;超声模块测距代码补全
`#include<REG52.H>`是一段头文件的引用,代表使用了基于Intel 8051的单片机开发环境。`<stdio.h>`是标准输入输出头文件的引用。`<intrins.h>`是用于特殊函数的头文件引用。
以下是超声模块测距的代码补全:
```
#include<REG52.H>
#include<stdio.h>
#include <intrins.h>
sbit Trig=P2^0;
sbit Echo=P2^1;
void delay(unsigned int us) //延时函数
{
while(us--);
}
unsigned char read_distance() //读取距离函数
{
unsigned char distance;
Trig = 0; //初始化
delay(2);
Trig = 1; //触发测量
delay(10);
Trig = 0; //停止测量
while(!Echo); //等待Echo为高电平
TH0 = 0;
TL0 = 0; //清零计时器
while(Echo); //等待Echo为低电平
distance = (unsigned char)(TH0*256+TL0)/58.0; //计算距离
return distance;
}
void main()
{
unsigned char distance;
TMOD |= 0x01; //设置为定时器0,工作方式1
while(1)
{
distance = read_distance(); //读取距离
printf("The distance is %d cm\n",distance); //打印距离
delay(500); //延时500ms
}
}
```
#include <STC8H.h>#include <intrins.h> #include <math.h>#include <stdio.h>typedef unsigned char ucha
这段代码是一个C语言程序的头文件引用部分。具体解释如下:
1. `#include <STC8H.h>`:这是引用了一个名为STC8H的头文件,该头文件可能包含了一些与STC8H芯片相关的定义和函数声明。
2. `#include <intrins.h>`:这是引用了一个名为intrins.h的头文件,该头文件可能包含了一些与嵌入式系统中的特殊指令和操作相关的定义和函数声明。
3. `#include <math.h>`:这是引用了一个名为math.h的头文件,该头文件包含了一些与数学运算相关的函数声明和宏定义,例如数学函数sin、cos等。
4. `#include <stdio.h>`:这是引用了一个名为stdio.h的头文件,该头文件包含了一些与输入输出操作相关的函数声明和宏定义,例如printf、scanf等。
5. `typedef unsigned char ucha`:这是一个类型定义语句,将unsigned char类型重命名为ucha,方便在代码中使用ucha作为变量类型。
阅读全文