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

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

Front-AMP

  • 4x4 BLAST;MIMO ML outputs

     19.2 Mbps 4x4 BLAST&MIMO detector with soft ML outputs。純英文論文,外國文獻

    標簽: 論文 方法 MIMO BLAST

    上傳時間: 2015-04-21

    上傳用戶:asdf20

  • 5.1功放全套方案PT2258

    UNTER EQU 35H;顯示計數(shù) REMVOL  EQU  36H;音量連續(xù)控制 DISPBUFF1 EQU 37H; DISPBUFF2 EQU 38H; DISPBUFF3 EQU 39H; DISPBUFF EQU 3AH; SDA BIT P3.4 SCL BIT P3.2 MTD EQU 30H;PT2258數(shù)據(jù)首址 NUMBYT EQU 3BH;PT2258數(shù)據(jù)位數(shù) CS_X1 EQU 3CH;遙控 CS0_X1 EQU 3DH U0_X1 EQU 3EH;遙控數(shù)據(jù)暫存區(qū) NO_M EQU 40H;數(shù)據(jù)碼 FRONT EQU 41H

    標簽: PT2258

    上傳時間: 2015-04-26

    上傳用戶:solomon33

  • 運算放大器

    理想的放大器 目前,廠商在線性IC研發(fā)上都有重大的突破。使IC型運算放大器的特性和理想相當接近。尤其在低頻操作下,OP Amp電路的工作情形實在太像一個理想放大器,幾乎與理論的推測完全相符。→理想的放大器該具備什麼特性?

    標簽: 算放大器原理

    上傳時間: 2016-07-16

    上傳用戶:WALTER

  • 自動控制原理習題及答案.doc

    自動控制原理習題及答案.doc

    標簽: amp doc 46 自動控制原理

    上傳時間: 2016-08-01

    上傳用戶:qaz1008611

  • 數(shù)據(jù)結構實驗

    #include <iostream> #include <stdio.head> #include <stdlib.head> #include <string.head> #define ElemType int #define max 100 using namespace std; typedef struct node1 { ElemType data; struct node1 *next; }Node1,*LinkList;//鏈棧 typedef struct { ElemType *base; int top; }SqStack;//順序棧 typedef struct node2 { ElemType data; struct node2 *next; }Node2,*LinkQueue; typedef struct node22 { LinkQueue front; LinkQueue rear; }*LinkList;//鏈隊列 typedef struct { ElemType *base; int front,rear; }SqQueue;//順序隊列 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 //1.采用鏈式存儲實現(xiàn)棧的初始化、入棧、出棧操作。 LinkList CreateStack()//創(chuàng)建棧 { LinkList top; top=NULL; return top; } bool StackEmpty(LinkList s)//判斷棧是否為空,0代表空 { if(s==NULL) return 0; else return 1; } LinkList Pushead(LinkList s,int x)//入棧 { LinkList q,top=s; q=(LinkList)malloc(sizeof(Node1)); q->data=x; q->next=top; top=q; return top; } LinkList Pop(LinkList s,int &e)//出棧 { if(!StackEmpty(s)) { printf("棧為空。"); } else { e=s->data; LinkList p=s; s=s->next; free(p); } return s; } void DisplayStack(LinkList s)//遍歷輸出棧中元素 { if(!StackEmpty(s)) printf("棧為空。"); else { wheadile(s!=NULL) { cout<<s->data<<" "; s=s->next; } cout<<endl; } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 //2.采用順序存儲實現(xiàn)棧的初始化、入棧、出棧操作。 int StackEmpty(int t)//判斷棧S是否為空 { SqStack.top=t; if (SqStack.top==0) return 0; else return 1; } int InitStack() { SqStack.top=0; return SqStack.top; } int pushead(int t,int e) { SqStack.top=t; SqStack.base[++SqStack.top]=e; return SqStack.top; } int pop(int t,int *e)//出棧 { SqStack.top=t; if(!StackEmpty(SqStack.top)) { printf("棧為空."); return SqStack.top; } *e=SqStack.base[s.top]; SqStack.top--; return SqStack.top; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 //3.采用鏈式存儲實現(xiàn)隊列的初始化、入隊、出隊操作。 LinkList InitQueue()//創(chuàng)建 { LinkList head; head->rear=(LinkQueue)malloc(sizeof(Node)); head->front=head->rear; head->front->next=NULL; return head; } void deleteEle(LinkList head,int &e)//出隊 { LinkQueue p; p=head->front->next; e=p->data; head->front->next=p->next; if(head->rear==p) head->rear=head->front; free(p); } void EnQueue(LinkList head,int e)//入隊 { LinkQueue p=(LinkQueue)malloc(sizeof(Node)); p->data=e; p->next=NULL; head->rear->next=p; head->rear=p; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 //4.采用順序存儲實現(xiàn)循環(huán)隊列的初始化、入隊、出隊操作。 bool InitQueue(SqQueue &head)//創(chuàng)建隊列 { head.data=(int *)malloc(sizeof(int)); head.front=head.rear=0; return 1; } bool EnQueue(SqQueue &head,int e)//入隊 { if((head.rear+1)%MAXQSIZE==head.front) { printf("隊列已滿\n"); return 0; } head.data[head.rear]=e; head.rear=(head.rear+1)%MAXQSIZE; return 1; } int QueueLengthead(SqQueue &head)//返回隊列長度 { return (head.rear-head.front+MAXQSIZE)%MAXQSIZE; } bool deleteEle(SqQueue &head,int &e)//出隊 { if(head.front==head.rear) { cout<<"隊列為空!"<<endl; return 0; } e=head.data[head.front]; head.front=(head.front+1)%MAXQSIZE; return 1; } int gethead(SqQueue head)//得到隊列頭元素 { return head.data[head.front]; } int QueueEmpty(SqQueue head)//判斷隊列是否為空 { if (head.front==head.rear) return 1; else return 0; } void travelQueue(SqQueue head)//遍歷輸出 { wheadile(head.front!=head.rear) { printf("%d ",head.data[head.front]); head.front=(head.front+1)%MAXQSIZE; } cout<<endl; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 //5.在主函數(shù)中設計一個簡單的菜單,分別測試上述算法。 int main() { LinkList top=CreateStack(); int x; wheadile(scanf("%d",&x)!=-1) { top=Pushead(top,x); } int e; wheadile(StackEmpty(top)) { top=Pop(top,e); printf("%d ",e); }//以上是鏈棧的測試 int top=InitStack(); int x; wheadile(cin>>x) top=pushead(top,x); int e; wheadile(StackEmpty(top)) { top=pop(top,&e); printf("%d ",e); }//以上是順序棧的測試 LinkList Q; Q=InitQueue(); int x; wheadile(scanf("%d",&x)!=-1) { EnQueue(Q,x); } int e; wheadile(Q) { deleteEle(Q,e); printf("%d ",e); }//以上是鏈隊列的測試 SqQueue Q1; InitQueue(Q1); int x; wheadile(scanf("%d",&x)!=-1) { EnQueue(Q1,x); } int e; wheadile(QueueEmpty(Q1)) { deleteEle(Q1,e); printf("%d ",e); } return 0; }

    標簽: 數(shù)據(jù)結構 實驗

    上傳時間: 2018-05-09

    上傳用戶:123456..

  • 臺灣合泰HT9B92 TSSOP48 LCD液晶驅動芯片

      產品型號:HT9B92  產品品牌:HOLTEK/合泰 封裝形式:TSSOP48/LQFP48   產品年份:新年份 原廠直銷,工程服務,技術支持,價格更具優(yōu)勢!   RAM 映射 36×4 LCD 顯示驅動器 概述 HT9B92 是一款存儲器映射和多功能LCD控制驅動芯片。該芯片顯示模式有144 點(36×4 )。 HT9B92 軟件配置特性使得它適用于多種LCD應用,包括LCD 模塊和顯示子系統(tǒng)。HT9B92 通過雙線雙向 I2C 接口與大多數(shù)微處理器/ 微控制器進行通信。 功能特點 ● 工作電壓:2.4V~5.5V ● 內部集成振蕩電路 ● Bias: 1/2 or 1/3; Duty: 1/4 ● 帶電壓跟隨器的內部LCD 偏置發(fā)生器 ● 提供VLCD 引腳來調整LCD 工作電壓 ● I2C接口 ● 可選 LCD 幀頻率 ● 多達36×4 位RAM 用來存儲顯示數(shù)據(jù) ● 最大顯示模式36×4:36 SEGs 和4 COMs ● 多種閃爍模式:不閃爍,0.5Hz,1Hz,2Hz ● 寫地址自動增加 ● 低功耗省電模式 ● 采用硅柵極CMOS 制造工藝 ● 封裝類型:48-pin TSSOP/LQFP ● 市面可兼容型號:元泰VINTEK:VKL44A TSSOP48封裝,VKL144B QFN48(6MM*6MM)封裝,VKL128 LQFP44封裝,VKL060 SSOP24封裝 ------ 同種腳位可以任意切換,少腳位更具性價比高,方便設計等特點。 ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●   產品型號:VKL144A 產品品牌:VINTEK/元泰 封裝形式:TSSOP48 產品年份:新年份 原廠直銷,工程服務,技術支持,價格更具優(yōu)勢!   超低功耗液晶LCD顯示驅動芯片 概述 VKL144A是一款性能優(yōu)越的字段式液晶顯示驅動芯片,由于其驅動段位多達144段和超低功耗的工藝設計特點。還具有性能穩(wěn)定和低價格優(yōu)勢、供貨穩(wěn)定,目前被業(yè)界廣泛應用在眾多的儀器儀表的產品上。比如手持式儀表、費率表、工控儀表、醫(yī)療儀器、專用測量儀表頭等等設備上使用 功能特點 ● 液晶驅動輸出: Common 輸出4線 Segment 輸出36線 ● 內置Display data RAM (DDRAM) 內置RAM容量:36*4 =144 bit ● 液晶驅動的電源電路 1/2 ,1/3 Bias ,1/4 Duty 內置Buffer AMP I2C串行接口(SCL, SDA) ● 內置振蕩電路 ● 不需要外圍部件 ● 低功耗設計 ● 搭載等待模式 ● 內置Power-on Reset電路 ● 搭載閃爍功能 ● 工作電源電壓: 2.5-5.5V ★應用推薦: 各種費率表,電表、水表、氣表、熱表、各種計量專用表頭。 ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品型號:VKL144B   產品品牌:VINTEK/元泰 封裝形式:QFN48L(6MM*6MM) 產品年份:新年份 原廠直銷,工程服務,技術支持,價格更具優(yōu)勢!   超低功耗液晶LCD顯示驅動芯片 概述 VKL144B是一款性能優(yōu)越的字段式液晶顯示驅動芯片,由于其驅動段位多達144段和超低功耗的工藝設計特點。還具有性能穩(wěn)定和低價格優(yōu)勢、供貨穩(wěn)定,目前被業(yè)界廣泛應用在眾多的儀器儀表的產品上。比如手持式儀表、費率表、工控儀表、醫(yī)療儀器、專用測量儀表頭等等設備上使用 功能特點 ● 液晶驅動輸出: Common 輸出4線 Segment 輸出36線 ● 內置Display data RAM (DDRAM) 內置RAM容量:36*4 =144 bit ● 液晶驅動的電源電路 1/2 ,1/3 Bias ,1/4 Duty 內置Buffer AMP I2C串行接口(SCL, SDA) ● 內置振蕩電路 ● 不需要外圍部件 ● 低功耗設計 ● 搭載等待模式 ● 內置Power-on Reset電路 ● 搭載閃爍功能 ● 工作電源電壓: 2.5-5.5V ★應用推薦: 各種費率表,電表、水表、氣表、熱表、各種計量專用表頭。 HOLTEK合泰全系列產品 芯片介紹如下: 一.LCD液晶顯示驅動控制器              HT1620   HT1620G   HT1621   HT1621B   HT1621G   HT1622   HT1622G   HT1623  HT1625   HT1626    HT16C21   HT16C22   HT16C23   HT16C24  HT1620   HT16220  HT1647   HT1650   HT1660    HT1670   HT16K23   HT9B92   HT9B92G    HT9B95A    HT9B95B   HT9B95C   HT16LK24  HT16L21  HT16L23   HT1611C  HT1613C  HT1616C (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)   二:LED/VFD控制、驅動器 HT16506   HT16511   HT16512   HT16515   HT16514   HT16561 HT16562  HT16565  HT16566  HT16523  HT16525  HT1632C   HT16K33  HT16K33  HT16528-001  HT16528-002  HT16528-003 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)         三.Touch Key觸摸按鍵電路/ I/O Flash MCU             BS801B/C   BS802B/C   BS804B/C   BS804B/C  BS806B/C   BS808B/C BS812A-1   BS813A-1   BS814A-1   BS814A-2  BS816A-1   BS818A-2 BS8112A-3   BS8116A-3    BS83A02A-4    BS83A04A-3   BS83A04A-4 BS83B04A-4  BS83B08A-3   BS83B08A-4   BS83B12A-3   BS83B12A-4 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!) 四.HT7XXX全系列 微功耗LDO              HT1015-1  HT71xx-1  HT71xx-2 HT71xx-3 HT71xx-3   HT75xx-1   HT75xx-2  HT75xx-3 HT73xx  HT72xx   HT78xx   Power management(電源LDO穩(wěn)壓管理IC) HT71**為30MA穩(wěn)壓芯片 產品:HT7130,HT7133,HT7136,HT7144,HT7150 HT75**為100MA穩(wěn)壓芯片 產品:HT7530,HT7533,HT7536,HT7544,HT7550 HT73**為300MA穩(wěn)壓芯片 產品:HT7318,HT7325,HT7327,HT7330,HT7333,HT7335,HT7350 HT70**為電壓檢測芯片 產品:HT7022,HT7024,HT7027,HT7033,HT7039,HT7044,HT7050 HT77::為升壓DC-DC芯片 產品:HT7727,HT7730,HT7733,HT7737,HT7750 LDO與探測器和數(shù)據(jù)收發(fā):HT71DXX     高電源抑制比300mA雙LDO穩(wěn)壓器:HT72Dxxxx      高電源抑制比300mA LDO穩(wěn)壓器:HT72BXX   高電源抑制比 150mA LDO穩(wěn)壓器:HT75BXX 高電源抑制比 500mA LDO穩(wěn)壓器:HT78BXX    3SOT89 T/R         電壓檢測器系列(小功率):HT70xxA-1   HT70xxA-2   HT70xxA-3       PFM升壓DC-DC變換器:HT77xx   HT77xxA   HT77S10   HT77S11           PFM同步升壓直流/直流轉換器:HT77xxS   HT77xxSA        LED照明驅動:HT7L4811   HT7L4091  HT7L4091   HT7L2102   HT7L2103   HT7L2103        白光LED背光驅動:HT7936  HT7937  HT7938  HT7938A  HT7939  HT7943   HT7945        降壓直流-直流轉換器:HT7465   HT7466         AC/DC PWM變換器:HT7A3942   HT7A6002   HT7A6003   HT7A4016    充電泵直流/直流轉換器:HT7660   (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)   五:時鐘IC及其他消費類IC              HT1380   HT1380A   HT1381   HT1381A   HT1382  HT9200A   HT9170  HT9172   HT9032   HT8970   HT9247   HT82V731   HT82V736   HT6221 HT6222   HT62104   HT12A\E   HT12D\F (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)   六.電可擦除只讀存儲器              HT2201   HT24LC02  HT24LC02A  HT24LC04  HT24LC08  HT24LC16  HT24LC32         HT24LC64   HT24LC128   HT24LC256   HT93LC46   HT93LC66   HT93LC86 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)   七.各類編碼/射頻/解碼器 HT12D   HT12E   HT12F   HT6010   HT6012   HT6014   HT6026   HT6030 HT6032   HT6034   HT600   HT604L   HT6207   HT680   HT6P20B   HT6P20D    HT6P40B2    HT6P40C2   HT6P40D2   HT6P40E2   HT6P40B2T3    HT6P40C2T3 HT6P40D2T3   HT6P40E2T3    HT6P423A   HT6P423A   HT6P427A   HT6P433A        HT6P437A   HT12C2T3   HT12C2T4   HT12E2T3   HT12E2T4   HT12E2T4       HT16C2T3   HT16C2T4   HT16E2T3   HT16E2T4   HT16G2T3   HT16G2T4   HT9831   HT7610A   HT7611A/B   HT7612   HT7612B (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)           八.MCU(微控IC) HT48 系列 應用于遙控,電扇/電燈控制,洗衣機控制,電子秤,玩具及各種系統(tǒng)控制. 產品:HT48R05,HT48R06,HT48R30,HT48R50 HT49系列 應用于多種LCD DI低功耗應用,如電子秤,休閑產品,高階的家用電器 產品:HT49R30,HT49R50 HT46帶A/D系列 適用于充電器控制,電磁爐等 產品:HT46R47,HT46R22,HT46R23,HT46R24,HT46R51 HT46帶A/D及LCD系列 適用于洗衣機控制器,相機控制器和帶LCD顯示的家用電器系列 產品:HT46R62,HT46R63,HT46R64 HT48RA系列適用于紅外遙控器以及各種電子系統(tǒng)的控制器 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)     九.放大器/音頻放大器 /DA轉換器              HT9231  HT9232  HT9234  HT9251  HT9252  HT9254  HT9274  HT9291  HT9292  HT9294 HT82V732  HT82V733  HT82V735  HT82V736  HT82V736       HT82V739   HT82V73   HT82V731   HT82V737   HT82V738 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)         十.音調IC/發(fā)生器 /接收器              HT9200A   HT9200B   HT9170B   HT9170D   HT9172   HT8970   HT8972 (全部封裝、規(guī)格形式 均有海量現(xiàn)貨!)     IC型號眾多,未能一一收錄。    芯片主要應用領域如下:  ★顯示模塊:電子秤、無線麥克風、錄音筆、影音多媒體、小家電周邊 ★家電類:電風扇、電飯煲、玩具、冷氣機、暖風機、空調扇、飲水機、抽油煙機、消毒柜、電熱水器、面包機、豆?jié){機、咖啡壺、電冰箱、洗衣機控制器、空調控制板等。 ★通訊類:來電顯示電話、無繩電話、IC電話、投幣電話、對講機等 ★玩具游戲類:無線遙控車、PS游戲機、跳舞毯、方向盤、手柄、電子槍、PS開機IC等。 ★計算機周邊:顯示器控制、PC-MOUSE、單/雙滾、遙控MOUSE、鍵盤、手寫板等。 ★智能卡類:IC卡煤氣表、電能表、水表、IC讀寫器、IC卡門禁系統(tǒng)等。 ★汽車及防盜類:機車防盜器、********器、汽車天線控制器、里程表、汽車日歷等。 ★醫(yī)用保健類:電子針灸器、甩脂機、智能體溫計、LCD顯示血壓計、跑步機、按摩器、按摩墊、按摩椅   等。 ★儀表類:電壓表、瓦斯表、電池電壓檢測器、頻率計、計數(shù)器、電度表、水位檢測器等。 ★其它類:充電器、照相機、電子萬年鐘、自動給皂機、路燈控制器、呼叫服務器等    

    標簽: TSSOP B92 HT9 LCD HT 9B 92 48 合泰 液晶驅動

    上傳時間: 2018-12-07

    上傳用戶:shubashushi66

  • AD826

    High-Speed, Low-Power Dual Operational Amplifier The AD826 features high output current drive capability of 50 mA min per amp, and is able to drive unlimited capacitive loads. With a low power supply current of 15 mA max for both amplifiers, the AD826 is a true general purpose operational amplifier. The AD826 is ideal for power sensitive applications such as video cameras and portable instrumentation. The AD826 can operate from a single +5 V supply, while still achieving 25 MHz of band width. Furthermore the AD826 is fully specified from a single +5 V to ±15 V power supplies. The AD826 excels as an ADC/DAC buffer or active filter in data acquisition systems and achieves a settling time of 70 ns to 0.01%, with a low input offset voltage of 2 mV max. The AD826 is available in small 8-lead plastic mini-DIP and SO packages.

    標簽: 826 AD

    上傳時間: 2020-04-19

    上傳用戶:su1254

  • 隊列函數(shù)queue

    參照棧類模板的例子編寫一個隊列類模板class <T> Queue,私有成員包括:隊首指針Front,隊尾指針Tail,隊列容積max。實現(xiàn):構造函數(shù)Queue,復制構造函數(shù)Queue,析構函數(shù)~Queue,入隊函數(shù)In,出隊函數(shù)Out(每次出隊,后面的元素自動前移一位),判隊列空函數(shù)Empty。并分別用隊列類模板定義int和double對象,通過實例調用各個成員函數(shù)。

    標簽: Queue 函數(shù) double class Front Empty 隊列 Tail 模板 Out

    上傳時間: 2020-05-04

    上傳用戶:1qw2e3r4t5y6u7i8

  • Advances+in+Mobile+Radio+Access+Networks

    This book gives a comprehensive overview of the technologies for the advances of mobile radio access networks. The topics covered include linear transmitters, superconducting filters and cryogenic radio frequency (RF) front head, radio over fiber, software radio base stations, mobile terminal positioning, high speed downlink packet access (HSDPA), multiple antenna systems such as smart antennas and multiple input and multiple output (MIMO) systems, orthogonal frequency division multiplexing (OFDM) systems, IP-based radio access networks (RAN), autonomic networks, and ubiquitous networks. 

    標簽: Advances Networks Access Mobile Radio in

    上傳時間: 2020-05-26

    上傳用戶:shancjb

  • Cognitive+Radio+Receiver+Front-Ends

    Wireless technology has been evolving at a breakneck speed. The total number of cell-phones in use (as of 2011) was over 6 billion for a 7 billion world population [1] constituting 87% of the world population. Additionally, with user convenience be- coming paramount, more and more functions are being implemented wirelessly. 

    標簽: Front-Ends Cognitive Receiver Radio

    上傳時間: 2020-05-26

    上傳用戶:shancjb

主站蜘蛛池模板: 富源县| 永嘉县| 桐梓县| 黔南| 深州市| 永登县| 镇康县| 炉霍县| 安阳县| 梅州市| 繁昌县| 南京市| 昌都县| 共和县| 南漳县| 离岛区| 宜章县| 芒康县| 长海县| 汝阳县| 南澳县| 晴隆县| 织金县| 大荔县| 永济市| 清苑县| 汝南县| 彭山县| 高要市| 贡嘎县| 嵊州市| 鱼台县| 临桂县| 任丘市| 宜章县| 临沧市| 墨竹工卡县| 浮梁县| 临夏县| 囊谦县| 额尔古纳市|