亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

ea

  • DesignSpark PCB設(shè)計(jì)工具軟件_免費(fèi)下載

    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

  • 溫濕度傳感器 sht11 仿真程序下載

    溫濕度傳感器 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();  }  }

    標(biāo)簽: sht 11 溫濕度傳感器 仿真程序

    上傳時(shí)間: 2013-10-16

    上傳用戶:黃蛋的蛋黃

  • 移植到MCS51的uCOS_II。 1。在文件OS_CORE.C中OSMapTbl和OSUnMapTbl數(shù)組用于查表

    移植到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上電缺省值),中斷還不會(huì)發(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 ea

    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 ea

    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ā)布會(huì)上

    4月ARIS7.0發(fā)布會(huì)上,案例2-基于業(yè)務(wù)流程管理平臺的企業(yè)架構(gòu)(ea)及德國大眾集團(tuán)案例分享

    標(biāo)簽: ARIS 7.0 發(fā)布

    上傳時(shí)間: 2013-12-27

    上傳用戶:jennyzai

  • 紅外線遙控器解碼程序(匯編) ORG 0000H AJMP MAIN ORG 0003H 外部中斷INT0入口地址 AJMP INT 轉(zhuǎn)中斷服務(wù)子程序 MAIN:

    紅外線遙控器解碼程序(匯編) 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ù)碼管顯示出來

    標(biāo)簽: AJMP MAIN ORG 0000H

    上傳時(shí)間: 2014-01-12

    上傳用戶:wkchong

  • runs Kalman-Bucy filter over observations matrix Z for 1-step prediction onto matrix X (X can = Z)

    runs Kalman-Bucy filter over observations matrix Z for 1-step prediction onto matrix X (X can = Z) with model order p V = initial covariance of observation sequence noise returns model parameter estimation sequence A, sequence of predicted outcomes y_pred and error matrix Ey (reshaped) for y and ea for a along with inovation prob P = P(y_t | D_t-1) = evidence

    標(biāo)簽: matrix observations Kalman-Bucy prediction

    上傳時(shí)間: 2016-04-28

    上傳用戶:huannan88

  • void UART_init() { //初始化串行口和波特率發(fā)生器 SCON =0x58 //選擇串口工作方式

    void UART_init() { //初始化串行口和波特率發(fā)生器 SCON =0x58 //選擇串口工作方式,打開接收允許 TMOD =0x21 //定時(shí)器1工作在方式2,定時(shí)器0工作在方式1 TH1 =0xfd //實(shí)現(xiàn)波特率9600(系統(tǒng)時(shí)鐘11.0592MHZ) TR1 =1 //啟動(dòng)定時(shí)器T1 ET1 =0 ES=1 //允許串行口中斷 PS=1 //設(shè)計(jì)串行口中斷優(yōu)先級 ea =1 //單片機(jī)中斷允許 }

    標(biāo)簽: UART_init void SCON 58

    上傳時(shí)間: 2014-08-30

    上傳用戶:彭玖華

  • C:Documents and SettingsAdministrator桌面VC++多媒體特效制作百例CHAR07 ea

    C:\Documents and Settings\Administrator\桌面\VC++多媒體特效制作百例\CHAR07\tea

    標(biāo)簽: SettingsAdministrator Documents CHAR and

    上傳時(shí)間: 2017-03-05

    上傳用戶:王慶才

主站蜘蛛池模板: 德令哈市| 包头市| 慈利县| 桃江县| 金寨县| 沧州市| 建德市| 岐山县| 泗洪县| 精河县| 仁化县| 大竹县| 调兵山市| 辽中县| 弥渡县| 什邡市| 射阳县| 安福县| 广南县| 开化县| 宝山区| 远安县| 建始县| 靖安县| 新田县| 旬阳县| 南宫市| 疏勒县| 南开区| 茶陵县| 蓬安县| 四川省| 聂拉木县| 海安县| 珠海市| 苗栗市| 滦南县| 永城市| 商南县| 巨野县| 渝北区|