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

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

Buffered<b>image</b>

  • 自己做的單片機Proteus仿真實例

    自己在學校的時候做的一些單片機仿真實例和一些資料,希望對大家有些幫助

    標簽: Proteus 單片機 仿真實例

    上傳時間: 2013-11-08

    上傳用戶:oojj

  • 單片機開發板配套52個程序(c語言源代碼)

    買的開發板上帶的52個應用于實物的程序,希望對大家有幫助

    標簽: 單片機開發板 c語言 程序 源代碼

    上傳時間: 2013-11-04

    上傳用戶:xymbian

  • ADI在線工具簡化工程師的設計

      創新、效能、卓越是ADI公司的文化支柱。作為業界公認的全球領先數據轉換和信號調理技術領先者,我們除了提供成千上萬種產品以外,還開發了全面的設計工具,以便客戶在整個設計階段都能輕松快捷地評估電路。

    標簽: ADI 在線工具 工程師

    上傳時間: 2013-11-25

    上傳用戶:kachleen

  • ADI在線工具簡化工程師的設計

      創新、效能、卓越是ADI公司的文化支柱。作為業界公認的全球領先數據轉換和信號調理技術領先者,我們除了提供成千上萬種產品以外,還開發了全面的設計工具,以便客戶在整個設計階段都能輕松快捷地評估電路。

    標簽: ADI 在線工具 工程師

    上傳時間: 2013-10-18

    上傳用戶:cxl274287265

  • Atheros無線芯片AR-6000系列wince 6驅動源代碼(這東西我也沒用過別問我,我是搜別的wince資源搜到的) AR6K SDIO support. Requires firmware

    Atheros無線芯片AR-6000系列wince 6驅動源代碼(這東西我也沒用過別問我,我是搜別的wince資源搜到的) AR6K SDIO support. Requires firmware 1.1 on SD13 cards. readme: Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution. 轉自Tony嵌入式,原文地址:http://www.cevx.com/bbs/dispbbs.asp?boardID=4&ID=11762&page=1

    標簽: wince Requires firmware Atheros

    上傳時間: 2014-11-11

    上傳用戶:bibirnovis

  • Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on

    Atheros Communications AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution.

    標簽: Communications installation Atheros Driver

    上傳時間: 2016-10-27

    上傳用戶:hebmuljb

  • AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Em

    AR6001 WLAN Driver for SDIO installation Read Me March 26,2007 (based on k14 fw1.1) Windows CE Embedded CE 6.0 driver installation. 1. Unzip the installation file onto your system (called installation directory below) 2. Create an OS design or open an existing OS design in Platform Builder 6.0. a. The OS must support the SD bus driver and have an SD Host Controller driver (add these from Catalog Items). b. Run image size should be set to allow greater than 32MB. 3. a. From the Project menu select Add Existing Subproject... b. select AR6K_DRV.pbxml c. select open This should create a subproject within your OS Design project for the AR6K_DRV driver. 4. Build the solution.

    標簽: installation Windows Driver March

    上傳時間: 2014-09-06

    上傳用戶:yuzsu

  • outguess

    信息隱藏軟件Outguess的源碼 Outguess主要用于JPEg圖象的steganography,本軟件來自Outguess的作者Provos,歡迎大家下載研究-Information Hiding Outguess source software is mainly used Outguess JPEG image steganography, this software from Outguess author of Provos, welcomed everyone to download research

    標簽: outguess

    上傳時間: 2017-03-07

    上傳用戶:Liquor

  • 數據結構實驗

    #include <stdio.h>   #include <stdlib.h> ///鏈式棧      typedef struct node   {       int data;       struct node *next;   }Node,*Linklist;      Linklist Createlist()   {       Linklist p;       Linklist h;       int data1;       scanf("%d",&data1);       if(data1 != 0)       {           h = (Node *)malloc(sizeof(Node));           h->data = data1;           h->next = NULL;       }       else if(data1 == 0)       return NULL;       scanf("%d",&data1);       while(data1 != 0)       {           p = (Node *)malloc(sizeof(Node));           p -> data = data1;           p -> next = h;           h = p;           scanf("%d",&data1);       }       return h;   }      void Outputlist(Node *head)   {       Linklist p;       p = head;       while(p != NULL )       {           printf("%d ",p->data);           p = p->next;       }       printf("\n");   }      void Freelist(Node *head)   {       Node *p;       Node *q = NULL;       p = head;       while(p != NULL)       {           q = p;           p = p->next;           free(q);       }   }      int main()   {       Node *head;       head = Createlist();          Outputlist(head);          Freelist(head);          return 0;   }   2.順序棧 [cpp] view plain copy #include <iostream>   #include <stdio.h>   #include <stdlib.h> ///順序棧   #define MaxSize 100      using namespace std;      typedef

    標簽: 數據結構 實驗

    上傳時間: 2018-05-09

    上傳用戶:123456..

  • sony CMOS傳感器 IMX385LQR-C DataSheet

    DescriptionThe IMX385LQR-C is a diagonal 8.35 mm (Type 1/2) CMOS active pixel type solid-state image sensor with a squarepixel array and 2.13 M effective pixels. This chip operates with analog 3.3 V, digital 1.2 V, and interface 1.8 V triplepower supply, and has low power consumption. High sensitivity, low dark current and no smear are achieved throughthe adoption of R, G and B primary color mosaic filters. This chip features an electronic shutter with variablecharge-integration time.(Applications: Surveillance cameras)

    標簽: CMOS傳感器 IMX385LQR-C

    上傳時間: 2022-06-18

    上傳用戶:

主站蜘蛛池模板: 安福县| 石首市| 长春市| 高邮市| 澄城县| 德令哈市| 三台县| 岚皋县| 元氏县| 于田县| 英吉沙县| 会东县| 舒城县| 沂水县| 长岛县| 高陵县| 金坛市| 土默特右旗| 马公市| 太原市| 噶尔县| 绥滨县| 黄浦区| 吕梁市| 西华县| 榆社县| 济南市| 景宁| 巴马| 新乐市| 香港 | 长宁县| 周宁县| 延津县| 中超| 英山县| 阿鲁科尔沁旗| 敖汉旗| 阿鲁科尔沁旗| 得荣县| 枣庄市|