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

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

Multiple-Input-<b>MULTIPLE-Output</b>

  • 429總線協議說明

    ARINC429總線協議是美國航空電子工程委員會(Airlines Engineering Committee)于1977年7月提出的,并于同年發表并獲得批準使用,它的全稱是數字式信息傳輸系統(Digital Information Transmission System ) 。協議標準規定了航空電子設備及有關系統間的數字信息傳輸要求。ARINC429廣泛應用在先進的民航客機中,如B-737、B-757、B-767,俄制軍用飛機也選用了類似的技術。 ARINC429總線結構簡單、性能穩定,抗干擾性強。最大的優勢在于可靠性高。飛機上的ARINC429數據總線,用于在系統和設備之間傳送上千種不同類型的參數,如航向、真空速、馬赫數等。

    標簽: 429總線協議

    上傳時間: 2016-08-17

    上傳用戶:w50403

  • AP2406技術手冊

    The AP2406 is a 1.5Mhz constant frequency, slope compensated current mode PWM step-down converter. The device integrates a main switch and a synchronous rectifier for high efficiency without an external Schottky diode. It is ideal for powering portable equipment that runs from a single cell lithium-Ion (Li+) battery. The AP2406 can supply 600mA of load current from a 2.5V to 5.5V input voltage. The output voltage can be regulated as low as 0.6V. The AP2406 can also run at 100% duty cycle for low dropout operation, extending battery life in portable system. Idle mode operation at light loads provides very low output ripple voltage for noise sensitive applications. The AP2406 is offered in a low profile (1mm) 5-pin, thin SOT package, and is available in an adjustable version and fixed output voltage of 1.2V, 1.5V and 1.8V

    標簽: 2406 AP 技術手冊

    上傳時間: 2017-02-23

    上傳用戶:w124141

  • java入門編程合集

    題目:古典問題:有一對兔子,從出生后第3個月起每個月都生一對兔子,小兔子長到第三個月后每個月又生一對兔子,假如兔子都不死,問每個月的兔子總數為多少?    //這是一個菲波拉契數列問題 public class lianxi01 { public static void main(String[] args) { System.out.println("第1個月的兔子對數:    1"); System.out.println("第2個月的兔子對數:    1"); int f1 = 1, f2 = 1, f, M=24;      for(int i=3; i<=M; i++) {       f = f2;       f2 = f1 + f2;       f1 = f;       System.out.println("第" + i +"個月的兔子對數: "+f2);          } } } 【程序2】    題目:判斷101-200之間有多少個素數,并輸出所有素數。 程序分析:判斷素數的方法:用一個數分別去除2到sqrt(這個數),如果能被整除, 則表明此數不是素數,反之是素數。    public class lianxi02 { public static void main(String[] args) {     int count = 0;     for(int i=101; i<200; i+=2) {      boolean b = false;      for(int j=2; j<=Math.sqrt(i); j++)      {         if(i % j == 0) { b = false; break; }          else           { b = true; }      }         if(b == true) {count ++;System.out.println(i );}                                   }     System.out.println( "素數個數是: " + count); } } 【程序3】    題目:打印出所有的 "水仙花數 ",所謂 "水仙花數 "是指一個三位數,其各位數字立方和等于該數本身。例如:153是一個 "水仙花數 ",因為153=1的三次方+5的三次方+3的三次方。 public class lianxi03 { public static void main(String[] args) {      int b1, b2, b3; 

    標簽: java 編程

    上傳時間: 2017-12-24

    上傳用戶:Ariza

  • 基于FPGA設計的字符VGA LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明

    基于FPGA設計的字符VGA  LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明,通過字符轉換工具將字符轉換為 8 進制 mif 文件存放到單端口的 ROM IP 核中,再從ROM 中把轉換后的數據讀取出來顯示到 VGA 上,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input                       clk, input                       rst_n, //vga output         output                      vga_out_hs, //vga horizontal synchronization          output                      vga_out_vs, //vga vertical synchronization                   output[4:0]                 vga_out_r,  //vga red output[5:0]                 vga_out_g,  //vga green output[4:0]                 vga_out_b   //vga blue );wire                            video_clk;wire                            video_hs;wire                            video_vs;wire                            video_de;wire[7:0]                       video_r;wire[7:0]                       video_g;wire[7:0]                       video_b;wire                            osd_hs;wire                            osd_vs;wire                            osd_de;wire[7:0]                       osd_r;wire[7:0]                       osd_g;wire[7:0]                       osd_b;assign vga_out_hs = osd_hs;assign vga_out_vs = osd_vs;assign vga_out_r  = osd_r[7:3]; //discard low bit dataassign vga_out_g  = osd_g[7:2]; //discard low bit dataassign vga_out_b  = osd_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0                (clk                        ), .c0                    (video_clk                  ));color_bar color_bar_m0( .clk                   (video_clk                  ), .rst                   (~rst_n                     ), .hs                    (video_hs                   ), .vs                    (video_vs                   ), .de                    (video_de                   ), .rgb_r                 (video_r                    ), .rgb_g                 (video_g                    ), .rgb_b                 (video_b                    ));osd_display  osd_display_m0( .rst_n                 (rst_n                      ), .pclk                  (video_clk                  ), .i_hs                  (video_hs                   ), .i_vs                  (video_vs                   ), .i_de                  (video_de                   ), .i_data                ({video_r,video_g,video_b}  ), .o_hs                  (osd_hs                     ), .o_vs                  (osd_vs                     ), .o_de                  (osd_de                     ), .o_data                ({osd_r,osd_g,osd_b}        ));endmodule

    標簽: fpga vga lcd

    上傳時間: 2021-12-18

    上傳用戶:

  • 基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明 FPGA

    基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input                       clk, input                       rst_n, //vga output         output                      vga_out_hs, //vga horizontal synchronization          output                      vga_out_vs, //vga vertical synchronization                   output[4:0]                 vga_out_r,  //vga red output[5:0]                 vga_out_g,  //vga green output[4:0]                 vga_out_b   //vga blue );wire                            video_clk;wire                            video_hs;wire                            video_vs;wire                            video_de;wire[7:0]                       video_r;wire[7:0]                       video_g;wire[7:0]                       video_b;assign vga_out_hs = video_hs;assign vga_out_vs = video_vs;assign vga_out_r  = video_r[7:3]; //discard low bit dataassign vga_out_g  = video_g[7:2]; //discard low bit dataassign vga_out_b  = video_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0(clk), .c0(video_clk));color_bar color_bar_m0( .clk(video_clk), .rst(~rst_n), .hs(video_hs), .vs(video_vs), .de(video_de), .rgb_r(video_r), .rgb_g(video_g), .rgb_b(video_b));endmodule

    標簽: fpga vga顯示 verilog quartus

    上傳時間: 2021-12-19

    上傳用戶:kingwide

  • FPGA Verilog HDL設計溫度傳感器ds18b20溫度讀取并通過lcd1620和數碼管顯示

    FPGA Verilog HDL設計溫度傳感器ds18b20溫度讀取并通過lcd1620和8位LED數碼管顯示的QUARTUS II 12.0工程文件,包括完整的設計文件.V源碼,可以做為你的學習及設計參考。module ds18b20lcd1602display ( Clk, Rst,      DQ,   //18B20數據端口 Txd,  //串口發送端口 LCD_Data, //lcd LCD_RS, LCD_RW, LCD_En, SMData, //數碼管段碼 SMCom   //數碼管位碼 );input Rst,Clk;output Txd,LCD_RS,LCD_En,LCD_RW;inout DQ;output[7:0] LCD_Data;output[7:0] SMData;output[3:0] SMCom;wire DataReady;//測溫完成信號wire [15:0] MeasureResult;//DS18B20測溫結果reg  [15:0] Temperature;//產生LCD的位碼和段碼LCD1602Display Gen_LCD(.resetin(Rst),.clkin(Clk),.Data16bIn(Temperature),.lcd_data(LCD_Data),.lcd_rs(LCD_RS),.lcd_rw(LCD_RW),.lcd_e(LCD_En)/*,.SMCom(SMCom)*/);//DS18B20測溫和發送  DS18B20 TmpMeasureAndTx(.Rst(Rst),.Clk(Clk),.DQ(DQ),.Txd(Txd),.FinishFlag(DataReady),.Data16b(MeasureResult));//產生數碼管的位碼和段碼SMDisplay Gen_SM(.Rst(Rst),.

    標簽: fpga verilog hdl 溫度傳感器 ds18b20 lcd1620 數碼顯示

    上傳時間: 2022-01-30

    上傳用戶:

  • (網盤)300本Python電子書

    |- 數據科學速查表 - 0 B|- 遷移學習實戰 - 0 B|- 零起點Python機器學習快速入門 - 0 B|- 《深度學習入門:基于Python的理論與實現》高清中文版PDF+源代碼 - 0 B|- 《Python生物信息學數據管理》中文版PDF+英文版PDF+源代碼 - 0 B|- 《Python深度學習》2018中文版pdf+英文版pdf+源代碼 - 0 B|- 《Python編程:從入門到實踐》中文版+源代碼 - 0 B|- stanford machine learning - 0 B|- Python語言程序設計2018版電子教案 - 0 B|- Python網絡編程第三版 (原版+中文版+源代碼) - 0 B|- Python機器學習實踐指南(中文版帶書簽)、原書代碼、數據集 - 0 B|- python官方文檔 - 0 B|- Python編程(第4版 套裝上下冊) - 0 B|- PyQt5快速開發與實戰(pdf+源碼) - 0 B|- linux - 0 B|- 征服PYTHON-語言基礎與典型應用.pdf - 67.40 MB|- 與孩子一起學編程_中文版_詳細書簽.pdf - 69.10 MB|- 用Python做科學計算.pdf - 6.10 MB|- 用Python寫網絡爬蟲.pdf - 9.90 MB|- 用Python進行自然語言處理(中文翻譯NLTK).pdf - 4.40 MB|- 像計算機科學家那樣思考 Python中文版第二版.pdf - 712.00 kB|- 網絡爬蟲-Python和數據分析.pdf - 6.90 MB|- 圖解機器學習.pdf - 59.40 MB|- 凸優化.pdf - 5.70 MB|- 數據挖掘導論.pdf - 2.50 MB|- 數據科學入門.pdf - 13.30 MB|- 數據結構與算法__Python語言描述_裘宗燕編著_北京:機械工業出版社_,_2016.01_P346.pdf - 74.30 MB|- 神經網絡與深度學習.pdf - 92.60 MB|- 深入Python3...

    標簽: python

    上傳時間: 2022-06-06

    上傳用戶:

  • 數值分析高斯——列主元消去法主程序 說明如下: % a----input,matrix of coefficient % b----input,right vector % sol----o

    數值分析高斯——列主元消去法主程序 說明如下: % a----input,matrix of coefficient % b----input,right vector % sol----output,returns the solution of linear equation

    標簽: input coefficient matrix vector

    上傳時間: 2017-01-01

    上傳用戶:dancnc

  • Input Signal Rise and Fall Tim

    All inputs of the C16x family have Schmitt-Trigger input characteristics. These Schmitt-Triggers are intended to always provide proper internal low and high levels, even if anundefined voltage level (between TTL-VIL and TTL-VIH) is externally applied to the pin.The hysteresis of these inputs, however, is very small, and can not be properly used in anapplication to suppress signal noise, and to shape slow rising/falling input transitions.Thus, it must be taken care that rising/falling input signals pass the undefined area of theTTL-specification between VIL and VIH with a sufficient rise/fall time, as generally usualand specified for TTL components (e.g. 74LS series: gates 1V/us, clock inputs 20V/us).The effect of the implemented Schmitt-Trigger is that even if the input signal remains inthe undefined area, well defined low/high levels are generated internally. Note that allinput signals are evaluated at specific sample points (depending on the input and theperipheral function connected to it), at that signal transitions are detected if twoconsecutive samples show different levels. Thus, only the current level of an input signalat these sample points is relevant, that means, the necessary rise/fall times of the inputsignal is only dependant on the sample rate, that is the distance in time between twoconsecutive evaluation time points. If an input signal, for instance, is sampled throughsoftware every 10us, it is irrelevant, which input level would be seen between thesamples. Thus, it would be allowable for the signal to take 10us to pass through theundefined area. Due to the sample rate of 10us, it is assured that only one sample canoccur while the signal is within the undefined area, and no incorrect transition will bedetected. For inputs which are connected to a peripheral function, e.g. capture inputs, thesample rate is determined by the clock cycle of the peripheral unit. In the case of theCAPCOM unit this means a sample rate of 400ns @ 20MHz CPU clock. This requiresinput signals to pass through the undefined area within these 400ns in order to avoidmultiple capture events.For input signals, which do not provide the required rise/fall times, external circuitry mustbe used to shape the signal transitions.In the attached diagram, the effect of the sample rate is shown. The numbers 1 to 5 in thediagram represent possible sample points. Waveform a) shows the result if the inputsignal transition time through the undefined TTL-level area is less than the time distancebetween the sample points (sampling at 1, 2, 3, and 4). Waveform b) can be the result ifthe sampling is performed more than once within the undefined area (sampling at 1, 2, 5,3, and 4).Sample points:1. Evaluation of the signal clearly results in a low level2. Either a low or a high level can be sampled here. If low is sampled, no transition willbe detected. If the sample results in a high level, a transition is detected, and anappropriate action (e.g. capture) might take place.3. Evaluation here clearly results in a high level. If the previous sample 2) had alreadydetected a high, there is no change. If the previous sample 2) showed a low, atransition from low to high is detected now.

    標簽: Signal Input Fall Rise

    上傳時間: 2013-10-23

    上傳用戶:copu

  • design LP,HP,B S digital Butterworth and Chebyshev filter. All array has been specified internally

    design LP,HP,B S digital Butterworth and Chebyshev filter. All array has been specified internally,so user only need to input f1,f2,f3,f4,fs(in hz), alpha1,alpha2(in db) and iband (to specify the type of to design). This program output hk(z)=bk(z)/ak(z),k=1,2,..., ksection and the freq.

    標簽: Butterworth internally Chebyshev specified

    上傳時間: 2015-11-08

    上傳用戶:253189838

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲日本无吗高清不卡| 久久久久久网| 午夜精品一区二区三区在线视 | 国产一区二区三区网站| 午夜精品网站| 国产一区二区三区四区在线观看| 久久只有精品| 日韩视频永久免费| 国产精品久久久久久久久久尿 | 亚洲国内高清视频| 欧美高清视频| 亚洲综合日本| 韩日在线一区| 欧美欧美全黄| 久久av一区二区三区漫画| 亚洲国产欧美一区| 国产精品videosex极品| 久久精品久久99精品久久| 亚洲韩国一区二区三区| 欧美午夜宅男影院| 噜噜噜91成人网| 亚洲小视频在线| 狠狠综合久久av一区二区老牛| 欧美电影在线观看| 午夜久久久久久| 亚洲日本一区二区| 国产小视频国产精品| 欧美日韩精品免费看| 久久国产精品久久久久久电车| 亚洲欧洲在线一区| 国产一区二区三区成人欧美日韩在线观看| 欧美成人免费一级人片100| 香蕉精品999视频一区二区| 亚洲精品国产精品乱码不99 | 午夜老司机精品| 亚洲三级毛片| 韩国av一区二区三区四区| 欧美视频官网| 欧美二区视频| 久久久久久久尹人综合网亚洲| 在线亚洲高清视频| 亚洲国产精品一区在线观看不卡 | 亚洲一卡久久| 亚洲精品一二区| 一区二区三区在线不卡| 国产欧美日韩高清| 国产精品女主播| 欧美日韩中文在线观看| 欧美激情第1页| 久久最新视频| 久久激情久久| 久久成人18免费网站| 午夜视频精品| 午夜精品久久久久| 午夜精品一区二区三区四区| 亚洲视频久久| 亚洲神马久久| 亚洲女同性videos| 亚洲永久免费观看| 一本色道88久久加勒比精品| 亚洲精品一区二区三区福利| 亚洲黄网站在线观看| 亚洲高清在线观看一区| 在线欧美日韩国产| 亚洲福利视频网| 亚洲国产精品一区二区www在线| 伊人久久噜噜噜躁狠狠躁| 激情久久中文字幕| 亚洲福利视频一区二区| 亚洲国产视频直播| 亚洲精选视频免费看| 激情综合色综合久久| 揄拍成人国产精品视频| 亚洲丰满在线| 亚洲美女精品成人在线视频| 一本色道久久综合亚洲精品不卡 | 亚洲国产电影| 伊人久久噜噜噜躁狠狠躁| 伊人成人在线| 亚洲国产岛国毛片在线| 亚洲经典视频在线观看| 91久久精品美女| 一区二区三区精品视频| 一区二区日韩免费看| 亚洲一区二区三区免费在线观看| 午夜久久久久| 美女国产一区| 国产精品高精视频免费| 国产综合色产在线精品| 亚洲全部视频| 香蕉久久a毛片| 欧美大片va欧美在线播放| 欧美视频免费在线| 黑人中文字幕一区二区三区| 亚洲精品视频在线观看网站| 亚洲在线一区| 免费在线成人| 国产精品三区www17con| 亚洲风情亚aⅴ在线发布| 亚洲一区二区在线| 欧美1区视频| 国产婷婷色一区二区三区四区| 亚洲国产视频a| 欧美一区二区三区在线| 欧美精品一区二区在线观看 | 激情综合网激情| 亚洲美女在线一区| 久久国产精品99精品国产| 欧美片第一页| 影音先锋久久精品| 欧美亚洲综合网| 欧美日韩在线一区二区| 在线观看日韩专区| 亚洲欧美日韩直播| 欧美成人午夜影院| 国产精品卡一卡二卡三| 日韩视频免费在线| 老司机午夜精品视频在线观看| 国产精品网站在线播放| 一本久久知道综合久久| 欧美阿v一级看视频| 激情综合五月天| 久久精品日产第一区二区三区 | 国产精品一区二区在线观看| 亚洲国产综合视频在线观看| 久久久久久久久伊人| 国产免费一区二区三区香蕉精| 一本色道久久综合亚洲91| 欧美激情第五页| 亚洲国产一区二区a毛片| 久久躁狠狠躁夜夜爽| 国产偷自视频区视频一区二区| 亚洲专区一区二区三区| 国产精品白丝av嫩草影院| 国产日产欧美精品| 欧美一区日本一区韩国一区| 国产精品国色综合久久| 亚洲视频一二区| 欧美视频在线观看| 一区二区三区国产精品| 欧美三级在线视频| 亚洲一二区在线| 国产精品日韩精品| 亚洲欧美日韩综合aⅴ视频| 国产精品久久久亚洲一区| 亚洲自拍电影| 国产精一区二区三区| 欧美一级欧美一级在线播放| 国产一区美女| 欧美激情一区二区三区在线| 在线综合亚洲欧美在线视频| 国产欧美日韩视频在线观看| 麻豆亚洲精品| 一区二区三区四区五区精品视频| 国产精品久久国产精品99gif | 黄色成人av| 欧美韩日一区二区| 亚洲一区影院| 激情国产一区| 欧美日韩午夜剧场| 欧美一区二区三区四区在线| 伊人久久综合| 欧美午夜精品久久久久免费视| 性欧美精品高清| 亚洲欧洲日韩女同| 国产精品成人播放| 久久国产婷婷国产香蕉| 日韩一区二区精品| 国内成人精品2018免费看| 欧美另类一区| 久久高清福利视频| 亚洲精品美女| 国产综合在线看| 欧美日韩国产a| 久久大综合网| 亚洲精品在线二区| 国产精品入口66mio| 久久综合狠狠综合久久综合88| 亚洲精品免费在线| 国产日产精品一区二区三区四区的观看方式| 欧美影院在线| 一本久久a久久免费精品不卡| 欧美性开放视频| 欧美在线视频在线播放完整版免费观看 | 亚洲欧洲精品成人久久奇米网| 欧美精品免费播放| 亚洲欧美日本国产有色| 黄色一区二区三区四区| 国产麻豆9l精品三级站| 蜜桃av噜噜一区二区三区| 日韩午夜在线电影| 欧美精品一二三| 卡一卡二国产精品| 亚洲视频综合在线| 伊人激情综合| 好吊色欧美一区二区三区视频| 欧美日本免费| 久久久亚洲人| 亚洲一区日韩在线| 亚洲成人原创|