實時時鐘程序attachment:是8255 控制1602液晶的程序,用8255的A口作為1602的數據輸入口.
標簽: 8255 1602 attachment 程序
上傳時間: 2016-04-21
上傳用戶:qq21508895
get attachment file name
標簽: attachment file name get
上傳時間: 2017-02-18
上傳用戶:yuanyuan123
ATAPI標準資料。硬盤接口IDE(Integrated Drive Electronies)也稱AT總線接口,是當前新型硬盤驅動器普遍采用的一種接口。它最早由Texan和Compaq公司提出,目的是把硬盤控制器嵌入到驅動器中。1988年10月,ANSI中的X3T9.2工作組的一個委員會開始討論IDE的有關問題。1993年2月發表了該標準的3.1版本,使其成為了正式的ANSI標準,并賦予了一個新的名稱--ATA(AT attachment)。從概念上說,ATA與IDE具有基本相同的含義。
標簽: Electronies Integrated ATAPI Drive
上傳時間: 2014-09-05
上傳用戶:fxf126@126.com
Learn about the design tradeoffs involved in creating Windows CE .NET operating system (OS) solutions for hardware that implements one of many nonvolatile storage technologies. Different storage technologies, such as NAND and NOR flash memory, masked ROM, and electromechanical Advanced Technology attachment (ATA) or Integrated Drive Electronics (IDE) storage, impose design constraints and create opportunities for the software environment. (30 printed pages)
標簽: operating tradeoffs creating involved
上傳時間: 2014-01-11
上傳用戶:181992417
演算法評估 用空間和時間評估演算法效能 時間複雜度(Time Complexity) 空間複雜度(Space Complexity) 效能評估 效能分析(Performance Analysis):事前評估 效能評估(Performance Measurement):效能量測 評估時均假設處理的資料量為n到無窮大
標簽: 演算
上傳時間: 2015-06-13
上傳用戶:18007270712
The TAS3204 is a highly-integrated audio system-on-chip (SOC) consisting of a fully-programmable, 48-bit digital audio processor, a 3:1 stereo analog input MUX, four ADCs, four DACs, and other analog functionality. The TAS3204 is programmable with the graphical PurePath Studio? suite of DSP code development software. PurePath Studio is a highly intuitive, drag-and-drop environment that minimizes software development effort while allowing the end user to utilize the power and flexibility of the TAS3204’s digital audio processing core. TAS3204 processing capability includes speaker equalization and crossover, volume/bass/treble control, signal mixing/MUXing/splitting, delay compensation, dynamic range compression, and many other basic audio functions. Audio functions such as matrix decoding, stereo widening, surround sound virtualization and psychoacoustic bass boost are also available with either third-party or TI royalty-free algorithms. The TAS3204 contains a custom-designed, fully-programmable 135-MHz, 48-bit digital audio processor. A 76-bit accumulator ensures that the high precision necessary for quality digital audio is maintained during arithmetic operations. Four differential 102 dB DNR ADCs and four differential 105 dB DNR DACs ensure that high quality audio is maintained through the whole signal chain as well as increasing robustness against noise sources such as TDMA interference. The TAS3204 is composed of eight functional blocks: Clocking System Digital Audio Interface Analog Audio Interface Power supply Clocks, digital PLL I2C control interface 8051 MCUcontroller Audio DSP – digital audio processing 特性 Digital Audio Processor Fully Programmable With the Graphical, Drag-and-Drop PurePath Studio? Software Development Environment 135-MHz Operation 48-Bit Data Path With 76-Bit Accumulator Hardware Single-Cycle Multiplier (28 × 48)
上傳時間: 2016-05-06
上傳用戶:fagong
頻道 勁爆,看《歡樂頌》第二季 上傳 書房 登錄 注冊 菜單 收藏到書房下載文檔 上一頁 /386 下一頁 全屏 < 返回首頁 CNC初級教程/FANUC學校講義 頂 8 踩 0 瀏覽 1,196 收藏 89 評論 1 加入豆單 舉報 手機觀看
上傳時間: 2016-05-16
上傳用戶:kim123
32feet.NET is a shared-source project to make personal area networking technologies such as Bluetooth, Infrared (IrDA) and more, easily accessible from .NET code. Supports desktop, mobile or embedded systems. 32feet.NET is free for commercial or non-commercial use. If you use the binaries you can just use the library as-is, if you make modifications to the source you need to include the 32feet.NET License.txt document and ensure the file headers are not modified/removed. The project currently consists of the following libraries:- Bluetooth IrDA Object Exchange Bluetooth support requires a device with either the Microsoft, Widcomm, BlueSoleil, or Stonestreet One Bluetopia Bluetooth stack. Requires .NET Compact Framework v3.5 or above and Windows CE.NET 4.2 or above, or .NET Framework v3.5 for desktop Windows XP, Vista, 7 and 8. A subset of functionality is available for Windows Phone 8 and Windows Embedded Handheld 8 in the InTheHand.Phone.Bluetooth.dll library.
上傳時間: 2016-07-06
上傳用戶:magister2016
三種SMA接口pcb封裝 捕獲1.PNG (16.1 KB, 下載次數: 86) 捕獲2.PNG (17.35 KB, 下載次數: 39) 捕獲3.PNG (19.16 KB, 下載次數: 37)
上傳時間: 2017-03-06
上傳用戶:qjjjjwqvc
#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..