求:c语言的函数库请发送至(1298214405@qq.com)
发布网友
发布时间:2023-02-07 07:02
我来回答
共3个回答
热心网友
时间:2023-04-26 07:18
已发送,希望对你有帮助
热心网友
时间:2023-04-26 07:19
你慢慢看吧
/***********************************************************************************************************/
//hc-sr04 超声波测距模块 DEMO 程序
//晶振:11。0592
//接线:模块TRIG接 P0.2 ECH0 接P0.1
//数码管:共阳数码管P1接数据口,P2.5 P2.4 P2.3接选通数码管
/***********************************************************************************************************/
#include <ht46r23.h>//器件配置文件
#define aa _pc0
#define bb _pc1
#pragma vector TIMER @0x08
#pragma vector ISR_EXT @0x04
unsigned int time=0;
unsigned int timer=0;
unsigned char posit=0;
unsigned long S=0;
bit flag =0;
unsigned char const discode[] ={ 0xC0,0xF9,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90,0xBF,0xff/*-*/};
unsigned char const positon[3]={ 0xdf,0xef,0xf7};
unsigned char disbuff[4] ={ 0,0,0,0,};
/********************************************************/
void Display(void) //扫描数码管
{
if(posit==0)
{P1=(discode[disbuff[posit]])&0x7f;}
else
{P1=discode[disbuff[posit]];}
P2=positon[posit];
if(++posit>=3)
posit=0;
}
/********************************************************/
void Conut(void)
{
time=_tmrh*256+_tmrl;
_tmrh=0;
_tmrl=0;
S=(time*1.7)/100; //算出来是CM
if((S>=700)||flag==1) //超出测量范围显示“-”
{
flag=0;
disbuff[0]=10; //“-”
disbuff[1]=10; //“-”
disbuff[2]=10; //“-”
}
else
{
disbuff[0]=S%1000/100;
disbuff[1]=S%1000%100/10;
disbuff[2]=S%1000%10 %10;
}
}
/********************************************************/
void TIMER () //T0中断用来计数器溢出,超过测距范围
{
flag=1; //中断溢出标志
}
/********************************************************/
void ISR_EXT() //T1中断用来扫描数码管和计800MS启动模块
{
_tmrl=0xf8;
_tmrh=0x30;
Display();
timer++;
if(timer>=400)
{
timer=0;
bb=1; //800MS 启动一次模块
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
_nop_();
bb=0;
}
}
/*********************************************************/
void main( void )
{
_tmrc=0x9b; //4MHZ/8 //定时器初始化,包括:定时周期,开中断允许等。
_tmrl=0xf8; //65536-65036=500
_tmrh=0x30; //500*(1/0.5MHZ)=1000us=1ms
_eti=1; //enable timer interrupt
_eei=1;
_emi=1; //enable interrupt
while(1)
{
while(!aa);//当RX为零时等待
TlON=1; //开启计数
while(aa);//当RX为1计数并等待
TlON=0;//关闭计数
Conut();//计算
}
}
热心网友
时间:2023-04-26 07:19
在软件Visual StudioC程序开头选中相应的头文件,点击右键打开即可看到其中的函数