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

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

US

  • US Navy VHDL Modelling Guide

      This document was developed under the Standard Hardware and Reliability Program (SHARP) TechnologyIndependent Representation of Electronic Products (TIREP) project. It is intended for USe by VHSIC HardwareDescription Language (VHDL) design engineers and is offered as guidance for the development of VHDL modelswhich are compliant with the VHDL Data Item Description (DID DI-EGDS-80811) and which can be providedto manufacturing engineering personnel for the development of production data and the subsequent productionof hardware. Most VHDL modeling performed to date has been concentrated at either the component level orat the conceptual system level. The assembly and sub-assembly levels have been largely disregarded. Under theSHARP TIREP project, an attempt has been made to help close this gap. The TIREP models are based upon lowcomplexity Standard Electronic Modules (SEM) of the format A configuration. Although these modules are quitesimple, it is felt that the lessons learned offer guidance which can readily be applied to a wide range of assemblytypes and complexities.

    標簽: Modelling Guide Navy VHDL

    上傳時間: 2013-11-20

    上傳用戶:pzw421125

  • USB接口控制器參考設計,xilinx提供VHDL代碼 US

    USB接口控制器參考設計,xilinx提供VHDL代碼 USb xilinx vhdl ;  This program is free software; you can redistribute it and/or modify ;  it under the terms of the GNU General Public License as published by ;  the Free Software Foundation; either version 2 of the License, or ;  (at your option) any later version. ;      ;  This program is distributed in the hope that it will be USeful, ;  but WITHOUT ANY WARRANTY; without even the implied warranty of ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the ;  GNU General Public License for more details. ;      ;  You should have received a copy of the GNU General Public License ;  along with this program; if not, write to the Free Software ;  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    標簽: xilinx VHDL USB US

    上傳時間: 2013-10-29

    上傳用戶:zhouchang199

  • Arduino學習筆記4_Arduino軟件模擬PWM

    注:1.這篇文章斷斷續續寫了很久,畫圖技術也不精,難免錯漏,大家湊合看.有問題可以留言.      2.論壇排版把我的代碼縮進全弄沒了,大家將代碼粘貼到arduino編譯器,然后按ctrl+T重新格式化代碼格式即可看的舒服. 一、什么是PWM PWM 即Pulse Wavelength Modulation 脈寬調制波,通過調整輸出信號占空比,從而達到改 變輸出平均電壓的目的。相信Arduino 的PWM 大家都不陌生,在Arduino Duemilanove 2009 中,有6 個8 位精度PWM 引腳,分別是3, 5, 6, 9, 10, 11 腳。我們可以使用analogWrite()控 制PWM 腳輸出頻率大概在500Hz 的左右的PWM 調制波。分辨率8 位即2 的8 次方等于 256 級精度。但是有時候我們會覺得6 個PWM 引腳不夠用。比如我們做一個10 路燈調光, 就需要有10 個PWM 腳。Arduino Duemilanove 2009 有13 個數字輸出腳,如果它們都可以 PWM 的話,就能滿足條件了。于是本文介紹用軟件模擬PWM。 二、Arduino 軟件模擬PWM Arduino PWM 調壓原理:PWM 有好幾種方法。而Arduino 因為電源和實現難度限制,一般 使用周期恒定,占空比變化的單極性PWM。 通過調整一個周期里面輸出腳高/低電平的時間比(即是占空比)去獲得給一個用電器不同 的平均功率。 如圖所示,假設PWM 波形周期1ms(即1kHz),分辨率1000 級。那么需要一個信號時間 精度1ms/1000=1US 的信號源,即1MHz。所以說,PWM 的實現難點在于需要使用很高頻的 信號源,才能獲得快速與高精度。下面先由一個簡單的PWM 程序開始: const int PWMPin = 13; int bright = 0; void setup() { pinMode(PWMPin, OUTPUT); } void loop() { if((bright++) == 255) bright = 0; for(int i = 0; i < 255; i++) { if(i < bright) { digitalWrite(PWMPin, HIGH); delayMicroseconds(30); } else { digitalWrite(PWMPin, LOW); delayMicroseconds(30); } } } 這是一個軟件PWM 控制Arduino D13 引腳的例子。只需要一塊Arduino 即可測試此代碼。 程序解析:由for 循環可以看出,完成一個PWM 周期,共循環255 次。 假設bright=100 時候,在第0~100 次循環中,i 等于1 到99 均小于bright,于是輸出PWMPin 高電平; 然后第100 到255 次循環里面,i 等于100~255 大于bright,于是輸出PWMPin 低電平。無 論輸出高低電平都保持30US。 那么說,如果bright=100 的話,就有100 次循環是高電平,155 次循環是低電平。 如果忽略指令執行時間的話,這次的PWM 波形占空比為100/255,如果調整bright 的值, 就能改變接在D13 的LED 的亮度。 這里設置了每次for 循環之后,將bright 加一,并且當bright 加到255 時歸0。所以,我們 看到的最終效果就是LED 慢慢變亮,到頂之后然后突然暗回去重新變亮。 這是最基本的PWM 方法,也應該是大家想的比較多的想法。 然后介紹一個簡單一點的。思維風格完全不同。不過對于驅動一個LED 來說,效果與上面 的程序一樣。 const int PWMPin = 13; int bright = 0; void setup() { pinMode(PWMPin, OUTPUT); } void loop() { digitalWrite(PWMPin, HIGH); delayMicroseconds(bright*30); digitalWrite(PWMPin, LOW); delayMicroseconds((255 - bright)*30); if((bright++) == 255) bright = 0; } 可以看出,這段代碼少了一個For 循環。它先輸出一個高電平,然后維持(bright*30)US。然 后輸出一個低電平,維持時間((255-bright)*30)US。這樣兩次高低就能完成一個PWM 周期。 分辨率也是255。 三、多引腳PWM Arduino 本身已有PWM 引腳并且運行起來不占CPU 時間,所以軟件模擬一個引腳的PWM 完全沒有實用意義。我們軟件模擬的價值在于:他能將任意的數字IO 口變成PWM 引腳。 當一片Arduino 要同時控制多個PWM,并且沒有其他重任務的時候,就要用軟件PWM 了。 多引腳PWM 有一種下面的方式: int brights[14] = {0}; //定義14個引腳的初始亮度,可以隨意設置 int StartPWMPin = 0, EndPWMPin = 13; //設置D0~D13為PWM 引腳 int PWMResolution = 255; //設置PWM 占空比分辨率 void setup() { //定義所有IO 端輸出 for(int i = StartPWMPin; i <= EndPWMPin; i++) { pinMode(i, OUTPUT); //隨便定義個初始亮度,便于觀察 brights[ i ] = random(0, 255); } } void loop() { //這for 循環是為14盞燈做漸亮的。每次Arduino loop()循環, //brights 自增一次。直到brights=255時候,將brights 置零重新計數。 for(int i = StartPWMPin; i <= EndPWMPin; i++) { if((brights[i]++) == PWMResolution) brights[i] = 0; } for(int i = 0; i <= PWMResolution; i++) //i 是計數一個PWM 周期 { for(int j = StartPWMPin; j <= EndPWMPin; j++) //每個PWM 周期均遍歷所有引腳 { if(i < brights[j])\   所以我們要更改PWM 周期的話,我們將精度(代碼里面的變量:PWMResolution)降低就行,比如一般調整LED 亮度的話,我們用64 級精度就行。這樣速度就是2x32x64=4ms。就不會閃了。

    標簽: Arduino PWM 軟件模擬

    上傳時間: 2013-10-23

    上傳用戶:mqien

  • In today’s IT environment, Java is a leading technology in the world of enterprise development. As

    In today’s IT environment, Java is a leading technology in the world of enterprise development. As management demands more from technology, complexity in infrastructure seems to grow exponentially, leaving many unable to keep up with the demands of such a fast-paced world. These complexities can be seen in the over-evolving Java 2 Enterprise Edition (J2EE) specifications. This unnecessary complexity drove US to discover ways of simplifying development.

    標簽: environment development enterprise technology

    上傳時間: 2013-12-24

    上傳用戶:Zxcvbnm

  • 21天學會用JAVA開發網絡游戲 書籍語言: 簡體中文 書籍類型: 程序設計 授權方式: 免費軟件 書籍大小: 287 KB 書籍等級: 整理時間: 2004-1

    21天學會用JAVA開發網絡游戲 書籍語言: 簡體中文 書籍類型: 程序設計 授權方式: 免費軟件 書籍大小: 287 KB 書籍等級: 整理時間: 2004-11-3 20:41:10 With all of the media attention that is focUSed on the Internet and the World Wide Web, figuring out exactly what they are all about is sometimes difficult. Are they jUSt a neat new way to market products or will they truly offer US a new medium of communication that will someday surpass even televisions and telephones? The answer is, who knows? Unfortunately, the ultimate USe for the Internet is still unknown. This is becaUSe it is still in such a state of flux that it s pretty much impossible to accurately predict where it will end up. However, you can look at the evidence of what is there now and gain some insight into what the Internet might become, at least in terms of games.

    標簽: 書籍 JAVA 2004 287

    上傳時間: 2013-12-20

    上傳用戶:天誠24

  • The code is fairly straightforward, except perhaps for the call to convertColumnIndexToModel. That c

    The code is fairly straightforward, except perhaps for the call to convertColumnIndexToModel. That call is necessary becaUSe if the USer moves the columns around, the view s index for the column doesn t match the model s index for the column. For example, the USer might drag the Vegetarian column (which the model considers to be at index 4) so it s displayed as the first column — at view index 0. Since prepareRenderer gives US the view index, we need to translate the view index to a model index so we can be sure we re dealing with the intended column

    標簽: convertColumnIndexToModel straightforward perhaps fairly

    上傳時間: 2013-12-10

    上傳用戶:it男一枚

  • fs44b0x_USb -- USb 測試程序 PC機部分的軟件 1) LEDDEMO -- 控制 FS44B0X板上三個LED的程序 2) D12_DRIVER_FOR_WIN98 -- US

    fs44b0x_USb -- USb 測試程序 PC機部分的軟件 1) LEDDEMO -- 控制 FS44B0X板上三個LED的程序 2) D12_DRIVER_FOR_WIN98 -- USB芯片WIN98的驅動程序 3) D12_DRIVER_FOR_WINXP -- USB芯片WINXP的驅動程序 FS44B0X板的USB固件程序--源代碼 USB_DEMO 使用方法: 1)在SDT2.51里調入USb_demo.axf, 運行。 2)接上USb電纜,安裝win98的d12驅動程序(或者winxp的d12驅動程序) 3) 運行 LEDDEMO ,用鼠標點擊led1, led2, led3,可以看到FS44B0X板上三個LED亮滅。

    標簽: DRIVER_FOR_WIN LEDDEMO x_USb 44

    上傳時間: 2014-01-19

    上傳用戶:李夢晗

  • Expert Choice represents a significant contribution to the decision making process 工t assists a deci

    Expert Choice represents a significant contribution to the decision making process 工t assists a decision maker in solving complex problems involving many criteria and several courses of action . An Expert Choice solution to a problem reflects the expertise of the decision maker , not the computer . Behavioral scientists have spent many years studying the human mind and how it makes decisions . They have found that humans are influenced by their previoUS experiences and this caUSes them to have biases . Basic instincts , preferences and environmental factors also play key roles in how we analyze data and make decisions . There 15 way to remove these factors from human decision making , nor would we necessarily want to , but as the problems of our world become more and more complex , it 15 necessary for US to employ a framework to help make more logical and less biased decisions while still taking our feelings and intuition into consideration .

    標簽: contribution significant represents decision

    上傳時間: 2015-06-02

    上傳用戶:gmh1314

  • 紅外線遙控器讀碼軟件

    紅外線遙控器讀碼軟件,顯示紅外線波型,讀取并保存碼 IR Remote Control Unit Code Read System 產品詳細描述: 能夠像顯示器一樣顯示紅外線碼的波型 可以讀多達150種格式的紅外線碼 顯示紅外線碼的時間非常準確,誤差只有幾個微秒。 具有錯誤檢測功能 保存紅外線碼功能 自動識別碼的格式 比較樣機與所寫的新軟件的遙控器碼的異同 具體情況請訪問本網站:http://www.crzman.com/IR_Reader.htm Display the Infrared wave on the software like oscillograph. Can read more than 150 kinds of infrared code format Display the Infrared time and the tolerance no more than many US. Have error detect function Save Infrared code function Auto identify code s format Compare the code from sample and new Remote Control Unit code) Detail instance please visit address: http://www.crzman.com/IR_Reader.htm

    標簽: 紅外線遙控器 軟件

    上傳時間: 2015-07-03

    上傳用戶:ccclll

  • 用delphi編的

    用delphi編的,很精確的定時,精確度可以少于US.

    標簽: delphi

    上傳時間: 2015-07-11

    上傳用戶:qweqweqwe

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品日本| 亚洲第一主播视频| 亚洲调教视频在线观看| 久久av一区二区| 亚洲电影在线看| 亚洲午夜视频在线| 国产精品草草| 好男人免费精品视频| 国产乱码精品一区二区三区av| 国产精品v日韩精品| 韩日精品视频一区| 另类春色校园亚洲| 亚洲一区www| 欧美va亚洲va日韩∨a综合色| 欧美成人激情视频免费观看| 国产精品成人v| 亚洲国产成人精品久久久国产成人一区| 尤物精品在线| 亚洲神马久久| 久久综合免费视频影院| 亚洲国产精品毛片| 亚洲精品在线一区二区| 免费在线成人av| 伊甸园精品99久久久久久| 亚洲一区二区av电影| 国产精品日韩久久久| 欧美va天堂| 亚洲淫性视频| 亚洲国产欧美在线| 欧美色欧美亚洲高清在线视频| 美腿丝袜亚洲色图| 亚洲一区综合| 精品成人一区二区| 欧美日韩精品一区二区在线播放| 亚洲欧美一级二级三级| 亚洲精品三级| 国产日韩一区二区三区在线播放| 一区在线视频观看| 亚洲片在线观看| 国产日产精品一区二区三区四区的观看方式| 欧美激情综合网| 欧美成人精品激情在线观看| 久久综合色播五月| 欧美片第1页综合| 欧美日韩一卡| 精品成人一区二区三区四区| 日韩一区二区精品在线观看| 久久久精品一区| 韩国av一区二区三区在线观看| 亚洲欧洲中文日韩久久av乱码| 欧美有码在线视频| 一区免费观看视频| 久久精品视频亚洲| 国产乱码精品一区二区三| 亚洲天堂av在线免费| 欧美调教vk| 欧美成人日本| 好吊视频一区二区三区四区| 欧美伦理影院| 国产精品一区二区久久久| 黑人巨大精品欧美黑白配亚洲| 99视频在线精品国自产拍免费观看| 亚洲精品久久在线| 欧美专区在线观看| 亚洲免费视频在线观看| 欧美精品在线视频观看| 在线电影院国产精品| 久久婷婷国产综合国色天香| 亚洲影视在线播放| 亚洲国产一区二区a毛片| 国产亚洲欧美另类中文| 国产精品久久久久久久午夜| 欧美激情一区二区三区全黄| 欧美黄色网络| 亚洲制服丝袜在线| 狠狠综合久久av一区二区小说| 久久夜色撩人精品| 亚洲午夜激情免费视频| 国产亚洲精品资源在线26u| 久久久蜜臀国产一区二区| 亚洲国产成人精品女人久久久| 欧美日韩国产成人精品| 亚洲男人第一网站| 亚洲激情在线观看视频免费| 欧美日韩国内| 欧美日韩一区二区三区四区在线观看| 亚洲男人影院| 99视频有精品| 国产精品一区在线观看你懂的| 玉米视频成人免费看| 极品尤物av久久免费看| 国产精品性做久久久久久| 136国产福利精品导航网址| 国产日韩欧美一区二区三区四区| 欧美午夜精品久久久久免费视| 国产喷白浆一区二区三区| 尤物精品国产第一福利三区| 99国产精品久久久| 久久亚裔精品欧美| 国产精品一区视频网站| 国语自产精品视频在线看抢先版结局 | 亚洲人成在线观看一区二区| 亚洲综合激情| 日韩视频在线观看| 99成人在线| 一区二区三区欧美在线| 亚洲第一精品福利| 激情成人综合| 在线观看欧美日本| 亚洲国产精品123| 国产精品久久久久99| 欧美一区二区免费观在线| 亚洲国产1区| 黄色成人片子| 亚洲天堂网在线观看| 久久久久免费视频| 国产精品人人做人人爽| 国产一区二区| 午夜精品在线观看| 国产精品一级久久久| 9久草视频在线视频精品| 欧美黄色大片网站| 亚洲美女精品久久| 亚洲一区二区三区色| 久久精品99无色码中文字幕| 欧美黄色影院| 韩国av一区二区三区| 午夜精品久久久久久久久久久| 美女任你摸久久| 在线观看一区| 老司机午夜精品视频| 伊人久久综合| 欧美mv日韩mv亚洲| 影音先锋在线一区| 国产精品久久77777| 免费观看成人鲁鲁鲁鲁鲁视频| 欧美日韩精品是欧美日韩精品| 国产精品久久久久99| 亚洲自拍偷拍网址| 欧美日韩亚洲网| 亚洲国产欧美不卡在线观看| 日韩午夜精品| 欧美制服丝袜| 国产一区清纯| 免费亚洲电影| 亚洲精品一区二| 久久天天综合| 中文国产成人精品久久一| 国产精品亚洲综合色区韩国| 午夜精品视频在线| 黄色一区二区在线| 国产精品日韩欧美一区| 欧美成在线观看| 99精品国产在热久久| 国产欧美日韩另类一区| 欧美日韩免费精品| 国产精品国产亚洲精品看不卡15| 欧美日韩国产精品专区| 一区二区久久久久| 在线观看亚洲精品| 国产精品区二区三区日本| 欧美日韩精品二区| 久色婷婷小香蕉久久| 亚洲综合精品自拍| 在线一区二区三区四区五区| 亚洲福利电影| 亚洲国语精品自产拍在线观看| 国产免费观看久久| 欧美剧在线免费观看网站| 欧美一区二区性| 亚洲午夜精品在线| 亚洲午夜国产成人av电影男同| 99精品视频网| 亚洲欧美日韩天堂一区二区| 制服诱惑一区二区| 久热精品在线| 欧美一区日韩一区| 狠狠色综合一区二区| 国产九区一区在线| 国产精品免费观看在线| 国产精品久久久久久久久久免费| 欧美日韩在线播放| 国产欧美日韩亚洲| 一二三四社区欧美黄| 久久精品国产亚洲aⅴ| 久久久精品一区二区三区| 久久国产日本精品| 久久国产精品网站| 欧美不卡视频一区| 国产精品性做久久久久久| 国产农村妇女精品一二区| 亚洲精品久久久久| 香港久久久电影| 欧美一区二区三区视频在线观看| 久久久久免费观看| 欧美日韩免费观看中文| 国产日产高清欧美一区二区三区| 亚洲一区二区三区精品动漫| 欧美高清视频在线观看| 在线观看精品一区|