温度检测系统,就是温度读不出来,求各位大神帮助!
2013-05-27 14:05
allegro16.3版本,元件的引脚号码显示不出来,一换层面就不显示了,显示的字体太大了,如何修改,请教给位了!
2013-11-01 15:50
`程序正常,在PIC学习板上程序通过,1602显示正常,自己焊了一块小板子,1602液晶显示正常,但是温度就是没有显示,连错误的数字都没有,就像完全没有反应一样,用电表量了一下,18B20有电压通过,这是什么原因啊?
2013-12-20 10:25
#include #include int count1,count2;//#pragma interrupt InterruptHandler ipl1 vector 0//void InterruptHandler (void)void _ISR( 0, ipl1) InterruptHandler( void){//1.re-enable interrupts immediately (nesting)asm("ei");//2.check and sever the highest priority firstif(mT3GetIntFlag()){count1++;//clear the flag and exitmT3ClearIntFlag();}//_T3//3.check and serve the lower priiorityelse if (mT2GetIntFlag()){//spend a LOT of time here!while(1);count2++;//before clearing the flag and exitingmT2ClearIntFlag();}//_T2}//INterrupt Handlermain(){//4.init timersPR3=20;PR2=15;T3CON=0x8030;T2CON=0x8030;//5.init interruptsmT2SetIntPriority(1);mT3SetIntPriority(3);INTEnableSystemSingleVectoredInt();mT2IntEnable(1);mT3IntEnable(1);//main loopwhile(1);}//main程序编译错误,纠结,求大神帮忙interrupts.c:6:12: error: expected declaration specifiers or '...' before numeric constantinterrupts.c:6:15: error: expected declaration specifiers or '...' before 'ipl1'interrupts.c: In function '_ISR':interrupts.c:6:21: error: expected declaration specifiers before 'InterruptHandler'interrupts.c:28:1: error: expected declaration specifiers before 'main'interrupts.c:43:1: error: expected '{' at end of input
2014-08-05 15:17
工程师工作效率,助力大家更快更轻松地开发新产品,华秋电子联合扬兴科技开启直播,为大家带来“硬件工程师必备的晶振干货”。相信硬件工程师会遇到以下烦恼:焊好的板子,电路怎么都调试不出来;板子上的晶振布局不合理;特殊晶
2022-07-19 12:04
最近一直在调mpu6050用串口显示数据,发现了一个问题,有的时候下完程序,打开串口显示的数据全是0,但是偶尔有的时候串口
2015-07-26 13:58
其他创新项目:RTC实时时钟通过RTC将当前时间通过串口调试工具显示出来
2022-02-15 07:50
上边是一个截图形式的Labview程序,是从网上找到的。它把读入的文本文件里的图片数据转换成图片并保存。我是按照图片还原程序,但图片保存后显示不出来,请帮忙看下,或者有其他好方法请补充。程序还有文本等已传附件:
2014-05-27 11:12
该程序连基本的读取IC卡的卡号也读不出来,staus总是返回MI_ERR。输出一直是There is no card!以下是main.c的程序:#include "
2014-04-18 20:03
老师让做AD转换的实验,并把转换结果用数码管显示出来。由于疫情的原因,没有C51的小试验箱,就只能用protues进行仿真。一、AD部分AD转换我用的是ADC0808芯
2022-02-28 07:20