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

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

byte

  • 51單片機驅動步進電機(含電路圖和C語言源程序代碼)

    51單片機驅動步進電機(含電路圖和源程序代碼) 源程序: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.h register 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() */

    標簽: 51單片機 驅動 步進電機 C語言

    上傳時間: 2013-11-09

    上傳用戶:釣鰲牧馬

  • 51單片機讀寫u盤(含源程序和原理圖)

    附件有51單片機加上sl811讀寫U盤的源程序和原理圖 /*--------------------------------------------------------------------------AT89X52.H Header file for the low voltage Flash Atmel AT89C52 and AT89LV52.Copyright (c) 1995-1996 Keil Software, Inc.  All rights reserved.--------------------------------------------------------------------------*/ #ifndef AT89X52_HEADER_FILE#define AT89X52_HEADER_FILE 1 /*------------------------------------------------byte Registers------------------------------------------------*/sfr P0      = 0x80;sfr SP      = 0x81;sfr DPL     = 0x82;sfr DPH     = 0x83;sfr PCON    = 0x87;sfr TCON    = 0x88;sfr TMOD    = 0x89;sfr TL0     = 0x8A;sfr TL1     = 0x8B;sfr TH0     = 0x8C;sfr TH1     = 0x8D;sfr P1      = 0x90;sfr SCON    = 0x98;sfr SBUF    = 0x99;sfr P2      = 0xA0;sfr IE      = 0xA8;sfr P3      = 0xB0;sfr IP      = 0xB8;sfr T2CON   = 0xC8;sfr T2MOD   = 0xC9;sfr RCAP2L  = 0xCA;sfr RCAP2H  = 0xCB;sfr TL2     = 0xCC;sfr TH2     = 0xCD;sfr PSW     = 0xD0;sfr ACC     = 0xE0;sfr B       = 0xF0;

    標簽: 51單片機 讀寫 源程序 原理圖

    上傳時間: 2014-01-05

    上傳用戶:lnnn30

  • 用單片機配置FPGA—PLD設計技巧

    用單片機配置FPGA—PLD設計技巧 Configuration/Program Method for Altera Device Configure the FLEX Device You can use any Micro-Controller to configure the FLEX device–the main idea is clocking in ONE BITof configuration data per CLOCK–start from the BIT 0􀂄The total Configuration time–e.g. 10K10 need 15K byte configuration file•calculation equation–10K10* 1.5= 15Kbyte–configuration time for the file itself•15*1024*8*clock = 122,880Clock•assume the CLOCK is 4MHz•122,880*1/4Mhz=30.72msec

    標簽: FPGA PLD 用單片機 設計技巧

    上傳時間: 2013-10-09

    上傳用戶:a67818601

  • I2C總線驅動程序

    1 /**————————————————————2 〖說明〗I2C總線驅動程序(用兩個普通IO模擬I2C總線)3 包括100Khz(T=10us)的標準模式(慢速模式)選擇,4 和400Khz(T=2.5us)的快速模式選擇,5 默認11.0592Mhz的晶振。6 〖文件〗PCF8563T.C ﹫2001/11/2 77 〖作者〗龍嘯九天 c51@yeah.net http://www.c51bbs.co /8 〖修改〗修改建議請到論壇公布 http://www.c51bbs.co m9 〖版本〗V1.00A Build 080310 —————————————————————*/1112 #ifndef SDA13 #define SDA P0_014 #define SCL P0_115 #endif1617 extern uchar SystemError;1819 #define uchar unsigned char20 #define uint unsigned int21 #define byte unsigned char22 #define Word unsigned int23 #define bool bit24 #define true 125 #define false 02627 #define SomeNOP(); _nop_();_nop_();_nop_();_nop_();2829 /**--------------------------------------------------------------------------------30 調用方式:void I2CStart(void) ﹫2001/07/0 431 函數說明:私有函數,I2C專用32 ---------------------------------------------------------------------------------*/33 void I2CStart(void)34 {35 EA=0;36 SDA=1; SCL=1; SomeNOP();//INI37 SDA=0; SomeNOP(); //START38 SCL=0;39 }4041 /**--------------------------------------------------------------------------------42 調用方式:void I2CStop(void) ﹫2001/07/0 443 函數說明:私有函數,I2C專用44 ---------------------------------------------------------------------------------*/45 void I2CStop(void)46 {47 SCL=0; SDA=0; SomeNOP(); //INI48 SCL=1; SomeNOP(); SDA=1; //STOP49 EA=1;50 }5152 /**--------------------------------------------------------------------------------53 調用方式:bit I2CAck(void) ﹫2001/07/0 454 函數說明:私有函數,I2C專用,等待從器件接收方的應答55 ---------------------------------------------------------------------------------*/56 bool WaitAck(void)57 {58 uchar errtime=255;//因故障接收方無ACK,超時值為255。59 SDA=1;SomeNOP();60 SCL=1;SomeNOP();61 while(SDA) {errtime--; if (!errtime) {I2CStop();SystemError=0x11;return false;}}62 SCL=0;63 return true;

    標簽: I2C 總線 驅動程序

    上傳時間: 2014-04-11

    上傳用戶:xg262122

  • 基于(英蓓特)STM32V100的串口程序

    This example provides a description of how  to use the USART with hardware flowcontrol and communicate with the Hyperterminal.First, the USART2 sends the TxBuffer to the hyperterminal and still waiting fora string from the hyperterminal that you must enter which must end by '\r'character (keypad ENTER button). Each byte received is retransmitted to theHyperterminal. The string that you have entered is stored in the RxBuffer array. The receivebuffer have a RxBufferSize bytes as maximum. The USART2 is configured as follow:    - BaudRate = 115200 baud      - Word Length = 8 Bits    - One Stop Bit    - No parity    - Hardware flow control enabled (RTS and CTS signals)    - Receive and transmit enabled    - USART Clock disabled    - USART CPOL: Clock is active low    - USART CPHA: Data is captured on the second edge     - USART LastBit: The clock pulse of the last data bit is not output to                      the SCLK pin

    標簽: V100 STM 100 32V

    上傳時間: 2013-10-31

    上傳用戶:yy_cn

  • STM8 軟件STVD使用教程

    STM8 軟件STVD使用教程 ST Visual Programmer簡稱STVP:程序燒錄工具,可以加載單片機的程序,也可以下載程序到單片機,常用于改寫STM8的選項字節(option byte),一些IO口的復用功能可以在這個軟件上修改,茲于本文用于入門,那么不介紹該工具,有興趣有用到再資訊本協會或網上查找資料

    標簽: STM8 STVD 軟件 使用教程

    上傳時間: 2013-11-14

    上傳用戶:qw12

  • SL811開發資料_包含源程序_電路圖_芯片資料

    SL811開發資料_包含源程序_電路圖_芯片資料:SL811HS Embedded USB Host/Slave Controller.The SL811HS is an Embedded USB Host/Slave Controller capable of communicate with either full-speed or low-speed USB peripherals. The SL811HS can interface to devices such as microprocessors, microcontrollers, DSPs, or directly to a variety of buses such as ISA, PCMCIA, and others. The SL811HS USB Host Controller conforms to USB Specification 1.1.The SL811HS USB Host/Slave Controller incorporates USB Serial Interface functionality along with internal full-/low-speed transceivers.The SL811HS supports and operates in USB full-speed mode at 12 Mbps, or at low-speed 1.5-Mbps mode.The SL811HS data port and microprocessor interface provide an 8-bit data path I/O or DMA bidirectional, with interrupt support to allow easy interface to standard microprocessors or microcontrollers such as Motorola or Intel CPUs and many others. Internally,the SL811HS contains a 256-byte RAM data buffer which is used for control registers and data buffer.The available package types offered are a 28-pin PLCC (SL811HS) and a 48-pin TQFP package (SL811HST-AC). Both packages operate at 3.3 VDC. The I/O interface logic is 5V-tolerant.

    標簽: 811 SL 開發資料 源程序

    上傳時間: 2013-12-22

    上傳用戶:a82531317

  • A windows BMP file is a common image format that Java does not handle. While BMP images are used onl

    A windows BMP file is a common image format that Java does not handle. While BMP images are used only on windows machines, they are reasonably common. Reading these shows how to read complex structures in Java and how to alter they byte order from the big endian order used by Java to the little endian order used by the windows and the intel processor.

    標簽: BMP windows common format

    上傳時間: 2013-12-27

    上傳用戶:gaojiao1999

  • 介紹幾種cpuThe 8xC251SA/SB/SP/SQ improves on the MCS-51 architecture and peripheral features, introducin

    介紹幾種cpuThe 8xC251SA/SB/SP/SQ improves on the MCS-51 architecture and peripheral features, introducing the advanced register based CPU architecture i.e., the MCS 251 microcontroller architecture. The register based CPU supports a 40-byte register file. In addition, the 8xC251SA/SB/SP/SQ microcontroller has 256-Kbyte expanded external code/data memory space and 64-Kbyte stack space. The new controller is also specially designed to execute C code efficiently. More importantly, the 8xC251SA/SB/SP/SQ maintains binary code compatibility with MCS 51 microcontrollers but at the same time allows the use of the powerful MCS 251 microcontroller instruction set, with many new 8, 16 and 32 bit instructions available. The 8xC251SA/SB/SP/SQ has 512 bytes or 1 Kbyte of on-chip data RAM options and is available in 16 Kbytes and 8 Kbytes of on-chip ROM/OTPROM or ROMless options.

    標簽: architecture introducin peripheral improves

    上傳時間: 2015-03-15

    上傳用戶:ccclll

  • RSA加密算法

    RSA加密算法,界面操作,可以很方便的對文件的內容進行加密,而且為了能加密更長的內容,算法中采用了分段加密的手段。其算法步驟如下:1. 讀取公鑰e和n,作加密之用。 2. 從DecText中讀取一大段明文,轉化成明文字節數組byte[]。 3. 再把byte[]分成若干小段明文字節數組sectbyte[]。 4. 使用e和n對所有的sectbyte[]進行加密,并合成一大段密文,添加到EncText。 5. 讀取下一大段明文,若明文為空,完成加密;否則轉2

    標簽: RSA 加密算法

    上傳時間: 2013-12-26

    上傳用戶:bruce

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲欧美一区二区| 国产欧美日韩专区发布| 亚洲欧美国产一区二区三区| 亚洲激情视频网| 亚洲一二三区视频在线观看| 久久精品官网| 欧美日韩亚洲一区二区三区在线| 欧美日韩色一区| 黄色成人在线网站| 99国产麻豆精品| 久久综合九色99| 国产欧美日韩精品在线| 亚洲黄色在线| 久久99伊人| 欧美日韩成人在线视频| 国内精品免费午夜毛片| 亚洲视频 欧洲视频| 久久久亚洲人| 国产精品区二区三区日本| 欧美亚州韩日在线看免费版国语版| 欧美另类专区| 亚洲国产一区二区视频| 午夜精品婷婷| 国产精品久久久99| 这里只有视频精品| 欧美日韩国产色视频| 亚洲福利视频三区| 久久夜色精品国产欧美乱极品| 国产精品男女猛烈高潮激情| 夜久久久久久| 欧美日韩视频免费播放| 亚洲精品国产系列| 你懂的视频一区二区| 在线观看视频一区二区| 久久久久久久综合日本| 欧美丝袜第一区| 正在播放亚洲| 欧美日韩免费| 在线中文字幕不卡| 欧美视频一区二区三区在线观看| 亚洲精品美女在线观看播放| 欧美美女喷水视频| 一本色道久久综合狠狠躁篇的优点| 欧美激情视频一区二区三区在线播放 | 狠狠久久五月精品中文字幕| 欧美日韩色一区| 欧美少妇一区二区| 极品尤物av久久免费看| 欧美aaa级| 亚洲韩国精品一区| 欧美激情按摩| 亚洲你懂的在线视频| 国产色视频一区| 久久亚洲精品一区| 日韩视频免费| 国产日韩精品视频一区| 国产精品乱码人人做人人爱 | 欧美激情亚洲激情| 日韩亚洲欧美高清| 国产亚洲欧洲| 国产亚洲福利社区一区| 欧美中在线观看| 在线观看亚洲专区| 欧美日本亚洲| 久久国产免费看| 亚洲精品国产无天堂网2021| 国产精品久久久久毛片大屁完整版| 欧美一级片在线播放| 亚洲黄色在线视频| 国产精品视频一二三| 免费国产自线拍一欧美视频| 亚洲视频综合在线| 在线观看国产欧美| 亚洲欧美卡通另类91av| 亚洲国产精品尤物yw在线观看| 亚洲福利视频一区| 欧美高清视频一区| 久久免费视频一区| 韩国v欧美v日本v亚洲v| 久久婷婷蜜乳一本欲蜜臀| 亚洲精品欧美精品| 国产女主播一区| 欧美激情亚洲一区| 久久精品人人做人人爽电影蜜月| 亚洲开发第一视频在线播放| 国产综合在线看| 国产精品美女久久久久av超清| 欧美福利一区二区| 久久一区国产| 欧美在线播放| 亚洲一区二区三区成人在线视频精品| 国产性天天综合网| 国产精品久久久免费| 欧美精品在线免费| 欧美成人蜜桃| 狂野欧美激情性xxxx| 久久精品夜夜夜夜久久| 午夜视频一区在线观看| 亚洲综合不卡| 亚洲一区二区在线播放| 国产精品99久久久久久宅男| 日韩一区二区精品视频| 亚洲美女电影在线| 亚洲美女视频在线免费观看| 亚洲高清免费在线| 亚洲国产91| 在线观看视频欧美| 在线欧美日韩| 亚洲精品国产精品国自产观看浪潮| 亚洲第一在线视频| 黄色国产精品| 亚洲国产导航| 久久人人97超碰精品888 | 国产欧美欧美| 欧美在线观看视频在线| 国产精品一区在线播放| 久久久精彩视频| 亚洲少妇一区| 欧美韩国日本综合| 亚洲第一黄网| 欧美二区在线观看| 亚洲美女网站| 亚洲国产高潮在线观看| 黑人巨大精品欧美一区二区| 欧美综合国产| 亚洲免费av观看| 国产精品美女www爽爽爽视频 | 宅男在线国产精品| 欧美久久久久免费| 亚洲一区三区电影在线观看| 蜜桃久久av一区| 欧美h视频在线| 欧美日本一道本| 国产精品久久久久久久app| 欧美图区在线视频| 国产一区二区三区四区在线观看 | 一本色道久久88精品综合| 一区二区三区精品久久久| 在线亚洲成人| 久久成人精品一区二区三区| 欧美电影免费观看高清完整版| 欧美日韩在线一区二区| 国产欧美日韩视频在线观看 | 亚洲国产精品专区久久| avtt综合网| 久久久久**毛片大全| 欧美日韩国产综合视频在线观看中文 | 欧美一区亚洲二区| 欧美成人第一页| 国产精品网站视频| 亚洲高清视频在线| 欧美一区=区| 欧美三级电影精品| 在线视频国产日韩| 久久国产精品毛片| 国产精品久久久一区二区三区| 在线成人黄色| 久久九九精品99国产精品| 国产精品xvideos88| 91久久午夜| 久久久夜精品| 国产精品自在欧美一区| 99成人在线| 欧美激情在线免费观看| 悠悠资源网亚洲青| 欧美永久精品| 国产日韩免费| 午夜精品www| 欧美三级在线| 一区二区国产精品| 欧美精品一区二区三区久久久竹菊| 激情亚洲一区二区三区四区| 亚洲欧美一区二区三区在线 | 午夜精品婷婷| 国产精品红桃| 亚洲天堂免费在线观看视频| 欧美日韩国产丝袜另类| 亚洲精品综合在线| 欧美日韩免费观看一区=区三区| 亚洲精品乱码久久久久久久久| 麻豆91精品| 亚洲欧洲一级| 欧美日韩一区二区在线视频| 99这里只有精品| 欧美视频亚洲视频| 亚洲女与黑人做爰| 亚洲三级影院| 国产视频不卡| 久久综合网hezyo| 欧美视频中文在线看| 韩国成人福利片在线播放| 欧美午夜在线一二页| 日韩一二三在线视频播| 欧美日韩1区2区3区| 一本色道久久| 国产精品呻吟| 久久久久久久欧美精品| 亚洲美女淫视频| 欧美激情第一页xxx| 国产精品入口夜色视频大尺度|