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

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

車(chē)(chē)燈

  • NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C24

    NAME: u2440mon.c DESC: u2440mon entry point,menu,download HISTORY: Mar.25.2002:purnnamu: S3C2400X profile.c is ported for S3C2410X. Mar.27.2002:purnnamu: DMA is enabled. Apr.01.2002:purnnamu: isDownloadReady flag is added. Apr.10.2002:purnnamu: - Selecting menu is available in the waiting loop. So, isDownloadReady flag gets not needed - UART ch.1 can be selected for the console. Aug.20.2002:purnnamu: revision number change 0.2 -> R1.1 Sep.03.2002:purnnamu: To remove the power noise in the USB signal, the unused CLKOUT0,1 is disabled.

    標(biāo)簽: 2440 mon download purnnamu

    上傳時(shí)間: 2016-05-12

    上傳用戶:wff

  • 系統(tǒng)時(shí)間顯示程序 利用BIOS的INT 1AH的2號(hào)系統(tǒng)功能調(diào)用

    系統(tǒng)時(shí)間顯示程序 利用BIOS的INT 1AH的2號(hào)系統(tǒng)功能調(diào)用,將計(jì)算機(jī)系統(tǒng)的時(shí)間參數(shù)(BCD碼)送入寄存器。其中CH 和CL中保存的是小時(shí)數(shù)和分鐘數(shù);DH中保存的是秒鐘數(shù),將BCD碼表示的時(shí),分,秒轉(zhuǎn)換成ASC I I碼并送入屏幕顯示。并用INT 21H 的7號(hào)功能調(diào)用判斷輸入回車(chē)并清屏

    標(biāo)簽: BIOS 1AH INT 系統(tǒng)時(shí)間

    上傳時(shí)間: 2016-08-08

    上傳用戶:z754970244

  • 透過(guò)KEIL C51的程式

    透過(guò)KEIL C51的程式,學(xué)習(xí)者可以了解車(chē)用控制器區(qū)域網(wǎng)路(Controller Area Network, CAN)的訊息傳輸方式。

    標(biāo)簽: KEIL C51 程式

    上傳時(shí)間: 2016-09-05

    上傳用戶:tb_6877751

  • 透過(guò)a51的程式

    透過(guò)a51的程式,學(xué)習(xí)者可以了解車(chē)用控制器區(qū)域網(wǎng)路(Controller Area Network, CAN)的訊息傳輸方式,有助於建立CAN-Bus傳輸?shù)母拍睢?/p>

    標(biāo)簽: a51 程式

    上傳時(shí)間: 2016-09-05

    上傳用戶:極客

  • 有關(guān)鍵盤(pán)

    有關(guān)鍵盤(pán),接上ps/2鍵盤(pán),按鍵後,會(huì)將scancode和breadcode顯示在led燈

    標(biāo)簽: 鍵盤(pán)

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

    上傳用戶:zhangyigenius

  • PC與單片機(jī)雙向通訊智能溫控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #def

    PC與單片機(jī)雙向通訊智能溫控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #define INBUF_LEN 5 //數(shù)據(jù)長(zhǎng)度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 , 0 } //發(fā)送緩沖區(qū) unsigned char inbuf2[50] //接收緩沖區(qū) unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr TMOD |= 0x20 //TMOD: timer 1, mode 2, 8-bit reload PCON |= 0x80 //SMOD=1 TH1 = 0xFA //Baud:4800 fosc=11.0592MHz IE |= 0x90 //Enable Serial Interrupt TR1 = 1 // timer 1 run } //向串口發(fā)送一個(gè)字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    標(biāo)簽: include intrins define Key_UP

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

    上傳用戶:風(fēng)之驕子

  • VB遙控播放器紅外遙控解碼 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb

    VB遙控播放器紅外遙控解碼 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sbit beep=P2^1 //sbit RELAY=P2^0 #define INBUF_LEN 4 //數(shù)據(jù)長(zhǎng)度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //發(fā)送緩沖區(qū) unsigned char inbuf2[50] //接收緩沖區(qū) unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr T2CON=0x30 TH2=0x00 TL2=0x00 RCAP2H=0xFF RCAP2L=0xDC TR2=1 } //向串口發(fā)送一個(gè)字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    標(biāo)簽: include 110592 120000 define

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

    上傳用戶:yph853211

  • 簡(jiǎn)單的加密算法,可逆與不可逆 數(shù)據(jù)加密: 算法1:(不可逆) 將ASCII表中32~~126中的字符

    簡(jiǎn)單的加密算法,可逆與不可逆 數(shù)據(jù)加密: 算法1:(不可逆) 將ASCII表中32~~126中的字符,加密后,顯示為128~~255的字符. 128~~255的字符會(huì)讓人看起來(lái)頭痛些。。。。。。安全. 當(dāng)ch[?]的值為偶數(shù)時(shí):ch[?]=255-ch[?]的個(gè)位*10-ch[?]的十位 當(dāng)ch[?]的值為奇數(shù)時(shí): ch[?]=128+ch[?]的個(gè)位*10+ch[?]的十位 當(dāng)ch[?]的值為質(zhì)數(shù)時(shí):ch[?]=128+ch[?]的個(gè)位+ch[?]的十位 算法2:(可逆) 當(dāng)ch[?]的值能被3整除時(shí):ch[?]-=2,否則ch[?]-=3

    標(biāo)簽: ASCII 126 32 加密算法

    上傳時(shí)間: 2014-11-10

    上傳用戶:李夢(mèng)晗

  • 簡(jiǎn)單的加密解密算法,可逆與不可逆 數(shù)據(jù)加密: 算法1:(不可逆) 將ASCII表中32~~126中的字符

    簡(jiǎn)單的加密解密算法,可逆與不可逆 數(shù)據(jù)加密: 算法1:(不可逆) 將ASCII表中32~~126中的字符,加密后,顯示為128~~255的字符. 128~~255的字符會(huì)讓人看起來(lái)頭痛些。。。。。。安全. 當(dāng)ch[?]的值為偶數(shù)時(shí):ch[?]=255-ch[?]的個(gè)位*10-ch[?]的十位 當(dāng)ch[?]的值為奇數(shù)時(shí): ch[?]=128+ch[?]的個(gè)位*10+ch[?]的十位 當(dāng)ch[?]的值為質(zhì)數(shù)時(shí):ch[?]=128+ch[?]的個(gè)位+ch[?]的十位 算法2:(可逆) 當(dāng)ch[?]的值能被3整除時(shí):ch[?]-=2,否則ch[?]-=3

    標(biāo)簽: ASCII 126 算法 32

    上傳時(shí)間: 2017-02-24

    上傳用戶:txfyddz

  • This is GPS Matlab findPreambles finds the first preamble occurrence in the bit stream of each ch

    This is GPS Matlab findPreambles finds the first preamble occurrence in the bit stream of each channel. The preamble is verified by check of the spacing between preambles [6sec] and parity checking of the first two words in a subframe. At the same time function returns list of channels, that are in tracking state and with valid preambles in the nav data stream.

    標(biāo)簽: findPreambles occurrence the preamble

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

    上傳用戶:秦莞爾w

主站蜘蛛池模板: 湛江市| 迭部县| 城口县| 孙吴县| 台州市| 玛曲县| 慈利县| 景德镇市| 惠安县| 五大连池市| 平顶山市| 贞丰县| 衡水市| 麻江县| 衡阳县| 稻城县| 长沙县| 绿春县| 白水县| 睢宁县| 海口市| 乳山市| 定襄县| 文山县| 巨鹿县| 鄄城县| 湖口县| 石林| 崇左市| 盐亭县| 宿州市| 平邑县| 上林县| 南召县| 封丘县| 旌德县| 龙泉市| 阳高县| 枣强县| 耒阳市| 淅川县|