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

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

while循環(huán)

  • Algorithms(算法概論)pdf

    This book evolved over the past ten years from a set of lecture notes developed while teaching the undergraduate Algorithms course at Berkeley and U.C. San Diego. Our way of teaching this course evolved tremendously over these years in a number of directions, partly to address our students' background (undeveloped formal skills outside of programming), and partly to reect the maturing of the eld in general, as we have come to see it. The notes increasingly crystallized into a narrative, and we progressively structured the course to emphasize the ?story line? implicit in the progression of the material. As a result, the topics were carefully selected and clustered. No attempt was made to be encyclopedic, and this freed us to include topics traditionally de-emphasized or omitted from most Algorithms books.

    標簽: Algorithms 算法

    上傳時間: 2013-11-11

    上傳用戶:JamesB

  • 飛思卡爾智能車的舵機測試程序

    飛思卡爾智能車的舵機測試程序 #include <hidef.h>      /* common defines and macros */#include <MC9S12XS128.h>     /* derivative information */#pragma LINK_INFO DERIVATIVE "mc9s12xs128" void SetBusCLK_16M(void)             {       CLKSEL=0X00;        PLLCTL_PLLON=1;          //鎖相環電路允許位    SYNR=0x00 | 0x01;        //SYNR=1    REFDV=0x80 | 0x01;          POSTDIV=0x00;            _asm(nop);              _asm(nop);    while(!(CRGFLG_LOCK==1));       CLKSEL_PLLSEL =1;          } void PWM_01(void) {     //舵機初始化   PWMCTL_CON01=1;    //0和1聯合成16位PWM;    PWMCAE_CAE1=0;    //選擇輸出模式為左對齊輸出模式    PWMCNT01 = 0;     //計數器清零;    PWMPOL_PPOL1=1;    //先輸出高電平,計數到DTY時,反轉電平    PWMPRCLK = 0X40;    //clockA 不分頻,clockA=busclock=16MHz;CLK B 16分頻:1Mhz     PWMSCLA = 0x08;    //對clock SA 16分頻,pwm clock=clockA/16=1MHz;         PWMCLK_PCLK1 = 1;   //選擇clock SA做時鐘源    PWMPER01 = 20000;   //周期20ms; 50Hz;    PWMDTY01 = 1500;   //高電平時間為1.5ms;     PWME_PWME1 = 1;   

    標簽: 飛思卡爾智能車 舵機 測試程序

    上傳時間: 2013-11-04

    上傳用戶:狗日的日子

  • C語言基礎教材

    目錄 C語言基礎知識  C 語言簡介  C 語言的特點…  C 語言的發展和標準化…數據類型、運算、表達式和編譯預處理  數據類型…  基本類型與數據表示  整數類型和整數的表示…  實數類型和實數的表示…  字符類型和字符的表示…  運算符、表達式與計算…  算術運算符  算術表達式  表達式的求值…  變量——概念、定義和使用…  變量的定義0  變量的使用:取值與賦值  預處理  文件包含命令…  宏定義與宏替換…邏輯判斷與運算…   關系運算和邏輯運算  復雜條件的描述0  i f語句循環控制  whi le語句  for語句…  循環程序常用的若干機制  增量和減量運算符(++、--)  逗號運算符  控制結構和控制語句  do-while循環結構…  流程控制語句…  goto語句…  開關語句…函數  概述…  函數定義和程序的函數分解…  函數定義…  函數調用…數組  數組的概念、定義和使用  數組變量定義…  數組的使用  數組的初始化…結構  結構(struct)  結構說明與變量定義  結構變量的初始化和使用  結構與函數  處理結構的函數0指針  指針的概念  指針操作…  指針作為函數的參數  與指針有關的一些問題…  指針與數組  指向數組元素的指針  基于指針運算的數組程序設計  數組參數與指針  字符指針與字符數組0

    標簽: C語言 教材

    上傳時間: 2013-11-16

    上傳用戶:asdkin

  • c8051f330 C程序源代碼

    //------------------------------------------------------------------------------------//此程序為ADC轉換程序,可以選擇向ADC0BUSY寫1或用定時器0,1,2,3作為ADC的啟動信號。////------------------------------------------------------------------------------------//頭文件定義//------------------------------------------------------------------------------------//#include <c8051f330.h>               #include <stdio.h> //-----------------------------------------------------------------------------// 定義16位特殊功能寄存器//----------------------------------------------------------------------------- sfr16 ADC0     = 0xbd;                sfr16 TMR0RL   = 0xca;                                                                                               sfr16 TMR1RL   = 0xca;                 sfr16 TMR2RL   =0xca;                 sfr16 TMR3RL   =0xca;               sfr16 TMR0     = 0xCC;              sfr16 TMR1     = 0xCC;                sfr16 TMR2     = 0xcc;               sfr16 TMR3     = 0xcc;               //-----------------------------------------------------------------------------// 全局變量定義//-----------------------------------------------------------------------------char i;int result;                       //-----------------------------------------------------------------------------//定義常量//-----------------------------------------------------------------------------#define SYSCLK       49000000        #define SAMPLE_RATE  50000             //------------------------------------------------------------------------------------// 定義函數//------------------------------------------------------------------------------------void SYSCLK_Init (void);void PORT_Init (void);void Timer0_Init (int counts);void Timer1_Init (int counts);void Timer2_Init (int counts);void Timer3_Init (int counts);void ADC0_Init(void);void ADC0_ISR (void);void ADC0_CNVS_ADC0h(void);//------------------------------------------------------------------------------------// 主程序//------------------------------------------------------------------------------------ void main (void) {       int ADCRESULT[50] ;  int k;                     PCA0MD &= ~0x40;                       // 禁止看門狗                   SYSCLK_Init ();                        PORT_Init ();    Timer0_Init (SYSCLK/SAMPLE_RATE);     //Timer1_Init (SYSCLK/SAMPLE_RATE);     //選擇相應的啟動方式   //Timer2_Init (SYSCLK/SAMPLE_RATE);    //Timer3_Init (SYSCLK/SAMPLE_RATE);          ADC0_Init();   EA=1;   while(1)            {     //ADC0_CNVS_ADC0h();  k=ADC0;    ADCRESULT[i]=result;                   //此處設斷點,觀察ADCRESULT的結果          }   }

    標簽: c8051f330 C程序 源代碼

    上傳時間: 2013-10-13

    上傳用戶:SimonQQ

  • 溫濕度傳感器 sht11 仿真程序下載

    溫濕度傳感器 sht11 仿真程序 sbit out =P3^0; //加熱口  //sbit input =P1^1;//檢測口  //sbit speek =P2^0;//報警  sbit clo =P3^7;//時鐘  sbit ST =P3^5;//開始  sbit EOC =P3^6;//成功信號  sbit gwei =P3^4;//個位  sbit swei =P3^3;//十位 sbit bwei =P3^2;//百位 sbit qwei =P3^1;//千位 sbit speak =P0^0;//報警音 sbit bjled =P0^1;//報警燈 sbit zcled =P0^2;//正常LED  int count;  uchar xianzhi;//取轉換結果 uchar seth;//高時間 uchar setl;//低時間 uchar seth_mi;//高時間 uchar setl_mi;//低時間  bit  hlbz;//高低標志  bit  clbz;  bit  spbz;       ///定時中斷程序/// void t0 (void) interrupt 1 using 0 {     TH0=(65536-200)/256;//5ms*200=1000ms=1s   TL0=(65536-200)%256;  clo=!clo;//產生時鐘      if(count>5000)   {     if(hlbz)            {       if(seth_mi==0){seth_mi=seth;hlbz=0;out=0;}    else seth_mi--;       }     if(!hlbz)            {       if(setl_mi==0){setl_mi=setl;hlbz=1;out=1;}    else setl_mi--;       }   count=0;   }      else count++;         } ///////////// ///////延時/////// delay(int i) {    while(--i);          }     ///////顯示處理/////// xianshi() {      int   abcd=0;     int i;     for (i=0;i<5;i++) {   abcd=xianzhi;  gwei=1;  swei=1;  bwei=1;  qwei=1;  P1=dispcode[abcd/1000];   qwei=0;  delay(70);   qwei=1;  abcd=abcd%1000;  P1=dispcode[abcd/100];  bwei=0;  delay(70);  bwei=1;   abcd=abcd%100;  P1=dispcode[abcd/10];  swei=0;  delay(70);  swei=1;  abcd=abcd%10;  P1=dispcode[abcd];  gwei=0;  delay(70);  gwei=1;  } }   doing()   {     if(xianzhi>100)     {bjled=0;speak=1;zcled=1;}  else {bjled=1;speak=0;zcled=0;}   }   void main(void)  {  seth=60;//h60秒  setl=90;//l90秒  seth_mi=60;//h60秒  setl_mi=90;//l90秒  TMOD=0X01;//定時0 16位工作模式   TH0=(65536-200)/256;   TL0=(65536-200)%256;    TR0=1; //開始計時  ET0=1;   //開定時0中斷  EA=1;    //開全中斷  while(1)  {      ST=0;    _nop_();     ST=1;    _nop_();     ST=0;  //   EOC=0;          xianshi();       while(!EOC)   {         xianshi();    }        xianzhi=P2;             xianshi();     doing();  }  }

    標簽: sht 11 溫濕度傳感器 仿真程序

    上傳時間: 2013-11-07

    上傳用戶:我們的船長

  • Xilinx UltraScale:新一代架構滿足您的新一代架構需求(EN)

      中文版詳情瀏覽:http://www.elecfans.com/emb/fpga/20130715324029.html   Xilinx UltraScale:The Next-Generation Architecture for Your Next-Generation Architecture    The Xilinx® UltraScale™ architecture delivers unprecedented levels of integration and capability with ASIC-class system- level performance for the most demanding applications.   The UltraScale architecture is the industr y's f irst application of leading-edge ASIC architectural enhancements in an All Programmable architecture that scales from 20 nm planar through 16 nm FinFET technologies and beyond, in addition to scaling from monolithic through 3D ICs. Through analytical co-optimization with the X ilinx V ivado® Design Suite, the UltraScale architecture provides massive routing capacity while intelligently resolving typical bottlenecks in ways never before possible. This design synergy achieves greater than 90% utilization with no performance degradation.   Some of the UltraScale architecture breakthroughs include:   • Strategic placement (virtually anywhere on the die) of ASIC-like system clocks, reducing clock skew by up to 50%    • Latency-producing pipelining is virtually unnecessary in systems with massively parallel bus architecture, increasing system speed and capability   • Potential timing-closure problems and interconnect bottlenecks are eliminated, even in systems requiring 90% or more resource utilization   • 3D IC integration makes it possible to build larger devices one process generation ahead of the current industr y standard    • Greatly increased system performance, including multi-gigabit serial transceivers, I/O, and memor y bandwidth is available within even smaller system power budgets   • Greatly enhanced DSP and packet handling   The Xilinx UltraScale architecture opens up whole new dimensions for designers of ultra-high-capacity solutions.

    標簽: UltraScale Xilinx 架構

    上傳時間: 2013-11-21

    上傳用戶:wxqman

  • WP401-FPGA設計的DO-254

    The standard that governs the design of avioniccomponents and systems, DO-254, is one of the mostpoorly understood but widely applicable standardsin the avionic industry. While information on thegeneral aspects of the standard is easy to obtain, thedetails of exactly how to implement the standard aresketchy. And once an entity develops a process thatachieves compliance, the details of how compliancewas achieved become part of the intellectualproperty of that entity. This white paper focuses onthe details of developing a DO-254 compliantprocess for the design of FPGAs.

    標簽: FPGA 401 254 WP

    上傳時間: 2013-11-03

    上傳用戶:ysystc670

  • XAPP806 -決定DDR反饋時鐘的最佳DCM相移

    This application note describes how to build a system that can be used for determining theoptimal phase shift for a Double Data Rate (DDR) memory feedback clock. In this system, theDDR memory is controlled by a controller that attaches to either the OPB or PLB and is used inan embedded microprocessor application. This reference system also uses a DCM that isconfigured so that the phase of its output clock can be changed while the system is running anda GPIO core that controls that phase shift. The GPIO output is controlled by a softwareapplication that can be run on a PowerPC® 405 or Microblaze™ microprocessor.

    標簽: XAPP 806 DDR DCM

    上傳時間: 2014-11-26

    上傳用戶:erkuizhang

  • allegro cx manual教程

    We would like to welcome you as a user of the Allegro CX, a rugged, handheld fi  eld PC for data collection. Developed with the input of data collection professionals worldwide, the Allegro CX is adaptable and versatile for use in a wide variety of data collection environments. The Allegro CX continues to utilize our ergonomic, lightweight design that is standard in our line of Allegro Field PCs. This design makes your Allegro easy to use for extended periods while moving to and from data collection sites in the fi  eld.  

    標簽: allegro manual cx 教程

    上傳時間: 2015-01-02

    上傳用戶:zhangyi99104144

  • 基于FPGA的光纖光柵解調系統的研究

     波長信號的解調是實現光纖光柵傳感網絡的關鍵,基于現有的光纖光柵傳感器解調方法,提出一種基于FPGA的雙匹配光纖光柵解調方法,此系統是一種高速率、高精度、低成本的解調系統,并且通過引入雙匹配光柵有效地克服了雙值問題同時擴大了檢測范圍。分析了光纖光柵的測溫原理并給出了該方案軟硬件設計,綜合考慮系統的解調精度和FPGA的處理速度給出了基于拉格朗日的曲線擬合算法。 Abstract:  Sensor is one of the most important application of the fiber grating. Wavelength signal demodulating is the key techniques to carry out fiber grating sensing network, based on several existing methods of fiber grating sensor demodulation inadequate, a two-match fiber grating demodulation method was presented. This system is a high-speed, high precision, low-cost demodulation system. And by introducing a two-match grating effectively overcomes the problem of double value while expands the scope of testing. This paper analyzes the principle of fiber Bragg grating temperature and gives the software and hardware design of the program. Considering the system of demodulation accuracy and processing speed of FPGA,this paper gives the curve fitting algorithm based on Lagrange.

    標簽: FPGA 光纖光柵 解調系統

    上傳時間: 2013-10-10

    上傳用戶:zxc23456789

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
黄色精品一区二区| 久久久久久欧美| 欧美日韩一区在线播放| 久久人体大胆视频| 欧美一进一出视频| 亚洲欧美电影在线观看| 亚洲视频免费看| 亚洲一区二区免费| 亚洲一区日韩| 午夜久久福利| 久久黄色网页| 老司机免费视频一区二区三区 | 亚洲激情社区| 亚洲大胆人体视频| 91久久精品久久国产性色也91| 亚洲福利视频免费观看| 91久久精品一区二区三区| 亚洲精品国产精品久久清纯直播 | 欧美午夜不卡在线观看免费| 欧美视频在线一区二区三区| 国产精品成人免费| 国产视频久久久久久久| 韩日精品视频| 亚洲国产精品久久精品怡红院| 1024欧美极品| 亚洲第一级黄色片| 99国产精品国产精品久久| 亚洲影视在线播放| 欧美一区二区三区另类| 欧美不卡在线| 国产精品免费在线| 亚洲第一网站| 一区二区三区日韩精品视频| 羞羞色国产精品| 欧美国产日韩a欧美在线观看| 欧美日韩久久不卡| 国产一区二区丝袜高跟鞋图片| 国内精品久久久久伊人av| 久久婷婷一区| 亚洲天堂男人| 久久不射中文字幕| 国模吧视频一区| 国产精品日韩在线一区| 一本到高清视频免费精品| 亚洲欧美卡通另类91av | 亚洲欧美伊人| 久久午夜精品一区二区| 欧美成人精品一区二区| 国产精品欧美激情| 亚洲第一成人在线| 亚洲一区中文字幕在线观看| 另类av一区二区| 国产欧美精品日韩区二区麻豆天美| 亚洲电影第三页| 亚洲欧美日韩一区二区三区在线| 久久资源在线| 国产欧美一区二区三区久久| 亚洲欧洲综合另类在线| 亚洲欧美国产制服动漫| 欧美刺激午夜性久久久久久久| 国产精品综合网站| 在线一区二区三区四区五区| 免费观看在线综合色| 国产亚洲欧美激情| 一区二区三区四区五区精品| 久久久久久自在自线| 国产精品高潮呻吟久久av无限| 亚洲激情视频在线| 久久久蜜桃精品| 国产精品一区二区三区久久久| 日韩一区二区精品葵司在线| 欧美a级大片| 国产欧美一区二区三区久久 | 国产精品免费区二区三区观看| 亚洲国产日韩在线| 久久久免费精品| 国产欧美一区二区精品仙草咪 | 亚洲精品乱码久久久久久蜜桃91| 欧美一区午夜精品| 国产精品久久一区主播| 一道本一区二区| 欧美日韩国产成人高清视频| 亚洲人成啪啪网站| 欧美不卡在线| 亚洲日本欧美日韩高观看| 久久这里只有| 尤物网精品视频| 榴莲视频成人在线观看| 合欧美一区二区三区| 久久久久一区| 亚洲盗摄视频| 欧美高清你懂得| 日韩视频在线观看免费| 欧美日韩免费一区| 正在播放亚洲| 国产精品久久77777| 亚洲午夜免费视频| 国产精品一区视频网站| 午夜久久美女| 国产一区二区精品在线观看| 久久久高清一区二区三区| 国产网站欧美日韩免费精品在线观看| 先锋影音一区二区三区| 国产在线视频欧美| 欧美va天堂va视频va在线| 亚洲每日在线| 国产精品区一区| 久久久www| 亚洲电影免费观看高清完整版在线观看| 久热精品视频| 99视频有精品| 国产一区二区av| 欧美大片在线观看| 亚洲一级在线观看| 国际精品欧美精品| 欧美日韩成人在线视频| 午夜精品99久久免费| 在线精品一区二区| 欧美日韩一区二区视频在线| 欧美一区二区三区免费观看视频| 在线免费观看日本欧美| 国产精品igao视频网网址不卡日韩| 欧美在线一二三区| 亚洲人午夜精品| 国产伦精品一区二区三区免费 | 欧美另类在线观看| 亚洲一区区二区| 一区二区视频免费完整版观看| 欧美日本视频在线| 久久久久久综合| 亚洲婷婷综合久久一本伊一区| 黄色亚洲精品| 国产精品欧美日韩一区二区| 欧美国产欧美亚州国产日韩mv天天看完整| 亚洲性感美女99在线| 亚洲成色www8888| 国产精品日韩欧美一区二区三区| 久久av一区二区| 一区二区三区视频在线| 亚洲国产精品www| 国产日韩一区二区三区| 欧美人与性动交cc0o| 久久精品国产一区二区电影 | 另类春色校园亚洲| 午夜在线不卡| 妖精成人www高清在线观看| 影音先锋中文字幕一区| 国产精品天天看| 欧美日韩三级| 欧美黄色大片网站| 久久频这里精品99香蕉| 亚洲欧美综合| 一区二区激情视频| 亚洲国产精品黑人久久久| 国内精品久久久| 国产精品免费福利| 欧美体内谢she精2性欧美| 欧美片第1页综合| 欧美电影资源| 欧美成人精品| 欧美刺激性大交免费视频| 狂野欧美一区| 美日韩丰满少妇在线观看| 久久激情网站| 久久久久久久久久久久久久一区| 性久久久久久久久| 亚洲欧美日韩一区二区在线| 亚洲摸下面视频| 亚洲在线观看视频网站| 亚洲一区二区三区精品在线| 中文亚洲欧美| 亚洲天堂av综合网| 亚洲午夜激情网页| 亚洲一区二区三区三| 亚洲欧美日韩另类| 亚洲女与黑人做爰| 欧美亚洲一区二区在线| 欧美在线播放| 裸体歌舞表演一区二区| 欧美国产大片| 欧美性感一类影片在线播放 | 欧美一级专区免费大片| 久久不射电影网| 久久久久久久成人| 久久中文字幕一区二区三区| 美国成人直播| 欧美日韩一区二区三区| 国产精品免费久久久久久| 国产欧美不卡| 悠悠资源网亚洲青| 亚洲第一综合天堂另类专| 国产在线观看一区| 亚洲激情在线播放| 中日韩男男gay无套| 性欧美激情精品| 老色鬼精品视频在线观看播放| 欧美日韩福利在线观看| 国产精品丝袜久久久久久app| 国内精品视频666| 亚洲欧洲一区二区天堂久久 |