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.
標(biāo)簽: Modelling Guide Navy VHDL
上傳時(shí)間: 2013-11-20
上傳用戶:pzw421125
This hands-on, one-stop guide delivers the focused, streamlined direction you need to get your Web solutions up and running quickly. Zero in on key ASP.NET configuration details and techniques using quick-reference tables, lists, coding and more.
標(biāo)簽: streamlined direction hands-on delivers
上傳時(shí)間: 2015-01-11
上傳用戶:Thuan
Java/J2EE application framework based on [Expert One-on-One J2EE Design and Development] by Rod Johnson. Includes JavaBeans-based configuration, an AOP framework, declarative transaction management, JDBC and Hibernate support, and a web MVC framework.
標(biāo)簽: Development application One-on-One framework
上傳時(shí)間: 2014-01-09
上傳用戶:saharawalker
重寫了微軟提供SQLHelper(共用的數(shù)據(jù)庫調(diào)用接口) 1把SqlHelper的connectionString做成一個(gè)全局量,統(tǒng)一設(shè)置數(shù)據(jù)庫連接字符串 2增加了返回特定表名的DataSet的各接口。 可在項(xiàng)目的config文件設(shè)置數(shù)據(jù)庫連接字符串 private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"] <!-- application specific settings --> <appSettings> <add key="ConnectionString" value="packet size=4096 user id=sa data source=localhost persist security info=True initial catalog=NorthWind password= "/> </appSettings> 當(dāng)然可以把數(shù)據(jù)庫連接方法修改后直接用。
標(biāo)簽: connectionString SQLHelper SqlHelper 微軟
上傳時(shí)間: 2013-12-12
上傳用戶:釣鰲牧馬
Tomcat: The Definitive Guide offers something for everyone who uses Tomcat. System and network administrators will find detailed instructions on installation, configuration, and maintenance.
標(biāo)簽: Tomcat Definitive something everyone
上傳時(shí)間: 2015-03-02
上傳用戶:ynsnjs
/* RSA Demo 1.0 版 * 版權(quán)所有 (C) 2004 趙春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程序調(diào)用Miracl ver 4.82大數(shù)運(yùn)算庫,詳見其附帶手冊。 * P,Q,N,D,E使用RSATool2生成。 */ 編譯提示: 一:將Project-Settings-Settings For(All Configuration)-C/C++中Category項(xiàng)的 Precompiled Headers設(shè)置成:Automatic use of precompiled headers(圖1)。 二:將ms32.lib添加到工程中(圖2)。 三:MIRACL是C庫。 extern "C" { #include "miracl.h" #include "mirdef.h" } #pragma comment( lib, "ms32.lib" )
上傳時(shí)間: 2015-03-23
上傳用戶:leehom61
/* RSA Demo 1.0 版 * 版權(quán)所有 (C) 2004 趙春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程序調(diào)用Miracl ver 4.82大數(shù)運(yùn)算庫,詳見其附帶手冊。 * P,Q,N,D,E使用RSATool2生成。 */ 編譯提示: 一:將Project-Settings-Settings For(All Configuration)-C/C++中Category項(xiàng)的 Precompiled Headers設(shè)置成:Automatic use of precompiled headers(圖1)。 二:將ms32.lib添加到工程中(圖2)。 三:MIRACL是C庫。 extern "C" { #include "miracl.h" #include "mirdef.h" } #pragma comment( lib, "ms32.lib" )
上傳時(shí)間: 2013-12-17
上傳用戶:liansi
USB Manager(usbmgr) 0.4.8 Shuu Yamaguchi <shuu@wondernetworkresources.com> Special Helper: Philipp Thomas When USB devices connect to or disconnect from a USB hub, the usbmgr works as the following according to configuration. a) It loads and unloads files Linux kernel modules. b) It execute file to setup USB devices.
標(biāo)簽: wondernetworkresources Yamaguchi Manager Special
上傳時(shí)間: 2014-01-27
上傳用戶:zhaiyanzhong
This model simulates a CDMA2000 1xRTT Forward link (between Base Station and Mobile Station). In particular, it simulates the Radio Configuration 3 of a Forward Fundamental channel. The block CDMA2k: Initial settings allows you to set different parameters such as data rate, Power Control SubChannel insertion rate, spreading code index, QOSF index and the channel model.
標(biāo)簽: Station simulates Forward between
上傳時(shí)間: 2015-03-28
上傳用戶:13215175592
周立功D12開發(fā)板中帶的WINDOWS XP驅(qū)動(dòng)程序,在編譯后會(huì)出現(xiàn)USB設(shè)備不能正常工作. 以下是修改的代碼,修改后可以正常工作. 在d12.c和Ioctl.c中, 將+256去掉,這個(gè)會(huì)引去枚舉設(shè)備時(shí),設(shè)備描述符的長度不對,修改后: siz = sizeof(USB_CONFIGURATION_DESCRIPTOR) 在d12.c中的D12_SelectInterface函數(shù)中, 設(shè)備查詢完接口后有一段代碼,也會(huì)引起驅(qū)動(dòng)返回不對,需要屏蔽下面的代碼 // Retrieve the selected Configuration and Interface 修改上面兩處后,USB可以正常使用了.
標(biāo)簽: WINDOWS D12 開發(fā)板 驅(qū)動(dòng)程序
上傳時(shí)間: 2014-01-06
上傳用戶:it男一枚
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1