DesignSpark PCB 第3版現(xiàn)已推出! 包括3種全新功能: 1. 模擬介面 Simulation Interface 2. 設(shè)計(jì)計(jì)算機(jī) Design Calculator 3. 零件群組 Component Grouping 第3版新功能介紹 (含資料下載) 另外, 中文版的教學(xué)已經(jīng)準(zhǔn)備好了, 備有簡體和繁體版, 趕快下載來看看! 設(shè)計(jì)PCB產(chǎn)品激活:激活入品 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum。
標(biāo)簽: DesignSpark PCB 設(shè)計(jì)工具 免費(fèi)下載
上傳時(shí)間: 2013-10-19
上傳用戶:小眼睛LSL
DesignSpark PCB 第3版現(xiàn)已推出! 包括3種全新功能: 1. 模擬介面 Simulation Interface 2. 設(shè)計(jì)計(jì)算機(jī) Design Calculator 3. 零件群組 Component Grouping 第3版新功能介紹 (含資料下載) 另外, 中文版的教學(xué)已經(jīng)準(zhǔn)備好了, 備有簡體和繁體版, 趕快下載來看看! 設(shè)計(jì)PCB產(chǎn)品激活:激活入品 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum。
標(biāo)簽: DesignSpark PCB 設(shè)計(jì)工具 免費(fèi)下載
上傳時(shí)間: 2013-10-07
上傳用戶:a67818601
創(chuàng)新、效能、卓越是ADI公司的文化支柱。作為業(yè)界公認(rèn)的全球領(lǐng)先數(shù)據(jù)轉(zhuǎn)換和信號調(diào)理技術(shù)領(lǐng)先者,我們除了提供成千上萬種產(chǎn)品以外,還開發(fā)了全面的設(shè)計(jì)工具,以便客戶在整個(gè)設(shè)計(jì)階段都能輕松快捷地評估電路。
上傳時(shí)間: 2013-10-18
上傳用戶:cxl274287265
溫濕度傳感器 sht11 仿真程序 sbit out =P3^0; //加熱口 //sbit input =P1^1;//檢測口 //sbit speek =P2^0;//報(bào)警 sbit clo =P3^7;//時(shí)鐘 sbit ST =P3^5;//開始 sbit EOC =P3^6;//成功信號 sbit gwei =P3^4;//個(gè)位 sbit swei =P3^3;//十位 sbit bwei =P3^2;//百位 sbit qwei =P3^1;//千位 sbit speak =P0^0;//報(bào)警音 sbit bjled =P0^1;//報(bào)警燈 sbit zcled =P0^2;//正常LED int count; uchar xianzhi;//取轉(zhuǎn)換結(jié)果 uchar seth;//高時(shí)間 uchar setl;//低時(shí)間 uchar seth_mi;//高時(shí)間 uchar setl_mi;//低時(shí)間 bit hlbz;//高低標(biāo)志 bit clbz; bit spbz; ///定時(shí)中斷程序/// void t0 (void) interrupt 1 using 0 { TH0=(65536-200)/256;//5ms*200=1000ms=1s TL0=(65536-200)%256; clo=!clo;//產(chǎn)生時(shí)鐘 if(count>5000) { if(hlbz) { if(seth_mi==0){seth_mi=seth;hlbz=0;out=0;} else seth_mi--; } if(!hlbz) { if(setl_mi==0){setl_mi=setl;hlbz=1;out=1;} else setl_mi--; } count=0; } else count++; } ///////////// ///////延時(shí)/////// delay(int i) { while(--i); } ///////顯示處理/////// xianshi() { int abcd=0; int i; for (i=0;i<5;i++) { abcd=xianzhi; gwei=1; swei=1; bwei=1; qwei=1; P1=dispcode[abcd/1000]; qwei=0; delay(70); qwei=1; abcd=abcd%1000; P1=dispcode[abcd/100]; bwei=0; delay(70); bwei=1; abcd=abcd%100; P1=dispcode[abcd/10]; swei=0; delay(70); swei=1; abcd=abcd%10; P1=dispcode[abcd]; gwei=0; delay(70); gwei=1; } } doing() { if(xianzhi>100) {bjled=0;speak=1;zcled=1;} else {bjled=1;speak=0;zcled=0;} } void main(void) { seth=60;//h60秒 setl=90;//l90秒 seth_mi=60;//h60秒 setl_mi=90;//l90秒 TMOD=0X01;//定時(shí)0 16位工作模式 TH0=(65536-200)/256; TL0=(65536-200)%256; TR0=1; //開始計(jì)時(shí) ET0=1; //開定時(shí)0中斷 EA=1; //開全中斷 while(1) { ST=0; _nop_(); ST=1; _nop_(); ST=0; // EOC=0; xianshi(); while(!EOC) { xianshi(); } xianzhi=P2; xianshi(); doing(); } }
上傳時(shí)間: 2013-10-16
上傳用戶:黃蛋的蛋黃
移植到MCS51的uCOS_II。 1。在文件OS_CORE.C中OSMapTbl和OSUnMapTbl數(shù)組用于查表,所以應(yīng)該放在code里。 增加code關(guān)鍵字。UCOS_II.H和OS_CORE.C。 2。OS_CFG.H堆棧大小MaxStkSize改為900。 3。OS_CPU_C.C的InitTimer0函數(shù)增加了關(guān)于開T0中斷的解釋。 允許T0中斷,此時(shí)EA=0(51上電缺省值),中斷還不會發(fā)生,滿足在OSStart()前不產(chǎn)生中斷的要求。 4。修改中斷處理流程,以便嚴(yán)密監(jiān)視中斷嵌套情況。每個(gè)中斷進(jìn)入后立即進(jìn)行OSIntNesting+1原語操作。 5。增加printf函數(shù)的移植,支持靈活的數(shù)據(jù)顯示。支持標(biāo)準(zhǔn)或長二進(jìn)制/八進(jìn)制/十進(jìn)制/十六進(jìn)制/無符號整數(shù), 支持字符、字符串、浮點(diǎn)數(shù)、百分號%。其中,浮點(diǎn)數(shù)在整個(gè)范圍內(nèi)被完全支持,統(tǒng)一采用科學(xué)記數(shù)法顯示。
標(biāo)簽: OSUnMapTbl OSMapTbl uCOS_II OS_CORE
上傳時(shí)間: 2014-01-14
上傳用戶:daoxiang126
The extraordinary growth of the World Wide Web has been fueled by the ability it gives authors to easily and cheaply distribute electronic documents to an international audience. As Web documents have become larger and more complex, however, Web content providers have begun to experience the limitations of a medium that does not provide the extensibility, structure, and data checking needed for large-scale commercial publishing. The ability of Java applets to embed powerful data manipulation capabilities in Web clients makes even clearer the limitations of current methods for the transmittal of document data.
標(biāo)簽: extraordinary the ability authors
上傳時(shí)間: 2015-08-11
上傳用戶:ANRAN
how to use lib_svm, searched from the internet source. After read this papers, you can use libsvm easily.
標(biāo)簽: use internet searched lib_svm
上傳時(shí)間: 2013-12-22
上傳用戶:shinesyh
4月ARIS7.0發(fā)布會上,案例2-基于業(yè)務(wù)流程管理平臺的企業(yè)架構(gòu)(EA)及德國大眾集團(tuán)案例分享
上傳時(shí)間: 2013-12-27
上傳用戶:jennyzai
紅外線遙控器解碼程序(匯編) ORG 0000H AJMP MAIN ORG 0003H 外部中斷INT0入口地址 AJMP INT 轉(zhuǎn)中斷服務(wù)子程序 MAIN: MOV SP,#40H MOV P1,#00H SETB EA 開CPU中斷 SETB IT0 設(shè)定INT0觸發(fā)方式 SETB EX0 INT0請求中斷 DSP: MOV R2,#9 將遙控器鍵值轉(zhuǎn)化成A(0~9) MOV DPTR,#TAB1 VV: MOV A,R2 MOVC A,@A+DPTR XRL A,1CH JZ ABC DJNZ R2,VV ABC: MOV A,R2 MOV DPTR,#TAB ;將A的值通過數(shù)碼管顯示出來
上傳時(shí)間: 2014-01-12
上傳用戶:wkchong
著名IDAutomation公司的JAVA條碼控件源碼,支持Code 128, Code 39, Postnet, ITF, UPC, EAN, GS1, Intelligent Mail, Data Matrix & PDF417
標(biāo)簽: IDAutomation JAVA 條碼 控件
上傳時(shí)間: 2014-01-15
上傳用戶:zl5712176
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1