9163中文资料
mt9043中文资料_数据手册_IC数据表

-40°C to +85°C
8kHz input reference signals
• Provides C1.5, C2, C4, C6, C8, C16, and C19
Description
(STS-3/OC3 clock divided by 8) output clock signals
• Provides 5 different styles of 8 KHz framing pulses
Applications
https:/// Stratum 4; and ETSI ETS 300 011. It will meet the jitter/wander tolerance, jitter transfer, intrinsic jitter,
frequency accuracy, capture range, phase change
1
Zarlink Semiconductor Inc. Zarlink, ZL and the Zarlink Semiconductor logo are trademarks of Zarlink Semiconductor Inc.
Copyright 2003, Zarlink Semiconductor Inc. All Rights Reserved.
11
38
12
37
13
36
14
35
15
34
16
33
17
32
18
31
19
30
20
29
21
28
22
27
23
26
24
25
浙江大学远程教育学院夏考试场安排表

浙江大学远程教育学院05-06年夏考试场安排表
第1页
1 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第2页
浙江大学远程教育学院05-06年夏考试场安排表
第3页
3 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第4页
4 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第5页
5 / 18
6 / 18
浙江大学远程教育学院05-06
年夏考试场安排表
第6页
浙江大学远程教育学院05-06年夏考试场安排表
第7页
7 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第8页
8 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第9页
浙江大学远程教育学院05-06年夏考试场安排表
第10页
10 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第11页
11 / 18
12 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第12页
13 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第13页
14 / 18
浙江大学远程教育学院05-06年夏考试场安排表
第14页
15 / 18
浙江大学远程教育学院05-06年入学考试场安排表
第15页
16 / 18
浙江大学远程教育学院05-06年夏考入学考试场安排表
第16页
17 / 18
18 / 18。
TFT_ILI9163驱动(DOFLY-TFT—1.77A)

#include "ILI9163.h"//端口定义sbit CS =P2^0;sbit RST=P2^1;sbit RW =P2^2;sbit RS =P2^3;#define TFT_DATA P0//颜色定义unsigned int color[]={0xf800,0xffe0,0x07e0,0x07ff,0x001f,0xf81f,0x0000,0xffff,0x7bef};// 红黄绿青蓝紫黑白灰/******************************************************延时,小于0.5ms******************************************************/void delayms(unsigned int count) // x 10ms{unsigned int i;unsigned char j;for(i=0;i<count;i++)for(j=0;j<255;j++);}/******************************************************写寄存器ID的子程序******************************************************/void WriteCOM(unsigned char ID){RS=0;CS=0;TFT_DATA=0x00;RW=0;RW=1;TFT_DATA=ID;RW=0;RW=1;RS=1;CS=1;}/******************************************************写数据的子程序******************************************************/void WriteDAT(unsigned char HD,unsigned char LD) //写16位数据{RS=1;TFT_DATA=HD;RW=0;RW=1;TFT_DATA=LD;RW=0;RW=1;RS=0;CS=1;}void WriteDAT_8(unsigned char ddate) //写8位数据{RS=1;CS=0;TFT_DATA=ddate;RW=0;RW=1;RS=0;CS=1;}/****************************************************** 用于写字符,图线等*****************************************************/ void Write_Data_U16(unsigned int y){unsigned char m,n;m=y>>8; //高8位n=y; //低8位WriteDAT(m,n);}/****************************************************** IC ILI9163初始化******************************************************/ void ILI9163_init(void){RST=1;delayms(10);delayms(10);RST=1;delayms(10);WriteCOM(0x11);//退出睡眠模式delayms(10);WriteCOM(0x26);// Gammut format 伽马曲线设置WriteDAT_8(0x04);/* 04h GC3 Gammut 2.2,01h GC1 Gammut 1.0 , 02h GC2 gammut 1.8, 08h GC3 Gammut 2.5 */delayms(10);WriteCOM(0xB1); //帧频控制WriteDAT_8(0x06);WriteDAT_8(0x08);WriteDAT_8(0x09);WriteCOM(0xC0); //电源控制WriteDAT_8(0x04);WriteDAT_8(0x00);WriteCOM(0xC1); //电源控制WriteDAT_8(0x07);WriteCOM(0xC5); //偏压控制WriteDAT_8(0x4c); //vcom control 0x48,0x24 34 //2bWriteDAT_8(0x38); //vcom control 0x48,0x24 50 //47WriteCOM(0xC7); //偏压控制WriteDAT_8(0x40); //C4delayms(10);WriteCOM(0x3A); // Interface Pixel modeWriteDAT_8(0x05);/*0x05 16 bit/Pixel RGB 53-35 Twice per pixel for 80-8bits parallel0x06 18 bit/Pixel RGB 6-6-6 Three times per pixel for 80-8bits parallel */WriteCOM(0x36); //扫描方向控制WriteDAT_8(0xA8); //WriteCOM(0xB7);WriteDAT_8(0x00); //WriteCOM(0xF2);WriteDAT_8(0x01);delayms(10);// t Gamma,伽马曲线设置WriteCOM(0xE0);// Positive 05WriteDAT_8(0x09);//1WriteDAT_8(0x16);//2WriteDAT_8(0x09);//3WriteDAT_8(0x27);//4WriteDAT_8(0x2e);//5WriteDAT_8(0x25);//6WriteDAT_8(0x1c);//7WriteDAT_8(0x20);//8WriteDAT_8(0x1e);//9WriteDAT_8(0x1a);//10WriteDAT_8(0x24);//11WriteDAT_8(0x2d);//12WriteDAT_8(0x04);//13WriteDAT_8(0x05);//14WriteDAT_8(0x02);//15WriteDAT_8(0x0e);//16WriteCOM(0xE1); // NegativeWriteDAT_8(0x0b);//1WriteDAT_8(0x14);//2WriteDAT_8(0x09);//3WriteDAT_8(0x26);//4WriteDAT_8(0x27);//5WriteDAT_8(0x22);//6WriteDAT_8(0x1c);//7WriteDAT_8(0x20);//8WriteDAT_8(0x1d);//9WriteDAT_8(0x1a);//10WriteDAT_8(0x25);//11WriteDAT_8(0x2d);//12WriteDAT_8(0x06);//13WriteDAT_8(0x06);//14WriteDAT_8(0x02);//15WriteDAT_8(0x0f);//16WriteCOM(0x29); //Display ondelayms(10);WriteCOM(0x2C); //write to RAM }/******************************************************地址设置******************************************************/void add_rst(void) //地址重置{WriteCOM(0x2a); //Colulm addRSTs setWriteDAT_8(0x00);WriteDAT_8(0x00);WriteDAT_8(0x00);WriteDAT_8(159);WriteCOM(0x2b); //Colulm addRSTs setWriteDAT_8(0x00);WriteDAT_8(0x00);WriteDAT_8(0x00);WriteDAT_8(128);WriteCOM(0x2C); //Write Data to GRAM}static void LCD_SetPos(unsigned int x0,unsigned int x1,unsigned int y0,unsigned int y1) {WriteCOM(0x2A); //Colulm addRSTs setWriteDAT_8(x0>>8); //取x0的高8位WriteDAT_8(x0); //取x0的低8位WriteDAT_8(x1>>8);WriteDAT_8(x1);WriteCOM(0x2B); //Colulm addRSTs setWriteDAT_8(y0>>8);WriteDAT_8(y0);WriteDAT_8(y1>>8);WriteDAT_8(y1);WriteCOM(0x2C); //Write Data to GRAM}/*****************************************************函数名:display()功能:显示整屏颜色,颜色由d1,d2决定******************************************************/void display(unsigned int colour){unsigned int c,s;add_rst();for(c=0;c<128;c++) //横向扫描{for(s=0;s<160;s++){WriteDAT(colour>>8,colour);}}delayms(200);}/******************************************************函数名:LCD_ico功能:在起始位置为xs、ys,宽x、高y的区域内写入大小为x*y的图像ico******************************************************/void LCD_ico(unsigned char xs,unsigned char ys,unsigned char x,unsigned char y,unsigned char ico[]){unsigned int i;LCD_SetPos(xs,xs+x-1,ys,ys+y-1);for(i=0;i<x*y*2-1;i=i+2) //{WriteDAT(ico[i],ico[i+1]); //}}/******************************************************函数名:LCD_clear功能:在起始位置为xs、ys,宽x、高y的区域内写白色*****************************************************/void LCD_clear(unsigned char xs,unsigned char ys,unsigned char x,unsigned char y){unsigned int i;LCD_SetPos(xs,xs+x-1,ys,ys+y-1);for(i=0;i<x*y*2-2;i=i+2) //{WriteDAT(0xff,0xff); //}}/******************************************************函数名:LCD_write_kong功能:写空白显示在编号x位置******************************************************/void LCD_write_kong(unsigned char y){unsigned char m,n;LCD_SetPos((y%3)*42+y%3,(y%3)*42+42-1+y%3,(y/3)*42+y/3,(y/3)*42+42-1+y/3); //ram readyfor(n=0;n<42;n++) //for(m=0;m<42;m++){WriteDAT(0xFF,0xEE); //暂定为色}}/******************************************************函数名:LCD_write_part功能:从图片数组中取出对应于x的部分显示在编号y位置上每一小部分大小暂定为42x42。
593066-3中文资料

593066-3 Product DetailsHome | Customer Support | Suppliers | Site Map | Privacy Policy | Browser Support© 2008 Tyco Electronics Corporation All Rights Reserved SearchProducts Documentation Resources My Account Customer SupportHome > Products > By Type > Pin & Socket Connectors > Product Feature Selector > Product Details593066-3Active Subminiature D Pin/Socket Connectors forMIL-C-24308 and MIL-C-39029Not reviewed for RoHS ComplianceProduct Highlights:?Connector?Product Series = 90?Density = Standard?Terminate To Wire?Number of Positions = 44View all Features | Find SimilarProductsCheck Pricing &AvailabilitySearch for ToolingProduct FeatureSelectorContact Us AboutThis ProductQuick LinksDocumentation & Additional InformationProduct Drawings:?AMPLIMITE NONMAGNETIC PLUG ASSY WITH SIZE 22 CRIMP P...(PDF, English)Catalog Pages/Data Sheets:?None AvailableProduct Specifications:?None AvailableApplication Specifications:?None AvailableInstruction Sheets:?None AvailableCAD Files:?None AvailableList all Documents Additional Information:?Product Line InformationRelated Products:?ToolingProduct Features (Please use the Product Drawing for all design activity)Product Type Features:?Product Type = Connector?Product Series = 90?Number of Positions = 44?Gender = Plug?Shell Size = 3?Shell Material = Brass?Wire Termination Type = CrimpBody Related Features:?Insert Arrangement = MS18275-2?Blindmate = No?Non-Magnetic = Yes?Pins = With?Rear Grommet = No?Power/Signal/Coax Combination = No?Shell Plating = Cadmium over Copper?Mount Style = Floating BushingContact Related Features:?Contact Size = 22?Contact Style = Crimp Snap-in?Contact Material = Copper Alloy?Contact Mating Area Plating Material = Goldover Nickel Configuration Related Features:?Density = StandardIndustry Standards:?Government/Industry Qualification = Yes?Government/Industry Part Number = M24308/8-309F?RoHS/ELV Compliance = Not reviewed forELV/RoHS compliance?Lead Free Solder Processes = Not reviewed forlead free solder process?NASA Qualification = NoConditions for Usage:?Terminate To = WireOther:?Brand = AMPProvide Website Feedback | Contact Customer Support。
11C90中文资料

VIL
Input LOW Voltage
0C mV
a 25 C a 75 C a 25 C a 25 C a 25 C a 25 C
IIH
Input HIGH Current CP Input (Note 1) MS Input M1 and M2 Input Input LOW Current Power Supply Current Operating Supply Voltage Range Reference Voltage 05
b 1060 b 1025 b 980 b 1820 b 1135 b 1095 b 1035 b 1870 b 1850 b 1830
Typ
b 995 b 960 b 910 b 1705
Max
b 905 b 880 b 805 b 1620 b 840 b 810 b 720 b 1500 b 1485 b 1460
b 110 b 119 b5 7 b 1550 b 75 b5 2
400 400 250
mA mA mA
IIL IEE VEE VREF
VIN e VILB Pins 6 7 13 not connected
Units mV
TA 0C
a 25 C a 75 C
Conditions Load e 50X to b2V
VOL VIH
mV
0 C to
a 75 C
0C mV
a 25 C a 75 C
Guaranteed Input HIGH Signal (Note 6) Guaranteed Input LOW Signal VIN e VIHA
元器件交易网
11C90 11C91 650 MHz Prescalers
RT9161A中文资料

IL = 1mA, VIN= 4.5 ~ 12V IL = 1mA ~ 300/500mA, VIN = 5V
VIN= 5V, VOUT = 0V
Dropout Voltage (3) (4) Standby Current
VDROP IL = 300/500mA ISTANDBY IL = 0, VIN = 12V
SOT-89, θJA ------------------------------------------------------------------------------------------- 300°C/W SOT-223, θJC ----------------------------------------------------------------------------------------- 15°C/W SOT-223, θJA ----------------------------------------------------------------------------------------- 60°C/W
Output Voltage Temperature Coefficient
Min Typ
-2
--
--
50
Max Units
+2
%
150 PPM/°C
Line Regulation
∆VLINE
Load Regulation (1)
∆VLOAD
Current Limit (2)
RT9161 RT9161A ILIMIT
886-3-5753170 86-755-83289/500mA Low Dropout Linear Voltage Regulator
RT9161B中文资料

_
+
Error Amp
1.2V Reference
VOUT GND
2
DS9161B-02 April 2001
元器件交易网
Pin Description
Pin Name Pin Function
VOUT
Output Voltage
元器件交易网
Preliminary
RT9161B
Simple Lithium-Ion Battery Charger
General Description
The RT9161B is a single-cell lithium-ion battery charger. It includes an on-chip pass transistor for high precision charging. Featuring with ultrahigh precision (±1%), the RT9161B provides a very effective and low cost solution for charging lithiumion battery.
Other features of the RT9161B are current limit and thermal shutdown protection. The output voltage of RT9161B is internally set and ranges from 4.10V to 4.35V, in 0.05V steps. The RT9161B comes in the SOT-89 and SOT-223 packages.
burster9163桌上型数显仪表 技术手册

USB
Baud rate: Max. transmission rate: 1200 ... 115200 bit/s 30 measurements/s
Rear side
Potentiometer
Track resistance: Sensor excitation: Voltage input: Input impedance: Current input: Load impedance: Excitation:
Standard signals, DC/DC sensors or transmitters
Order Code
Process value indicator model 9163-V 3
Standard: Analog output voltage None 0 - 10 V 0 - 20 mA 4 - 20 mA ±10 V
Transmitters or DC/DC sensors Temperature sensor
Type: Max. wire resistance:
0
0
0
0
Thermocouples
Type: Linearization: Compensation error:
0 1 2 3 4
Altitude: Operating temperature: Relative humidity: Protection class:
Options
Limit switches
4 relay outputs: TTL outputs: Response time:
0 1 5 digit, dual-color red/green 13 mm -19999 ... 99999 Version 0 user-programmable 1 main channel / 2 auxiliary channels 1 0.1 % of full scale ± 1 digit 2 main channels / 2 auxiliary channels main channel 500/sec. Auxiliary channel 100/sec. Accessories 100 - 240 VAC, 11 - 27 VAC/VDC Instrument calibration for one sensor ordered with the instrument or 150 x 95 x 260 mm using sensor data provided by the customer (e.g. sensitivity, display range for correct readings, instrument settings, excitation voltage or sensor test certificate). Model 91ABG up to 2000 m Configuration and analysis software for single-channel and 0 ... 50 °C multi-channel operation with the single-user license code for the 20 ... 82 %, non-condensing 9163 equipment range Model 9163-P100 IP54 Cable for connecting bench-top unit to PC Model 9900-K333 Adapter cable for bench-top unit model 9163, from sensor socket 1 or 2 to strain-gauge sensors with 5 VDC or 10 VDC excitation voltage with fitted plug 9900-V209 and to potentiometric position sensors with 5 VDC excitation voltage with fitted plug 9900-V209 99209-609A-0090002 Adapter cable for bench-top unit model 9163, from sensor socket 1 or 2 to transmitters with 15 VDC or 24 VDC excitation voltage and sensors with fitted plug 9900-V209 99209-609B-0090002 Adapter cable for bench-top unit model 9163, from sensor socket 3 or 4 to transmitters with 10 VDC excitation voltage or potentiometric position sensors with 5 VDC excitation voltage and fitted plug 9900- V209 plus sensor connecting cable with 99209-XXXX.... 99208-609B-0090002 Adapter cable for bench-top unit model 9163, from sensor socket 3 or 4 to transmitters with 15 VDC or 24 VDC excitation voltage and fitted plug 9900-V209 99208-609A-0090002 The CAD drawing (3D/2D) for this device can be imported online directly into your CAD system. Download via or directly at . For further information about the burster traceparts cooperation refer to data sheet 80-CAD-EN.
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Copyright 1997, 1999 by Capital Advanced Technologies, Inc. All rights reserved. Surfboards Are a registered trademark of Capital Advanced technologies, Inc. All other trademarks or registered trademarks are property of their respective owners. Availability, specifications, and prices are subject to change without notice. All information given is believed to be accurate but is not guaranteed. The user of information given or products represented by such information is responsible for determin-
ing the suitability of said information or products for a given purpose. 685)%2$5'6 R 7+(%5($'%2$5',1*0(',80)25$&# & %
% 6(5,(6)25, & V %2$5'0$7(5,$/ ,Q 7KLFN * )5 *ODVV (SR[\RU HTXLYDOHQW &,5&8,76 R]&RSSHU ZLWK VROGHU FRDWHG SDGV 72/(5$1&(6 *LYHQ LQ LQFKHV %RDUG 6L]H 2$/ &LU FXLW SDWWHUQ SRVLWLRQ %2$5'63(&,),&$7,216&$3,7$/$'9$1&('7(&+12/2*,(6 ,1&
&$52/675($0 ,//,12,6 86$ 3+21( ::: &DSLWDO$GYDQFHG &RP )$; 21 '(0$1' )2,/02',),&$7,216(;3$1'9(56$7,/,7<
7\SLFDO RI PDQ\6XUIERDUGV DUH ODUJH SDG DUHDV ZKLFK ZKLFK
PD\EH PRGLILHG WR FUHDWH DGGLWLRQDO SDUW
PRXQWLQJ ]RQHV RU H[SDQG OD\RXW RU FRQQHFWLRQ RSWLRQV
6FRUH IRLO ZLWK VKDUS UD]RU WR GHILQH QHZ ]RQH
$SSO\KHDW ZLWK LURQ WR GHODPLQDWH IRLO VHFWLRQ
1HZ PRXQWLQJ ]RQH KDV EHHQ FUHDWHG 6ROGHU FRPSRQHQW WR QHZ PRXQWLQJ ]RQH
675$''/(
, & SLQV IDQ RXW WR SHULSKHUDO SDUW PRXQWLQJ DUHDV FDSDEOH RI DFFHSWLQJ VHYHUDO VXUIDFH PRXQW GHYLFHV 02'(/
$&&(37621( 25 3,16 2 , & #7:2 3,162,&V
',5(&73,128725$''$'',7,21$/&20321(1763,7&+ LQ PP
LQ PP , & )22735,17DFFHSWV RQH RU SLQ 62,& RU WZR SLQ 62,&V LQ LQ ,Q ,QFKHV $ % & ' ( 3,163(&,),&$7,216 72/(5$1&(6-867$''3$576$1'3/8*,1 70
6,1*/( ,1 /,1( 6,3 3,1621 LQ &(17(567KH SURYLGHV GLUHFW SLQ RXW RI , & WR 6,3SLQV ,I GHVLUHG FRPSRQHQWV FDQ EH PRXQWHG DFURVV DGMRLQLQJ FLUFXLWV VWUDGGOH PRXQWHG RU QHZ PRXQWLQJ ]RQHV FDQ EH FUHDWHG LQ WKH ODUJH FLUFXLW IRLOV 7KH ODUJH IRLOV SURYLGH VSDFH IRU VLJQLILFDQW PRGLILFDWLRQV RU DGGLWLRQ RI MXPSHUV LI QHHGHG 7KH ILQLVKHG SURWRW\SH RI VXE DVVHPEO\FDQ EH SOXJJHG LQWR D VROGHUOHVV EUHDGERDUG RU VRFNHW RU VROGHUHG LQWR D FRQYHQWLRQDO EUHDGERDUG IDS9163A 3-9-99
元器件交易网。