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

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

案例開(kāi)發(fā)

  • 第14章源代碼控制

    當許多編程人員從事這項工作但又不使用源代碼管理工具時,源代碼管理幾乎不可能進行。Visual SourceSafe是Visual Basic的企業版配備的一個工具,不過這個工具目的是為了保留一個內部應用版本,不向公眾發布(應當說明的是,M i c r o s o f t并沒有開發Visual SourceSafe,它是M i c r o s o f t公司買來的) 。雖然Visual SourceSafe有幫助文本可供參考,但該程序的一般運行情況和在生產環境中安裝 Visual SourceSafe的進程都沒有詳細的文字說明。另外,Visual SourceSafe像大多數M i c r o s o f t應用程序那樣經過了很好的修飾,它包含的許多功能特征和物理特征都不符合 Microsoft Wi n d o w s應用程序的標準。例如,Visual SourceSafe的三個組件之一(Visual SourceSafe Administrator)甚至連F i l e菜單都沒有。另外,許多程序的菜單項不是放在最合適的菜單上。在程序開發環境中實現Visual SourceSafe時存在的復雜性,加上它的非標準化外觀和文檔資料的不充分,使得許多人無法實現和使用 Visual SourceSafe。許多人甚至沒有試用 Vi s u a l  S o u r c e S a f e的勇氣。我知道許多高水平技術人員無法啟動Visual SourceSafe并使之運行,其中有一位是管理控制系統項目師。盡管如此,Visual SourceSafe仍然不失為一個很好的工具,如果你花點時間將它安裝在你的小組工作環境中,你一定會為此而感到非常高興。在本章中我并不是為你提供一些指導原則來幫助你創建更好的代碼,我的目的是告訴你如何使用工具來大幅度減少管理大型項目和開發小組所需的資源量,這個工具能夠很容易處理在沒有某種集成式解決方案情況下幾乎無法處理的各種問題。

    標簽: 源代碼 控制

    上傳時間: 2013-10-24

    上傳用戶:lgd57115700

  • 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

  • USB Anaslyst-I分析儀軟件

    USB Anaslyst-I分析儀軟件 安裝程序

    標簽: Anaslyst-I USB 分析儀 軟件

    上傳時間: 2013-10-09

    上傳用戶:qijian11056

  • USB Anaslyst-I分析儀軟件

    USB Anaslyst-I分析儀軟件 安裝程序

    標簽: Anaslyst-I USB 分析儀 軟件

    上傳時間: 2013-11-17

    上傳用戶:yczrl

  • 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

  • Altium_Designer_winter_09電路設計案例教程-Altium概述

    《Altium_Designer_winter_09電路設計案例教程》-第1講_《Altium概述》

    標簽: Altium_Designer_winter Altium 09 電路設計

    上傳時間: 2013-10-12

    上傳用戶:ywqaxiwang

  • 簡述PCB線寬和電流關系

      PCB線寬和電流關系公式   先計算Track的截面積,大部分PCB的銅箔厚度為35um(即 1oz)它乘上線寬就是截面積,注意換算成平方毫米。 有一個電流密度經驗值,為15~25安培/平方毫米。把它稱上截面積就得到通流容量。   I=KT(0.44)A(0.75), 括號里面是指數,   K為修正系數,一般覆銅線在內層時取0.024,在外層時取0.048   T為最大溫升,單位為攝氏度(銅的熔點是1060℃)   A為覆銅截面積,單位為square mil.   I為容許的最大電流,單位為安培。   一般 10mil=0.010inch=0.254mm 1A , 250mil=6.35mm 8.3A ?倍數關系,與公式不符 ?  

    標簽: PCB 電流

    上傳時間: 2013-11-12

    上傳用戶:ljd123456

  • Protel DXP2004 Sp2案例與上機指導

    DXP 2004 Sp2案例與上機指導

    標簽: Protel 2004 DXP Sp2

    上傳時間: 2013-10-17

    上傳用戶:yt1993410

  • XAPP520將符合2.5V和3.3V I/O標準的7系列FPGA高性能I/O Bank進行連接

    XAPP520將符合2.5V和3.3V I/O標準的7系列FPGA高性能I/O Bank進行連接  The I/Os in Xilinx® 7 series FPGAs are classified as either high range (HR) or high performance (HP) banks. HR I/O banks can be operated from 1.2V to 3.3V, whereas HP I/O banks are optimized for operation between 1.2V and 1.8V. In circumstances that require an HP 1.8V I/O bank to interface with 2.5V or 3.3V logic, a range of options can be deployed. This application note describes methodologies for interfacing 7 series HP I/O banks with 2.5V and 3.3V systems

    標簽: XAPP FPGA Bank 520

    上傳時間: 2013-11-06

    上傳用戶:wentianyou

主站蜘蛛池模板: 桃园县| 长兴县| 福建省| 古蔺县| 西藏| 肇州县| 阳江市| 武陟县| 温宿县| 女性| 怀化市| 普定县| 淮北市| 陇南市| 揭阳市| 庆安县| 新野县| 资中县| 乐平市| 若尔盖县| 东安县| 襄樊市| 盐边县| 壶关县| 温宿县| 凉山| 秦皇岛市| 北票市| 渝中区| 武功县| 巫山县| 维西| 桂林市| 巩留县| 辽宁省| 高淳县| 攀枝花市| 仁布县| 乐都县| 永和县| 白水县|