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

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

Zero-configuration

  • Input The input contains blocks of 2 lines. The first line contains the number of sticks parts afte

    Input The input contains blocks of 2 lines. The first line contains the number of sticks parts after cutting, there are at most 64 sticks. The second line contains the lengths of those parts separated by the space. The last line of the file contains zero. Output The output should contains the smallest possible length of original sticks, one per line. Sample Input 9 5 2 1 5 2 1 5 2 1 4 1 2 3 4 0 Sample Output 6 5

    標(biāo)簽: contains The blocks number

    上傳時(shí)間: 2015-10-27

    上傳用戶:lepoke

  • CORDIC (Coordinate Rotation Digital Computer) is a method for computing elementary functions using m

    CORDIC (Coordinate Rotation Digital Computer) is a method for computing elementary functions using minimal hardware such as shifts, adds/subs and compares. CORDIC works by rotating the coordinate system through constant angles until the angle is reduces to zero. The angle offsets are selected such that the operations on X and Y are only shifts and adds.

    標(biāo)簽: Coordinate elementary computing functions

    上傳時(shí)間: 2015-11-08

    上傳用戶:saharawalker

  • This a USB core stack for the built-in USB device of LPC214x microcontrollers. It handles the ha

    This a USB core stack for the built-in USB device of LPC214x microcontrollers. It handles the hardware interface and USB enumeration/configuration. Also included are application examples like a USB joystick HID and USB serial port emulation.

    標(biāo)簽: microcontrollers USB the built-in

    上傳時(shí)間: 2015-11-14

    上傳用戶:talenthn

  • J2ME 是SUN 公司針對嵌入式、消費(fèi)類 電子產(chǎn)品推出的開發(fā)平臺(tái)

    J2ME 是SUN 公司針對嵌入式、消費(fèi)類 電子產(chǎn)品推出的開發(fā)平臺(tái),與J2SE 和J2EE 共同組成Java 技術(shù)的三個(gè)重要的分支。J2ME 實(shí)際 上是一系列規(guī)范的集合,由JCP 組織制定相關(guān)的Java Specification Request(JSR)并發(fā)布,各 個(gè)廠商會(huì)按照規(guī)范在自己的產(chǎn)品上進(jìn)行實(shí)現(xiàn),但是必須要通過TCK 測試,這樣確保兼容性。比 如MIDP2.0 規(guī)范就是在JSR118 中制定的。可能接觸過J2ME 的開發(fā)者會(huì)覺得說J2ME 是一系列 的規(guī)范不準(zhǔn)確吧。因?yàn)槲覀冊陂_發(fā)中用到了很多例如CLDC(Connected Limited Devices Configuration)和MIDP(Mobile Information Devices Profile)等內(nèi)容。

    標(biāo)簽: J2ME SUN 嵌入式 消費(fèi)類

    上傳時(shí)間: 2015-11-20

    上傳用戶:sardinescn

  • This book was written to provide a single reference for network administration in a Linux environmen

    This book was written to provide a single reference for network administration in a Linux environment. Beginners and experienced users alike should find the information they need to cover nearly all important administration activities required to manage a Linux network configuration.

    標(biāo)簽: administration environmen reference provide

    上傳時(shí)間: 2013-12-20

    上傳用戶:225588

  • BlueCore supports a mechanism called Device Firmware Upgrade (DFU) to enable its software and config

    BlueCore supports a mechanism called Device Firmware Upgrade (DFU) to enable its software and configuration data to be replaced. To guard against unauthorised changes, downloaded files can be verified by means of signatures. The DFU Tools are a suite of programs that enable firmware and persistent store files to be signed and combined to form DFU files.

    標(biāo)簽: mechanism BlueCore supports Firmware

    上傳時(shí)間: 2015-12-04

    上傳用戶:manking0408

  • The development of a data acquisition card based on USB bus is introduced in this article.It first d

    The development of a data acquisition card based on USB bus is introduced in this article.It first describes the configuration and principle of this card in the part of hardware design,and then the application program and device driver in the part of software design.Data acquisition program in firmware is also discussed.Finally,this data acquisition card is tested and evaluated in a program developed by Lab Windows CVI,which shows that this car is stable and reliable

    標(biāo)簽: development acquisition introduced article

    上傳時(shí)間: 2015-12-07

    上傳用戶:lijianyu172

  • Abstract: By using gateway systems on large 32-bit platforms, networks of small, 8- and 16-bit mic

    Abstract: By using gateway systems on large 32-bit platforms, networks of small, 8- and 16-bit microcontrollers can be monitored and controlled over the Internet. With embedded Linux, these gateways are easily moved from full-blown host PCs to embedded platforms like the PC104. In this class you will learn about hardware platforms that support embedded Linux, Linux kernel configuration, feature selection, installation, booting and tuning.

    標(biāo)簽: bit platforms Abstract networks

    上傳時(shí)間: 2014-01-05

    上傳用戶:kytqcool

  • The Microsoft® Cryptographic Application Programming Interface (CryptoAPI) provides services that

    The Microsoft® Cryptographic Application Programming Interface (CryptoAPI) provides services that enable application developers to add authentication, encoding, and encryption to their Microsoft Win32® -based applications. Application developers can use the functions in the CryptoAPI without knowing anything about the underlying implementation, in much the same way as they can use a graphics library without knowing anything about the particular graphics hardware configuration.

    標(biāo)簽: Cryptographic Application Programming Microsoft

    上傳時(shí)間: 2013-12-27

    上傳用戶:pinksun9

  • UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh

    UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C functions, but there are a few unique to the UnderC system which give you runtime access to the compiler. You may evaluate expressions, execute commands, compile code, etc. * Expands the text in expr using the UnderC preprocessor, putting the result into buff. void uc_macro_subst(const char* expr, char* buff, int buffsize) * Executes a UC #-command, like #l or #help. uc_cmd() expects the name of the command, _without_ the hash, e.g. uc_cmd("l fred.cpp") or uc_cmd("help"). void uc_cmd(const char* cmd) * Evaluates any C++ expression or statement will return non-zero if unsuccessful.

    標(biāo)簽: implementation Extensions libraries standard

    上傳時(shí)間: 2013-12-14

    上傳用戶:leehom61

主站蜘蛛池模板: 阳山县| 静宁县| 江源县| 邵阳市| 巴马| 绥江县| 无极县| 囊谦县| 丰都县| 孝义市| 鄯善县| 武鸣县| 吉林市| 郎溪县| 竹北市| 左权县| 资中县| 聂拉木县| 沙雅县| 崇义县| 怀来县| 永安市| 赤水市| 班戈县| 温州市| 休宁县| 榆树市| 苏尼特左旗| 喀什市| 习水县| 鹤山市| 玉门市| 娄底市| 曲阳县| 太谷县| 大冶市| 大城县| 屯昌县| 喀喇沁旗| 四会市| 永善县|