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

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

disable

  • rINTCON=0x5 //Non-vectored,IRQ enable,FIQ disable rINTMOD=0x0 //All=IRQ mode

    rINTCON=0x5 //Non-vectored,IRQ enable,FIQ disable rINTMOD=0x0 //All=IRQ mode

    標(biāo)簽: Non-vectored IRQ rINTCON disable

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

    上傳用戶:thuyenvinh

  • disable mouse for access program

    disable mouse for access program

    標(biāo)簽: disable program access mouse

    上傳時(shí)間: 2015-09-19

    上傳用戶:ywqaxiwang

  • ADJUSTABLE AND +3.3 V DUAL VOLTAGE REGULATOR WITH disable AND RESET FUNCTIONS

    ADJUSTABLE AND +3.3 V DUAL VOLTAGE REGULATOR WITH disable AND RESET FUNCTIONS

    標(biāo)簽: ADJUSTABLE AND REGULATOR FUNCTIONS

    上傳時(shí)間: 2016-03-16

    上傳用戶:gonuiln

  • usb enable/disable for delphi 6.0

    usb enable/disable for delphi 6.0

    標(biāo)簽: disable enable delphi usb

    上傳時(shí)間: 2016-07-15

    上傳用戶:米卡

  • this a software to enable or disable any newly plugged devices of usb. it is very useful for sercury

    this a software to enable or disable any newly plugged devices of usb. it is very useful for sercury

    標(biāo)簽: software disable devices plugged

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

    上傳用戶:lingzhichao

  • it is a cleaner for windows msconfig when you disable an msconfig item it will still appear on th

    it is a cleaner for windows msconfig when you disable an msconfig item it will still appear on there. This programme let you remove disabled msconfig items

    標(biāo)簽: msconfig cleaner disable windows

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

    上傳用戶:戀天使569

  • To Enable or disable Task Manager

    To Enable or disable Task Manager

    標(biāo)簽: disable Manager Enable Task

    上傳時(shí)間: 2013-11-29

    上傳用戶:cuiyashuo

  • GPS-2303C型直流穩(wěn)壓電源使用說明

    GPS-3303C直流穩(wěn)壓電源具有3組獨(dú)立直流電源輸出,3位數(shù)字顯示器,可同時(shí)顯示兩組電壓及電流,具有過載及反向極性保護(hù),可選擇連續(xù)/動(dòng)態(tài)負(fù)載,輸出 具有Enable/disable 控制,具有自動(dòng)串聯(lián)及自動(dòng)并聯(lián)同步操作,定電壓及定電流操作,并具有低漣波及雜訊的特點(diǎn)。

    標(biāo)簽: 2303 GPS 直流穩(wěn)壓電源 使用說明

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

    上傳用戶:lijinchuan

  • AT89C2051驅(qū)動(dòng)步進(jìn)電機(jī)的電路和源碼

    AT89C2051驅(qū)動(dòng)步進(jìn)電機(jī)的電路和源碼:AT89C2051驅(qū)動(dòng)步進(jìn)電機(jī)的電路和源碼 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }

    標(biāo)簽: C2051 2051 89C AT

    上傳時(shí)間: 2013-11-21

    上傳用戶:boyaboy

  • 24c16讀寫驅(qū)動(dòng)程序

    24c16讀寫驅(qū)動(dòng)程序,//=-------------------------------------------------------------------------------/*模塊調(diào)用:讀數(shù)據(jù):read(unsigned int address)寫數(shù)據(jù):write(unsigned int address,unsigned char dd)   dd為要寫的 數(shù)據(jù)字節(jié)*///------------------------------------------------------------------------------ sbit sda=P3^0;sbit scl=P3^1; sbit a0=ACC^0;                  //定義ACC的位,利用ACC操作速度最快sbit a1=ACC^1;sbit a2=ACC^2;sbit a3=ACC^3;sbit a4=ACC^4;sbit a5=ACC^5;sbit a6=ACC^6;sbit a7=ACC^7; //------------------------------------------------------------------------------#pragma disablevoid s24(void)                 //起始函數(shù){_nop_();    scl=0;     sda=1;    scl=1;    _nop_();    sda=0;    _nop_();    _nop_();    scl=0;     _nop_();    _nop_();    sda=1;} //------------------------------------------------------------------------------#pragma disablevoid p24(void)                 //停止函數(shù){sda=0;    scl=1;    _nop_();    _nop_();    sda=1;} //-----------------------------------------------------------------------------#pragma disableunsigned char rd24(void) /////////////////從24c16讀一字節(jié)數(shù)據(jù){       ACC=0x00;sda=1;scl=1;a7=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a6=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a5=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a4=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a3=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a2=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a1=sda;_nop_();_nop_();_nop_();_nop_();scl=0;scl=1;a0=sda;_nop_();_nop_();_nop_();_nop_();scl=0;sda=1;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0; /// ///////////////24c16的一位回答位。return(ACC);}//------------------------------------------------------------------------------#pragma disablevoid wd24(unsigned char dd) ////////////////向24c16寫一字節(jié)數(shù)據(jù){      sda=1;ACC=dd;sda=a7;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a6;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a5;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a4;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a3;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a2;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a1;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=a0;scl=1;_nop_();_nop_();_nop_();_nop_();scl=0;sda=0;scl=1;//scl=0;(在下面程序中)}//---------------------------------------------------------------------------#pragma disableunsigned char read(unsigned int address){unsigned char dd;    s24();                        ////////////////////////開始條件    wd24(0xa0);                /////////////////////////寫器件地址(寫命令)     _nop_();_nop_();_nop_();_nop_();      scl=0;                        ///////////////////////////////////接收器件地址確認(rèn)信號(hào)    wd24(address);                //////////////////////////// 寫數(shù)據(jù)地址    _nop_();_nop_();_nop_();_nop_();    scl=0;s24();                             ///////////////////////////////////開始條件    wd24(0xa1);                 /////////////////////////////寫器件地址(讀命令)    scl=0;    dd=rd24();              //////////////////////////////////讀 一字節(jié)    p24();                   ////////////////////////////////////停止條件    return(dd);}//------------------------------------------------------------------------------#pragma disablevoid write(unsigned int address,unsigned char dd){s24();                        /////////////////開始條件    wd24(0xa0);            ////////////////////////寫器件地址;    scl=0;     wd24(address);              /////////////////////寫數(shù)據(jù)地址    scl=0;    wd24(dd);                  //////////////////////////寫dd數(shù)據(jù)    scl=0;    p24();                      /////////////////////////停止條件;  }          

    標(biāo)簽: 24c16 讀寫 驅(qū)動(dòng)程序

    上傳時(shí)間: 2013-11-18

    上傳用戶:墻角有棵樹

主站蜘蛛池模板: 邹城市| 礼泉县| 光泽县| 临潭县| 岫岩| 盐津县| 呼玛县| 镇安县| 灯塔市| 临朐县| 潮安县| 三原县| 冷水江市| 三亚市| 海宁市| 繁峙县| 民丰县| 如皋市| 中西区| 巫溪县| 保山市| 睢宁县| 汉川市| 扎囊县| 买车| 方城县| 增城市| 松江区| 灌阳县| 辰溪县| 邳州市| 全州县| 商河县| 洪洞县| 洞头县| 全南县| 娄烦县| 海丰县| 寻乌县| 绥宁县| 蓝田县|