温度检测系统,就是温度读不出来,求各位大神帮助!
2013-05-27 14:05
allegro16.3版本,元件的引脚号码显示不出来,一换层面就不显示了,显示的字体太大了,如何修改,请教给位了!
2013-11-01 15:50
估计不少朋友和我一样,在重装一次Altium Designer后图标它自己都识别不出了,连先建的文件也不显示图标,结果打
2019-07-24 08:27
选项卡控件,运行程序时控件是没有数据显示的,用探针探测是有数据显示的,为什么在显示控件中显示不出来呐???是不是因为选项
2012-11-13 10:01
程序零错误 零警告但显示不出来
2018-09-17 17:15
不知道为什么,我原来用的自带的元件库画的电阻电容,在画新建的PCB时,一更新到PCB就会显示电阻电容的封装找不到,而且在原理图中它们的库信息也不显示了,但是自建的库中的
2015-04-06 08:43
`程序正常,在PIC学习板上程序通过,1602显示正常,自己焊了一块小板子,1602液晶显示正常,但是温度就是没有显示,连错误的数字都没有,就像完全没有反应一样,用电表量了一下,18B20有电压通过,这是什么原因啊?
2013-12-20 10:25
读取存储的TDMS波形数据,只有采集1分钟的数据,大概27MB的大小,为什么读取不出来呢?显示没有足够的内存?TDMS不是存储海量数据吗?这是为什么呢?
2013-09-23 11:33
针对联想G50-70开机不显示,不进bios,不显示Lenovo标志,电源灯亮,屏幕背光微亮闪烁(仔细看才能发现)问题。首先检测芯片类型,此过程自动完成,很快。使用下载工具先读出原芯片的BIOS
2021-12-29 07:20
#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