A MONOLITHIC 19-BIT 800 HZ LOW POWER MULTI-BIT SIGMA DELTA CMOS ADC USING DATA WEIGHTED AVE
AT89S52单片机应用中英文翻译
本科毕业设计(论文)AT89S52单片机应用中英文翻译专业名称:电气工程及其自动化年级班级:学生姓名:指导老师:二O一二年六月九日AT89S52 MCU ApplicationsFunction Characteristic DescriptionThe AT89S52 is a low-power, high-performance CMOS 8-bit microcontroller with 8K bytes of in-system programmable Flash memory. The device is manufactured using Atmel’s high-density nonvolatile memory technology and is compatible with the indus-try-standard 80C51 instruction set and pinout. The on-chip Flash allows the program memory to be reprogrammed in-system or by a conventional nonvolatile memory pro-grammer. By combining a versatile 8-bit CPU with in-system programmable Flash on a monolithic chip, the Atmel AT89S52 is a powerful microcontroller which provides a highly-flexible and cost-effective solution to many embedded control applications.The AT89S52 provides the following standard features: 8K bytes of Flash, 256 bytes of RAM, 32 I/O lines, Watchdog timer, two data pointers, three 16-bit timer/counters, a six-vector two-level interrupt architecture, a full duplex serial port, on-chip oscillator, and clock circuitry. In addition, the AT89S52 is designed with static logic for operation down to zero frequency and supports two software selectable power saving modes. The Idle Mode stops the CPU while allowing the RAM, timer/counters, serial port, and interrupt system to continue functioning. The Power-down mode saves the RAM con-tents but freezes the oscillator, disabling all other chip functions until the next interrupt or hardware reset.Pin DescriptionVCC :Supply voltage.GND :Ground.Port 0:Port 0 is an 8-bit open drain bidirectional I/O port. As an output port, each pin can sink eight TTL inputs. When 1s are written to port 0 pins, the pins can be used as high-impedance inputs. Port 0 can also be configured to be the multiplexed low-order address/data bus during accesses to external program and data memory. In this mode, P0 has internal pull-ups. Port 0 also receives the code bytes during Flash programming and outputs the code bytes dur-ing program verification. External pull-ups are required during program verification.Port 1:Port 1 is an 8-bit bidirectional I/O port with internal pull-ups. The Port 1 outputbuffers can sink/source four TTL inputs. When 1s are written to Port 1 pins, they are pulled high by the inter-nal pull-ups and can be used as inputs. As inputs, Port 1 pins that are externally being pulled low will source current (IIL) because of the internal pull-ups. In addition, P1.0 and P1.1 can be configured to be the timer/counter 2 external count input (P1.0/T2) and the timer/counter 2 trigger input (P1.1/T2EX), respectively, as shown in the follow-ing table 1. Port 1 also receives the low-order address bytes during Flash programming and verification.Port 2:Port 2 is an 8-bit bidirectional I/O port with internal pull-ups. The Port 2 output buffers can sink/source four TTL inputs. When 1s are written to Port 2 pins, they are pulled high by the inter-nal pull-ups and can be used as inputs. As inputs, Port 2 pins that are externally being pulled low will source current (IIL) because of the internal pull-ups. Port 2 emits the high-order address byte during fetches from external program memory and dur-ing accesses to external data memory that use 16-bit addresses (MOVX @ DPTR). In this application, Port 2 uses strong internal pull-ups when emitting 1s. During accesses to external data memory that use 8-bit addresses (MOVX @ RI), Port 2 emits the contents of the P2 Special Function Register. Port 2 also receives the high-order address bits and some control signals during Flash program-ming and verification.Port 3:Port 3 is an 8-bit bidirectional I/O port with internal pull-ups. The Port 3 output buffers can sink/source four TTL inputs. When 1s are written to Port 3 pins, they are pulled high by the inter-nal pull-ups and can be used as inputs. As inputs, Port 3 pins that areexternally being pulled low will source current (IIL) because of the pull-ups. Port 3 receives some control signals for Flash programming and verification. Port 3 also serves the functions of various special features of the AT89S52, as shown in the fol-lowing table 2.RST:Reset input. A high on this pin for two machine cycles while the oscillator is running resets the device. This pin drives high for 98 oscillator periods after the Watchdog times out. The DISRTO bit in SFR AUXR (address 8EH) can be used to disable this feature. In the default state of bit DISRTO, the RESET HIGH out feature is enabled.ALE/PROG:Address Latch Enable (ALE) is an output pulse for latching the low byte of the address during accesses to external memory. This pin is also the program pulse input (PROG) during Flash programming. In normal operation, ALE is emitted at a constant rate of 1/6 the oscillator frequency and may be used for external timing or clocking purposes. Note, however, that one ALE pulse is skipped dur-ing each access to external data memory. If desired, ALE operation can be disabled by setting bit 0 of SFR location 8EH. With the bit set, ALE is active only during a MOVX or MOVC instruction. Otherwise, the pin is weakly pulled high. Setting the ALE-disable bit has no effect if the microcontroller is in external execution mode.PSEN:Program Store Enable (PSEN) is the read strobe to external program memory. When the AT89S52 is executing code from external program memory, PSEN is activated twice each machine cycle, except that two PSEN activations are skipped during eachaccess to exter-nal data memory.EA/VPP:External Access Enable. EA must be strapped to GND in order to enable the device to fetch code from external program memory locations starting at 0000H up to FFFFH. Note, however, that if lock bit 1 is programmed, EA will be internally latched on reset. EA should be strapped to VCC for internal program executions. This pin also receives the 12-volt programming enable voltage (VPP) during Flash programming.XTAL1:Input to the inverting oscillator amplifier and input to the internal clock operating circuit.XTAL2:Output from the inverting oscillator amplifier.Program MemoryIf the EA pin is connected to GND, all program fetches are directed to external memory. On the AT89S52, if EA is connected to VCC, program fetches to addresses 0000H through 1FFFH are directed to internal memory and fetches to addresses 2000H through FFFFH are to external memory.Data MemoryThe AT89S52 implements 256 bytes of on-chip RAM. The upper 128 bytes occupy a parallel address space to the Special Function Registers. This means that the upper 128 bytes have the same addresses as the SFR space but are physically separate from SFR space. When an instruction accesses an internal location above address 7FH, the address mode used in the instruction specifies whether the CPU accesses the upper 128 bytes of RAM or the SFR space. Instructions which use direct addressing access the SFR space. For example, the following direct addressing instruction accesses the SFR at location 0A0H (which is P2). MOV 0A0H, #data. Instructions that use indirect addressing access the upper 128 bytes of RAM. For example, the following indirect addressing instruction, where R0 contains 0A0H, accesses the data byte at address 0A0H, rather than P2 (whose address is 0A0H).MOV @R0, #data. Note that stack operations are examples of indirect addressing, so the upper 128 bytes of data RAM are available as stack space.Watchdog TimerThe WDT is intended as a recovery method in situations where the CPU may be subjected to software upsets. The WDT consists of a 14-bit counter and the Watchdog Timer Reset (WDTRST) SFR. The WDT is defaulted to disable from exiting reset. To enable the WDT, a user must write 01EH and 0E1H in sequence to the WDTRST register (SFR location 0A6H). When the WDT is enabled, it will increment every machine cycle while the oscillator is running. The WDT timeout period is dependent on the external clock frequency. There is no way to disable the WDT except through reset (either hardware reset or WDT overflow reset). When WDT over-flows, it will drive an output RESET HIGH pulse at the RST pin.In Power-down mode the oscillator stops, which means the WDT also stops. While in Power-down mode, the user does not need to service the WDT. There are two methods of exiting Power-down mode: by a hardware reset or via a level-activated external interrupt which is enabled prior to entering Power-down mode. When Power-down is exited with hardware reset, servicing the WDT should occur as it normally does whenever the AT89S52 is reset. Exiting Power-down with an interrupt is significantly different. The interrupt is held low long enough for the oscillator to stabilize. When the interrupt is brought high, the interrupt is serviced. To prevent the WDT from resetting the device while the interrupt pin is held low, the WDT is not started until the interrupt is pulled high. It is suggested that the WDT be reset during the interrupt service for the interrupt used to exit Power-down mode. To ensure that the WDT does not overflow within a few states of exiting Power-down, it is best to reset the WDT just before entering Power-down mode. Before going into the IDLE mode, the WDIDLE bit in SFR AUXR is used to determine whether the WDT continues to count if enabled. The WDT keeps counting during IDLE (WDIDLE bit = 0) as the default state. To prevent the WDT from resetting the AT89S52 while in IDLE mode, the user should always set up a timer that will periodically exit IDLE, service the WDT, and reenter IDLE mode. With WDIDLE bit enabled, the WDT will stop to count in IDLE mode and resumes the count upon exit from IDLE.Timer 0 and 1Timer 0 and Timer 1 in the AT89S52 operate the same way as Timer 0 and Timer 1 in the AT89C51 and AT89C52. For further information o n the timers’ operation, please click on the document link below:/dyn/resources/prod_documents/DOC4316.PDFTimer 2Timer 2 is a 16-bit Timer/Counter that can operate as either a timer or an event counter. The type of operation is selected by bit C/T2in the SFR T2CON. Timer 2 has three operating modes: capture, auto-reload (up or down counting), and baud rate generator. The modes are selected by bits in T2CON, as shown in Table 6-1. Timer 2 consists of two 8-bit registers, TH2 and TL2. In the Timer function, the TL2 register is incremented every machine cycle. Since a machine cycle consists of 12 oscillator periods, the count rate is 1/12 of the oscil-lator frequency.In the Counter function, the register is incremented in response to a 1-to-0 transition at its corre-sponding external input pin, T2. In this function, the external input is sampled during S5P2 of every machine cycle. When the samples show a high in one cycle and a low in the next cycle, the count is incremented. The new count value appears in the register during S3P1 of the cycle following the one in which the transition was detected. Since two machine cycles (24 oscillator periods) are required to recognize a 1-to-0 transition, the maximum count rate is 1/24 of the oscillator frequency. To ensure that a given level is sampled at least once before it changes, the level should be held for at least one full machine cycle.InterruptsThe AT89S52 has a total of six interrupt vectors: two external interrupts (INT0and INT1), three timer interrupts (Timers 0, 1, and 2), and the serial port interrupt. Each of these interrupt sources can be individually enabled or disabled by setting or clearing a bit in Special Function Register IE. IE also contains a global disable bit, EA, which disables all interrupts at once. Note that bit position IE.6 is unimplemented. User software should not write a 1 to this bit position, since it may be used in future AT89 products. Timer 2 interrupt is generated by the logical OR of bits TF2 and EXF2 in register T2CON. Nei-ther of these flags is cleared by hardware when the service routine is vectored to. In fact, the service routine may have to determine whether it was TF2 or EXF2 that generated the interrupt, and that bit will have to be cleared in software. The Timer 0 and Timer 1 flags, TF0 and TF1, are set at S5P2 of the cycle in which the timers overflow. The values are then polled by the circuitry in the next cycle. However, the Timer 2 flag, TF2, is set at S2P2 and is polled in the same cycle in which the timer overflows.Oscillator CharacteristicsXTAL1 and XTAL2 are the input and output, respectively, of an inverting amplifier that can be configured for use as an on-chip oscillator. Either a quartz crystal or ceramic resonator may be used. To drive the device from an external clock source, XTAL2 should be left unconnected while XTAL1 is driven,. There are no requirements on the duty cycle of the external clock signal, since the input to the internal clock-ing circuitry is through a divide-by-two flip-flop, but minimum and maximum voltage high and low time specifications must be observed.Power-down ModeIn the Power-down mode, the oscillator is stopped, and the instruction that invokes Power-down is the last instruction executed. The on-chip RAM and Special Function Registers retain their values until the Power-down mode is terminated. Exit from Power-down mode can be initiated either by a hardware reset or by an enabled external interrupt. Reset redefines the SFRs but does not change the on-chip RAM. The reset should not be activated before VCC is restored to its normal operating level and must be heldactive long enough to allow the oscillator to restart and stabilize.Idle ModIn idle mode, the CPU puts itself to sleep while all the on-chip peripherals remain active. The mode is invoked by software. The content of the on-chip RAM and all the special functions regis-ters remain unchanged during this mode. The idle mode can be terminated by any enabled interrupt or by a hardware reset. Note that when idle mode is terminated by a hardware reset, the device normally resumes pro-gram execution from where it left off, up to two machine cycles before the internal reset algorithm takes control. On-chip hardware inhibits access to internal RAM in this event, but access to the port pins is not inhibited. To eliminate the possibility of an unexpected write to a port pin when idle mode is terminated by a reset, the instruction following the one that invokes idle mode should not write to a port pin or to external memory.AT89S52单片机应用功能特征描述AT89S52是一种低功耗、高性能CMOS8位微控制器,具有8K 在系统可编程Flash 存储器。
采样保持器各IC型号
采样保持器各IC型号序号IC型号描述1ad1154Low Cost, 16-Bit Accurate Sample-and-Hold Amplifier 2ad1154ad$StartFalse3ad1154aw Sample/Track-and-Hold Amplifier4ad1154bd$StartFalse5ad1154bw Sample/Track-and-Hold Amplifier6ad386bd$StartFalse7ad386td Sample/Track-and-Hold Amplifier8ad386td/883b$StartFalse9ad582kd Sample/Track-and-Hold Amplifier10ad582kh$StartFalse11ad582sd Sample/Track-and-Hold Amplifier12ad582sd/883b$StartFalse13ad582sh Sample/Track-and-Hold Amplifier14ad582sh/883b$StartFalse15ad583kd Sample/Track-and-Hold Amplifier16ad585achips$StartFalse17ad585aq/+Sample/Track-and-Hold Amplifier18ad585schips$StartFalse19ad585se/883b Sample/Track-and-Hold Amplifier20ad585sq/883b$StartFalse21ad681aq Sample/Track-and-Hold Amplifier22ad681sq$StartFalse23ad682an Sample/Track-and-Hold Amplifier24ad682jn$StartFalse25ad682sq Sample/Track-and-Hold Amplifier26ad683aq$StartFalse27ad683sq Sample/Track-and-Hold Amplifier28ad684sq/883b$StartFalse29ad783an Sample/Track-and-Hold Amplifier30ad783jn$StartFalse31ad783sq Sample/Track-and-Hold Amplifier32ad783sq/883b$StartFalse33ad9100Ultrahigh Speed Monolithic Track-and-Hold 34ad9100*$StartFalse35ad9100ad Ultrahigh Speed Monolithic Track-and-Hold 36ad9100jd$StartFalse37ad9100sd Ultrahigh Speed Monolithic Track-and-Hold 38ad9100se/883b$StartFalse39ad9101125 MSPS Monolithic Sampling Amplifier40ad9101ae$StartFalse41ad9101ar125 MSPS Monolithic Sampling Amplifier 42ad9101se$StartFalse43adh-050Sample/Track-and-Hold Amplifier44adh-050-883b$StartFalse45adh-051Sample/Track-and-Hold Amplifier46adh-051-883b$StartFalse47ah20016Sample/Track-and-Hold Amplifier48ah201-1$StartFalse49ah201-2Sample/Track-and-Hold Amplifier50al1210ar$StartFalse51al1210-die Sample/Track-and-Hold Amplifier52al1210es$StartFalse53al1210jr Sample/Track-and-Hold Amplifier54al1210se$StartFalse55al1210sj Sample/Track-and-Hold Amplifier56cds-1401mc$StartFalse57cds-1401mm Sample/Track-and-Hold Amplifier59cs3101-kd Sample/Track-and-Hold Amplifier60cs3101-td$StartFalse61cs3112-bd1Sample/Track-and-Hold Amplifier62cs3112-kd1$StartFalse63cs3112-kd2Sample/Track-and-Hold Amplifier64cs3112-td1$StartFalse65cs31412-bc1Sample/Track-and-Hold Amplifier66cs31412-bd$StartFalse67cs31412-kc1Sample/Track-and-Hold Amplifier68cs31412-kc2$StartFalse69cs31412-kd Sample/Track-and-Hold Amplifier70cs31412-tc1$StartFalse71cs31412-td Sample/Track-and-Hold Amplifier72dgl-13-1$StartFalse73dgl-13-1-883b Sample/Track-and-Hold Amplifier74dgl-13-3$StartFalse75dgl-13-3-883b Sample/Track-and-Hold Amplifier76ha1-2420-2$StartFalse77ha1-2425-5 3.2レs Sample and Hold Amplifiers78ha1-5320-2$StartFalse79ha1-5320-5 1 Microsecond Precision Sample and Hold Amplifier 80ha1-5330-2$StartFalse81ha1-5330-5650ns Precision Sample and Hold Amplifier82ha-2420$StartFalse83ha-2425 3.2レs Sample and Hold Amplifiers84ha3-2425-5$StartFalse85ha3-5320-5 1 Microsecond Precision Sample and Hold Amplifier 86ha3-5330-5$StartFalse87ha4p2425-5 3.2レs Sample and Hold Amplifiers89ha-5330650ns Precision Sample and Hold Amplifier90ha9p2425-5$StartFalse91ha9p5320-5 1 Microsecond Precision Sample and Hold Amplifier 92ha9p5320-9$StartFalse93hs346b Sample/Track-and-Hold Amplifier94hs346c$StartFalse95hs9704b Sample/Track-and-Hold Amplifier96hs9704c$StartFalse97hs9705b Sample/Track-and-Hold Amplifier98hs9705c$StartFalse99hs9714k Sample/Track-and-Hold Amplifier100hs9714tb$StartFalse101hs9716k Sample/Track-and-Hold Amplifier102hs9716tb$StartFalse103hs9720k Sample/Track-and-Hold Amplifier104hs9720tb$StartFalse105htc-0300a Ultrahigh-Speed Hybrid Track-and-Hold Amplifiers106htc-0300am$StartFalse107htc-0300am/883b Ultrahigh-Speed Hybrid Track-and-Hold Amplifiers108htc-0300atd/883b$StartFalse109htc-0500am Sample/Track-and-Hold Amplifier110htc-0500sm$StartFalse111hts-0010Ultra High Speed Hybird Track-and Hold Amplifiers112hts-0010kd$StartFalse113hts-0010sd Ultra High Speed Hybird Track-and Hold Amplifiers115hts-0025m Ultra High Speed Hybird Track-and Hold Amplifiers116hv257$StartFalse117hv257fg32 CHANNEL HIGH VOLTAGE SAMPLE AND HOLD AMPLIFIER ARRAY 118hv257x$StartFalse119lf198MONOLITHIC SAMPLE AND HOLD CIRCUITS120lf198/bgc$StartFalse121lf198a Precision Sample and Hold Amplifier122lf198ah Monolithic Sample-and-Hold Circuits123lf198al Sample/Track-and-Hold Amplifier124lf198fe$StartFalse125lf198h Monolithic Sample-and-Hold Circuits126lf198h/883Monolithic Sample-and-Hold Circuits127lf198l$StartFalse128lf298MONOLITHIC SAMPLE AND HOLD CIRCUITS129lf298fe Sample-and-hold amplifiers130lf298h$StartFalse131lf298hb Sample/Track-and-Hold Amplifier132lf298m$StartFalse133lf298n Sample-and-hold amplifiers134lf398$StartFalse135lf398a$StartFalse136lf398ah$StartFalse137lf398ah/a+$StartFalse138lf398al Sample/Track-and-Hold Amplifier139lf398an$StartFalse140lf398an/a+Sample/Track-and-Hold Amplifier141lf398an/b+$StartFalse142lf398an8Precision Sample and Hold Amplifier143lf398d$StartFalse144lf398d-t Sample/Track-and-Hold Amplifier145lf398fe$StartFalse146lf398h Monolithic Sample-and-Hold Circuits 147lf398h/a+Sample/Track-and-Hold Amplifier148lf398hb$StartFalse149lf398jg Sample/Track-and-Hold Amplifier150lf398l$StartFalse151lf398m Monolithic Sample-and-Hold Circuits 152lf398mx$StartFalse153lf398n MONOLITHIC SAMPLE AND HOLD CIRCUITS 154lf398n/a+Sample/Track-and-Hold Amplifier155lf398n/b+$StartFalse156lf398n8Precision Sample and Hold Amplifier 157lf398nb$StartFalse158lf398p Sample/Track-and-Hold Amplifier159lf398s8$StartFalse160lf39j8Precision Sample and Hold Amplifier 161lf6197$StartFalse162lf6197ccj$StartFalse163lf6197j$StartFalse164lh0053g-mil Sample/Track-and-Hold Amplifier165max5165$StartFalse166max5165lccm 32-Channel Sample/Hold Amplifier with a Single Multiplexed Input167max5165lecm$StartFalse168max5165mccm 32-Channel Sample/Hold Amplifier with a Single Multiplexed Input169max5165mecm$StartFalse170max5165nccm 32-Channel Sample/Hold Amplifier with aSingle Multiplexed Input171max5165necm$StartFalse172max516632-Channel Sample/Hold Amplifier with Four Multiplexed Inputs173max5166lccm$StartFalse174max5166lecm 32-Channel Sample/Hold Amplifier with Four Multiplexed Inputs175max5166mccm$StartFalse176max5166mecm 32-Channel Sample/Hold Amplifier with Four Multiplexed Inputs177max5166nccm$StartFalse178max5166necm 32-Channel Sample/Hold Amplifier with Four Multiplexed Inputs179max5167lccm$StartFalse180max5167lecm SAMPLE/TRACK-AND-HOLD AMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 181max5167mccm$StartFalse182max5167mecm SAMPLE/TRACK-AND-HOLD AMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 183max5167nccm$StartFalse184max5167necm SAMPLE/TRACK-AND-HOLD AMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 185max5168$StartFalse186max5168lccm SAMPLE/TRACK-AND-HOLD AMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 187max5168lecm$StartFalse188max5168mccm SAMPLE/TRACK-AND-HOLD AMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 189max5168mecm$StartFalse190max5168nccm SAMPLE/TRACK-AND-HOLDAMPLIFIER|32-CHANNEL|BICMOS|QFP|48PIN|PLASTIC 191max5168necm$StartFalse192ne5537Sample-and-hold amplifier193ne5537d$StartFalse194ne5537n Sample-and-hold amplifier195se5537$StartFalse196se5537fe Sample-and-hold amplifier197vn1025cc$StartFalse198vn1025ci Sample/Track-and-Hold Amplifier 199vn1025cm$StartFalse200vn1025dc Sample/Track-and-Hold Amplifier 201vn1025di$StartFalse202vn1025dm Sample/Track-and-Hold Amplifier 203vn1025mc$StartFalse204vn1025mi Sample/Track-and-Hold Amplifier 205vn1025mm$StartFalse206vn1025sc Sample/Track-and-Hold Amplifier 207vn1225cc$StartFalse208vn1225ci Sample/Track-and-Hold Amplifier 209vn1225cm$StartFalse210vn1225dc Sample/Track-and-Hold Amplifier 211vn1225di$StartFalse212vn1225dm Sample/Track-and-Hold Amplifier 213vn1225sc$StartFalse厂家Analog DevicesAnalog Devices Analog Devices Analog Devices Analog Devices Analog DevicesIntersil CorporationIntersil CorporationIntersil Corporation Intersil CorporationIntersil Corporation Intersil CorporationIntersil Corporation Intersil CorporationAnalog Devices Analog DevicesAnalog Devices Analog Devices Analog Devices Supertex, Inc ETCLinear Technology National Semiconductor National Semiconductor National SemiconductorETCPhilips Semiconductors Philips SemiconductorsLinear Technology National SemiconductorNational Semiconductor ETCLinear Technology Linear Technology Maxim IntegratedProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsMaxim Integrated ProductsPhilips SemiconductorsPhilips SemiconductorsPhilips Semiconductors。
Digital electronic weigher(数字电子秤的中英文资料)
Digital electronic weigherAbstractwith the rapid development of Microelectronics technology in the new century,the using traditional tools in the market have been completely unable to meet the needs of people。
People have been expecting cheap portable electronic scales which can measure accurately、smaller and easily reading for many years.Electronic scales have come into being。
the electronic scale posses the function which traditional scale can not replace , such as weighing convenience, high accuracy, automatic control, simple operation, widely used in people's lives, industrial production, scientific research。
voltage outputted by the he resistance strain sensor bridge make use of ADC0832 Built-in amplifier,8-bit speed A / D converter, Convert Corresponding Digital signal。
The digital signal will be dealt by the program in the MCU, then displayed the weight of the object on the LM4229LCD. User can input the price of the object through keyboard, then the value of the object will be calculated and displayed。
单片机篮球计分器毕业论文中英文资料外文翻译文献
单片机篮球计分器外文翻译一英文原文:DescriptionThe AT89C51 is a low-power, high-performance CMOS 8-bit microcomputer with 4K bytes of Flash Programmable and Erasable Read Only Memory (PEROM) and 128 bytes RAM. The device is manufactured using Atmel’s high density nonvolatile memory technology and is compatible with the industry standardMCS-51™ instruction set and pinout. The chip combines a versatile 8-bit CPU with Flash on a monolithic chip, the Atmel AT89C51 is a powerful microcomputer which provides a highly flexible and cost effective solution to many embedded control applications.Features:• Compatible with MCS-51™ Products• 4K Bytes of In-System Reprogrammable Flash Memory• Endurance: 1,000 Write/Erase Cycles• Fully Static Operation: 0 Hz to 24 MHz• Th ree-Level Program Memory Lock• 128 x 8-Bit Internal RAM• 32 Programmable I/O Lines• Two 16-Bit Timer/Counters• Six Interrupt Sources• Programmable Serial Channel• Low Power Idle and Power Down ModesThe AT89C51 provides the following standard features: 4K bytes of Flash, 128 bytes of RAM, 32 I/O lines, two 16-bit timer/counters, a five vector two-level interrupt architecture, a full duplex serial port, on-chip oscillator and clock circuitry. In addition, the AT89C51 is designed with static logic for operation down to zero frequency and supports two software selectable power saving modes. The Idle Mode stops the CPU while allowing the RAM, timer/counters, serial port and interrupt system to continue functioning. The Power Down Mode saves the RAM contents but freezes the oscillator disabling all other chip functions until the next hardware reset. Pin Description:VCC Supply voltage.GND Ground.Port 0Port 0 is an 8-bit open drain bidirectional I/O port. As an output port each pin can sink eight TTL inputs. When is are written to port 0 pins, the pins can be used as high impedance inputs.Port 0 may also be configured to be the multiplexed loworder address/data bus during accesses to external program and data memory. In this mode P0 has internal pullups.Port 0 also receives the code bytes during Flash programming, and outputs the code bytes during program verification. External pullups are required during program verification.Port 1Port 1 is an 8-bit bidirectional I/O port with internal pullups. The Port 1 output buffers can sink/source four TTL inputs. When 1s are written to Port 1 pins they are pulled high by the internal pullups and can be used as inputs. As inputs, Port 1 pins that are externally being pulled low will source current (IIL) because of the internal pullups.Port 1 also receives the low-order address bytes during Flash programming and verification.Port 2Port 2 is an 8-bit bidirectional I/O port with internal pullups. The Port 2 output buffers can sink/source four TTL inputs. When 1s are written to Port 2 pins they are pulled high by the internal pullups and can be used as inputs. As inputs, Port 2 pins that are externally being pulled low will source current (IIL) because of the internal pullups.Port 2 emits the high-order address byte during fetches from external program memory and during accesses to external data memory that use 16-bit addresses (MOVX @ DPTR). In this application it uses strong internal pull-ups when emitting 1s. During accesses to external data memory that use 8-bit addresses (MOVX @ RI), Port 2 emits the contents of the P2 Special Function Register.Port 2 also receives the high-order address bits and some control signals during Flash programming and verification.Port 3Port 3 is an 8-bit bidirectional I/O port with internal pullups. The Port 3 output buffers can sink/source four TTL inputs. When 1s are written to Port 3 pins they are pulled high by the internal pullups and can be used as inputs. As inputs, Port 3 pins that are externally being pulled low will source current (IIL) because of the pullups.Port 3 also serves the functions of various special features of the AT89C51 as listed below:receives somecontrol signals forFlash programmingand verification.RSTReset input. Ahigh on this pin fortwo machine cycles while the oscillator is running resets the device.ALE/PROGAddress Latch Enable output pulse for latching the low byte of the address during accesses to external memory. This pin is also the program pulse input (PROG) during Flash programming.In normal operation ALE is emitted at a constant rate of 1/6 the oscillator frequency, and may be used for external timing or clocking purposes. Note, however, that one ALE pulse is skipped during each access to external Data Memory.If desired, ALE operation can be disabled by setting bit 0 of SFR location 8EH. With the bit set, ALE is active only during a MOVX or MOVC instruction. Otherwise, the pin is weakly pulled high. Setting the ALE-disable bit has no effect if the microcontroller is in external execution mode.PSENProgram Store Enable is the read strobe to external program memory.When the AT89C51 is executing code from external program memory, PSEN is activated twice each machine cycle, except that two PSEN activations are skipped during each access to external data memory.EA/VPPExternal Access Enable. EA must be strapped to GND in order to enable the device to fetch code from external program memory locations starting at 0000H up to FFFFH. Note, however, that if lock bit 1 is programmed, EA will be internally latched on reset.EA should be strapped to VCC for internal program executions.This pin also receives the 12-volt programming enable voltage(VPP) during Flash programming, for parts that require 12-volt VPP.XTAL1Input to the inverting oscillator amplifier and input to the internal clock operating circuit.XTAL2Output from the inverting oscillator amplifier.Oscillator CharacteristicsXTAL1 and XTAL2 are the input and output, respectively, of an invertingamplifier which can be configured for use as an on-chip oscillator, as shown in Figure1. Either a quartz crystal or ceramic resonator may be used. To drive the device from an external clock source, XTAL2 should be left unconnected while XTAL1 is driven as shown in Figure2. There are no requirements on the duty cycle of the external clock signal, since the input to the internal clocking circuitry is through adivide-by-two flip-flop, but minimum and maximum voltage high and low time specifications must be observed.Idle ModeIn idle mode, the CPU puts itself to sleep while all the onchip peripherals remain active. The mode is invoked by software. The content of the on-chip RAM and all the special functions registers remain unchanged during this mode. The idle mode can be terminated by any enabled interrupt or by a hardware reset.It should be noted that when idle is terminated by a hard ware reset, the device normally resumes program execution, from where it left off, up to two machine cycles before the internal reset algorithm takes control. On-chip hardware inhibits access to internal RAM in this event, but access to the port pins is not inhibited. To eliminate the possibility of an unexpected write to a port pin when Idle is terminated by reset, the instruction following the one that invokes Idle should not be one that writes to aport pin or to external memory.二中文翻译:AT89C51是美国ATMEL公司生产的低电压,高性能CMOS8位单片机,片内含4Kbytes的快速可擦写的只读程序存储器(PEROM)和128 bytes 的随机存取数据存储器(RAM),器件采用ATMEL公司的高密度、非易失性存储技术生产,兼容标准MCS-51产品指令系统,片内置通用8位中央处理器(CPU)和flish 存储单元,功能强大AT89C51单片机可为您提供许多高性价比的应用场合,可灵活应用于各种控制领域。
A low-noise, low-power VCO
A Low-Noise,Low-Power VCO with AutomaticAmplitude Control for Wireless ApplicationsMihai A.Margarit,Joo Leong(Julian)Tham,Member,IEEE,Robert G.Meyer,Fellow,IEEE,and M.Jamal Deen,Senior Member,IEEE Abstract—Voltage-controlled oscillators(VCO’s)used inportable wireless communications applications,such as cellulartelephony,are required to achieve low phase-noise levels whileconsuming minimal power.This paper presents the designchallenges of a monolithic VCO with automatic amplitudecontrol,which operates in the300MHz to1.2GHz frequencyrange using different external resonators.The VCO phase-noiselevel is0106dBc/Hz at100-KHz offset from an800-MHzcarrier,and it consumes1.6mA from a2.7-V power supply.An extensive phase-noise analysis is employed for this VCOdesign in order to identify the most important noise sourcesin the circuit and tofind the optimum tradeoff between noiseperformance and power consumption.Index Terms—Phase noise,voltage-controlled oscillator(VCO),wireless applications.I.I NTRODUCTIONT HE remarkable growth in telecommunication systems,such as cellular telephony,demands continuous efforts to-ward the improvement of radio-frequency(RF)circuit perfor-mance at ever increasing levels of plete trans-ceiver solutions that integrate low-noise amplifiers(LNA’s),mixers,voltage-controlled oscillators(VCO’s),and transmitmodulators already exist.Moreover,the stringent noise andspurious emissions requirements for cellular communicationssystems,such as GSM,DCS,and PCS,need to be achievedwith even lower power-consumption levels.This paper describes the analysis and implementation ofa monolithic VCO with automatic amplitude control(AAC),which is part of a one-chip transceiver dedicated for dual-bandcellular systems[1].The VCO is capable of operating from300MHz to1.2GHz using different resonators.The measuredphase-noise level is(a)(b)Fig.1.(a)Simplified diagram of a voltage-controlled oscillator.(b)V oltage-controlled oscillator with damping resistor R s:has negligible effect on the fundamental mode[2].However,care needs to be taken in the design,since too large a valueoffor the differential amplifier in order to maintain constantMARGARIT et al.:LOW-NOISE,LOW-POWER VCO763Fig.2.Schematic of the VCO with AAC.gain.for minimum phase-noise levels largely independent of considerations for proper oscillation startup. In steady-state operation,the AAC loop forces the dc signal provided by the rectifier and the low-passfilter at the sensing input to track the reference level applied at the reference input.This leads to the second advantage of using the AAC circuit of enabling the VCO to provide constant output power independent of theresonator(3)Since the system is timevariant,and observation timein(3)with theequivalent noise source of each individual node,the phase-noise contribution of each node can be calculated[5].To explore the oscillator excess phase response,each nodeof the circuit needs to be excited at evenly distributed timesteps of the oscillation period.Due to thehighis an integer chosen such that the oscillation waveform hassettled before the next pulse is applied.The ramp generator isreset by thefirst positive-going zero crossing of the oscillation.The ramp is then compared in COMP2with a staircase voltage,which is incremented ateachis the number of pulses to be injected.In this way,pulses areinjected with a period equalto764IEEE JOURNAL OF SOLID-STATE CIRCUITS,VOL.34,NO.6,JUNE1999(a)(b)(c)Fig.3.(a)Sequence of pulses used to excite the oscillator.(b)Block diagram of the behavioral test generator.(c)VCO test points for phase sensitivity to injectedcharge.Fig.4.Impulse shape.is almost constant from DC to 25GHz,which is sufficient for this design that uses a bipolar processwithCurrentsourcethe effect of thenoise voltage generatedbytheeffect of the resistive losses in theresonator(5)(6)The collector shot noise oftransistormA).Thecyclostationarityofis8.6MARGARIT et al.:LOW-NOISE,LOW-POWER VCO765Fig.5.Tail-current noise spectrum.(a)(b)Fig.6.(a)VCO output waveform.(b)Simulated function h8;I(t; )(vertical axis in degrees/pC).across the nodes“out”and“outb”(Fig.2),and it has thevaluefor current pulsesinjected at the tail of the emitter-coupled pair.This functionhas a periodicity that is half the oscillation period.To obtainmore meaningful information on the phase sensitivity forperturbations in the tail current of the VCO,the functionis plotted together with the oscillation outputwaveform.It can be seen that for perturbations injectedaround the zero crossings and the peaks of the oscillation,the phase sensitivity is close to zero and reaches its maxima766IEEE JOURNAL OF SOLID-STATE CIRCUITS,VOL.34,NO.6,JUNE1999Fig.7.Frequency spectrum of h 8;I (t; )(vertical axis in dBV).forwhereis shown in Fig.7.As expected,there areharmonics at multiples of double the oscillation frequency.The harmonics mix with the noise around these frequencies and contribute to the total phase noise.For calculation of the phase-noise contribution from the tail current,the Fourier coefficientsof[4]th harmonic of the oscillation fre-quency.In this analysis,the summation is performed over the first five harmonics.Higher order harmonics have insignificant contribution to the phase noise.Of particular interest is the dc component,coefficientregion of the phase noiseintersectstheis definedas(9)In the aboveequation,andhas a period equalto the oscillation period.Again,in order to see the effect of this noise source,the oscillation output waveform and the collector currentofreaches its maximum when the collector currentis close to the peak,and it reaches the minimumwhenin Fig.9show that thecollector shot noise is mixed mostly with the first and second harmonics of the oscillation frequency to contribute to the total phase noise.However,the collector shot noiseofwas performed.Todo this,theratioMARGARIT et al.:LOW-NOISE,LOW-POWER VCO767(a)(b)(c)Fig.8.(a)VCO output waveform.(b)Collector current of Q1.(c)Simulated functions h8;IIt768IEEE JOURNAL OF SOLID-STATE CIRCUITS,VOL.34,NO.6,JUNE 1999Fig.9.Frequency spectrum of h 8e (t; )(vertical axis in dBV).Fig.10.Phase noise (continuous line)and figure of merit (dashed line)versus feedback ratio n:TABLE IN OISE C ONTRIBUTIONS AT100-kHz O FFSET FROM AN 800-MHz C ARRIERAlthough the noise contribution from the tail current is not important at this offset frequency,it becomes the major noise source at offset frequencies less than 3kHz.The factor of two for some of the noise sources in Table I accounts for noise sources that are considered twice due to the circuit symmetry [5].The sum of these values gives a noise-to-signal ratio ofregion of the spectrum.SpectreRFpredicts a phase-noise level ofMARGARIT et al.:LOW-NOISE,LOW-POWER VCO769parison of the phase noise calculated with phase noise simulated in SpectreRF.Fig.12.Microphotograph of the VCO with AAC.However,the current version of SpectreRF did not predictthe43dBc and the third harmonic is106dBc/Hz at100-770IEEE JOURNAL OF SOLID-STATE CIRCUITS,VOL.34,NO.6,JUNE1999Fig.13.VCO outputspectrum.Fig.14.Measured phase noise.kHz offset for a carrier frequency of 800MHz,which is in agreement with the analysis presented in this paper (Fig.14).The VCO core consumes 1.6mA from a 2.7-V power supply.The remaining circuits used for the AAC (rectifier,voltage reference,and amplifier)consume 0.25mA.If better phase-noise performance is desired,only the current consumption inthe VCO core needs to be increased,while the consumption of the AAC circuits remains unchanged.V.C ONCLUSIONSIn this paper,the possibilities of developing a low-noise,low-power VCO with capabilities for wireless applicationsMARGARIT et al.:LOW-NOISE,LOW-POWER VCO 771have been explored.An automatic amplitude control circuit was implemented,which allows the choice of the optimum oscillator feedback ratio for noise performance without being constrained by startup considerations.At the same time,the automatic amplitude control allows proper VCO operation for a wide range of the resonator quality factor.A novel method was used to study the phase-noise performance of the VCO.The method predicts results that are close to the measurements and allows the designer to obtain detailed information about the processes that contribute to oscillator phase noise.A CKNOWLEDGMENTThe authors would like to thank Dr.C.Hull and R.Magoon for helpful discussions.R EFERENCES[1]J.L.Tham,M.Margarit,B.Pregardier, C.Hull,and F.Carr,“A2.7V 900MHz/1.9GHz dual-band transceiver IC for digital wireless communication,”in Proc.CICC ,1998,p.559.[2]J.L.Tham,“Integrated radio frequency LC voltage-controlled oscil-lators,”College of Engineering,University of California,Berkeley,Electronics Research Laboratory Memo.,1995.[3]P.Davis,P.Smith,E.Campbell,J.Lin,K.Gross,G.Bath,Y.Low,M.Lau,Y.Degani,J.Gregus,R.Frye,and K.Tai,“Si-on-Si integration of a GSM transceiver with VCO resonator,”in Proc.ISSCC 1998,vol.41,Feb.1998,p.248.[4] A.Hajimiri and T.H.Lee,“A general theory of phase noise in electricaloscillators,”IEEE J.Solid-State Circuits ,vol.33,pp.179–194,Feb.1998.[5] C.D.Hull and R.G.Meyer,“A systematic approach to the analysisof noise in mixers,”IEEE Trans.Circuits Syst.I ,vol.40,pp.909–919,Dec.1993.Mihai A.Margarit received the Dipl.Ing.degree in electrical engineering from the “Politehnica”Uni-versity Bucharest,Romania,in 1984.He currently is pursuing the Ph.D.degree in electrical engineering at Simon Fraser University,Burnaby,B.C.,Canada.Since 1984,he has worked in analog circuit design for the National Institute for Microelectron-ics,Bucharest,the Fraunhofer Institute,Erlangen,Germany,and Simon Fraser University,Vancouver,Canada.He is currently with Rockwell Semicon-ductor Systems,Newport Beach,CA,where he isa Senior Design Engineer working on high-frequency circuits for wireless communicationapplications.Joo Leong (Julian)Tham (S’88–M’96)received the B.S.degree in electrical engineering (with high-est honors)from the University of California,Santa Barbara,and the M.S.degree in electrical engineer-ing from the University of California,Berkeley.He has worked at Raytheon and Trimble Navi-gation.His previous work includes autocalibration systems and global positioning system receivers.From 1993to 1999,he was with Rockwell Semi-conductor Systems,Newport Beach,CA,where he was a Principal Design Engineer and Managerworking on radio-frequency integrated circuits for wireless communication applications.He currently is with Maxim Integrated Products,Sunnyvale,CA.His current interests are in the areas of high-frequency circuit design and integrated transceiver architectures.Mr.Tham is a member of Eta Kappa Nu,Tau Beta Pi,and the Golden Key Honor Society.He was named Rockwell Semiconductor Systems Engineer of the Year in1995.Robert G.Meyer (S’64–M’68–SM’74–F’81)was born in Melbourne,Australia,on July 21,1942.He received the B.E.,M.Eng.Sci.,and Ph.D.degrees in electrical engineering from the University of Melbourne in 1963,1965,and 1968,respectively.In 1968,he was an Assistant Lecturer in electrical engineering at the University of Melbourne.Since September 1968,he has been with the Department of Electrical Engineering and Computer Sciences,University of California,Berkeley,where he is now a Professor.His current research interests are high-frequency analog integrated-circuit design and device fabrication.He has been a Consultant on electronic circuit design for numerous companies in the electronics industry.He is a coauthor of Analysis and Design of Analog Integrated Circuits (New York:Wiley,1993)and Editor of Integrated Circuit Operational Amplifiers (New York:IEEE Press,1978).Dr.Meyer was President of the IEEE Solid-State Circuits Council and was an Associate Editor of the IEEE J OURNAL OF S OLID -S TATE C IRCUITS and of the IEEE T RANSACTIONS ON C IRCUITS AND S YSTEMS.M.Jamal Deen (S’81–M’86–SM’92)was born in Georgetown,Guyana.He received the B.Sc.degree in physics and mathematics from the University of Guyana in 1978and the M.S.and Ph.D.degrees in electrical engineering and applied physics from Case Western Reserve University,Cleveland,OH,in 1982and 1985,respectively.From 1978to 1980,he was an Instructor of physics at the University of Guyana.From 1980to 1983,he was a Research Assistant at Case Western Reserve University.He was a Research Engineer(1983–1985)and an Assistant Professor (1985–1986)at Lehigh University,Bethlehem,PA.In 1986,he joined the School of Engineering Science,Simon Fraser University,Vancouver,BC,Canada,as an Assistant Professor and since 1993has been a full Professor.He was a Visiting Scientist at the Herzberg Institute of Astrophysics,National Research Council,Ottawa,Ont.,Canada,in summer 1986,and he spent his sabbatical leave as a Visiting Scientist at Northern Telecom,Ottawa,in 1992–1993.He was also a Guest Professor in the Faculty of Electrical Engineering,Delft University of Technology,The Netherlands,in summer 1997and a CNRS scientist at the Physics of Semiconductor Devices Laboratory,Grenoble,France,in summer 1998.His current research interests include integrated devices and circuits;device physics,modeling,and characterization;and low-power,low-noise,high-frequency circuits.Dr.Deen is a member of Eta Kappa Nu,the American Physical Society,and the Electrochemical Society.He was a Fulbright-Laspau Scholar from 1980to 1982,an American Vacuum Society Scholar from 1983to 1984,and an NSERC Senior Industrial Fellow in 1993.。
单片机交通灯中英文资料对照外文翻译文献
单片机交通灯中英文资料对照外文翻译文献原文题目:DESIGN OF TRAFFIC LIGHT BASED ON MCUBecause of the rapid development of our economy resulting in the car number of large and medium-sized cities surged and the urban traffic, is facing serious test,leading to the traffic problem increasingly serious,its basically are behaved as follows: traffic accident frequency, to the human life safety enormous threat, Traffic congestion,resulting in serious travel time increases,energy consumption increase;Air pollution and noise pollution degree of deepening,etc. Daily traffic jams become people commonplace and had to endure。
In this context,in combination with the actual situation of urban road traffic, develop truly suitable for our own characteristics of intelligent signal control system has become the main task。
PrefaceIn practical application at home and abroad, according to the actual traffic signal control application inspection,planar independent intersection signal control basic using set cycle,much time set cycle,half induction,whole sensor etc in several ways. The former two control mode is completely based on planar intersection always traffic flow data of statistical investigation, due to traffic flow the existence of variable sex and randomicity,the two methods have traffic efficiency is low, the scheme,the defects of aging and half inductive and all the inductive the two methods are in the former two ways based on increased vehicle detector and according to the information provided to adjust cycle is long and green letter of vehicle,it than random arrived adaptability bigger,can make vehicles in the parking cord before as few parking, achieve traffic flowing effectIn modern industrial production,current,voltage,temperature, pressure, and flow rate,velocity, and switch quantity are common mainly controlled parameter. For example:in metallurgical industry, chemical production, power engineering, the papermaking industry,machinery and food processing and so on many domains,people need to transport the orderly control. By single chip microcomputer to control of traffic,not only has the convenient control,configuration simple and flexible wait for an advantage, but also can greatly improve the technical index by control quantity,thus greatly improve product quality and quantity. Therefore,the monolithic integrated circuit to the traffic light control problem is an industrial production we often encounter problems.In the course of industrial production, there are many industries have lots of traffic equipment, in the current system, most of the traffic control signal is accomplished by relays, but relays response time is long,sensitivity low,long—term after use,fault opportunity increases greatly,and adopts single-chip microcomputer control,the accuracy of far greater than relays, short response time,software reliability, not because working time reduced its performance sake, compared with,this solution has the high feasibility。
低噪声下海音频信号条件和记录系统说明书
A Novel Conditioning and Recording System of Low-noise Underwater AcousticSignalNi Xiuhui, Zheng Yi*, Meng Qingming Shandong Provincial Key Laboratory of Ocean Environment Monitoring Technology Shandong Academy of Sciences Institute of Oceanographic InstrumentationQingdao, ChinaLi Weidong People's Hospital of Zhao YuanYantai, ChinaAbstract—A novel conditioning and recording system of Low-noise underwater acoustic signal is proposed in order to coordinate the applied vector hydrophones. The low-noise analog circuit design is taken into account seriously according to the requirements of high precision and low distortion of underwater acoustic data. Compared with other similar systems, it features on miniaturization, high dynamic range, low distortion and low power consumption.Keywords-Underwater acoustic experiment, Low noise, Data recording, MSP430I.I NTRODUCTIONMost of underwater acoustic signals picked up by sensors like hydrophones are very weak, which requires a data acquisition system with high SNR performance.In order to obtain high-quality experimental data, An underwater acoustic data recording system is accomplished based on low-noise analog circuit design techniques, this system also features on high dynamic range, low distortion signal acquisition while achieving high sample rate and real time storage. This paper describes the Date Recording system of Underwater Acoustic Data in detail, including both the hardware and software implementation, as well as the key design challenges and the techniques employed to meet the specifications.The system is applied in the marine-self noise field measurement experiment which using the combined acoustic vector sensors. Therefore, four channel signals are collected and stored by this system. one channel is sound pressure signal, and other channels are particle velocity signals.The workflow and the structure of proposed system are shown in Fig.1 and Fig.2.Figure 1.The workflow of the recording systemFigure 2. The structure of the recording systemThis proposed system includes the following functions:•Variable gain amplification of acoustic signals;•High order band-pass filter;•Data acquisition and storage.According to the require of high dynamic range signal acquisition, the power supply of analog board comes from positive and negative 12 volt lithium battery. The acoustic signals after conditioning can swing up to ±10v with little distortion. Thus, it is suitable to choose a ±10v input range ADC like the 16-bit LT1859 for the digitization of analog signals. and the 5v、3.3v voltage is generated by low quiescent current LDO for the overall digital system power supply.II.T HE D ESIGN OF H ARDWAREThe design of analog circuit includes multi-level signal amplification、high-pass filter、low-pass filter and phase adjust section. The purpose of analog circuit mainly is to extract the useful signal from the noises, filter out unwanted interference and increase signal amplitude.Low-noise preamplifier should be used because low noise is one of the important characteristic for the conditioning of underwater acoustic signal. The ADI instrument amplifier AD8221 is taken for amplifier of the velocity signals channel whose the noise density of input voltage is 8 /nV Hz. Due to the high source impedance of piezoceramic pressure sensors, the JFET input, monolithicinstrumentation amplifier AD8220 is selected instead. Using JFET transistors, the AD8220 offers extremely high input impedance, extremely low bias currents, therefore, minimize the current noise which is the main problem of high source impedance sensors.The useful signal needs to be extracted form a variety of background noises by appropriate filters. Low-frequency signal is eliminated by the high-pass filter in order to avoid the output saturation cause by the low frequency marine hydrodynamic noise, and then the high frequency noise is almost completely removed by the 8th-order order low-pass Butterworth filter which has the least attenuation for all frequencies in the pass band. The Sallen–Key topology is used to implement both the 6-order high-pass and 8-order low-pass Butterworth filters that are particularly valued for its simplicity. Just one single amplifier, two resistors and two capacitors are needed by the 2-order filter of SK topology structure at the unit gain as are shown in Fig.3. The RC value can be calculated through the assisted tools of filter design, and pay attention to that the metal film resistors of smallerresistance value help to reduce system noise [1].Figure 3. A unity-gain low-pass filter implemented with a Sallen–Keytopology.Where the undamped natural frequency fo and Q factor (i.e., damping ratio ζ) are given by(1) And, (2)So,(3) The intensity of underwater acoustic signal is in the range of 104 orders of magnitude [2], The PGA section amplification circuit of this system carry out the adjustment of the overall gain from 20dB-80dB by different feedback resistors which are selected by analog switch DG211, so that the signal sampling of a large dynamic range is achieved. Besides, this system also includes amplifier circuits used in the impedance isolation and RC phase adjustment circuit. It is better that it is independent for four-channel analog board or a PCB board is made for the minimum interference among four channels, and the even channels of ADC are grounded to achieve the previous purpose. In the noise test of the electronic system, the analog signal input is grounded, the electronic system is configured to 4000 times amplification, and we found the output noise is about 10mv. Therefore, the valid noise of input terminal is 10mv/4000=2.5uv. The analog circuits are fully tested for low noise (less than 10uV noise).By the way, the high order filters also contribute to the low noise performance because it filtered out most of the high frequency noise. The low-pass and high-pass filters are cascade by SK topology using the low-noise amplifier OP2177. The magnitude-frequency characteristic is shown in Fig4. (The pass band is 10-500Hz in this case, and it canbe adjusted as needed to design)Figure 4. Amplitude frequency response of analog circuitsThe design of digital circuit includes MCU and interfacewith various peripherals.The Texas Instruments MSP430 family of ultra low power microcontrollers consists of several devices featuring lower power consumption, and 25MIPS CPU speed [3]. The5xx series MSP430 chip -Msp430F5438A have beenselected for governing digital system. This kind of devicesare complete system on-a-chip and in clued many integrated peripherals like Direct Memory Access (DMA) modules,UARTs, etc. All these characteristics make them a very attractive choice for this design.The media chosen to store the experimental data acquiredduring an inspection is a Secure Digital cards. Which is removable Flash-based storage devices that are gaining in popularity in small consumer devices such as digital cameras. Their small size, relative simplicity, low power consumption, and low cost make them an ideal solution for many applications. This interface combined with the MSP430, can form the foundation for a low-cost, long-life data logger. So, the SD card is a good choice for the underwater acoustic signal recording system when the data collection system takes a long time to collect and record huge amounts of data. It has two optional protocols: the SD mode and the SPI mode. All of data exchange can be completed by the four lines in the SPI mode, which greatly simplify the design of hardware circuit. The interface between SD and the MCU is use the SPI protocol which is shown in Fig.5.Figure 5. SD Card Schematic-SPI ModeThis system takes the 16bit softspan ADC chip LTC1859 in order to meet the 10V sampling of positive and negative analog signal. 16-bit resolution analog to digital conversion provides a responsive instrument capable of registering changes as small as one part in 65536 (0.000015% of the full scale measurement range). Besides, the voltage reference of chip internal is 10ppm, the SNR is 87dB, these features are all very important for a high-quality data acquisition system. It is connected to MCU through SPI interface, as is shown in Fig.6.Figure 6. ADC chip interface with the MCUThe electronic compass, with a pointing accuracy of 1º rms, uses the low-power three-dimensional digital compass of the PNI Company, and it is linked to MCU through RS232 interface.All the interfaces like SPI and 232 are industrial standard and therefore very convenient for firmware development and debug.III. T HE D ESIGN OF F IRMWAREThe mount of data to be collected can be estimated as shown in Equation 4. Fs is the sampling frequency, Word_Size is the number of bytes needed to store one single sensor read (2bytes for a16-bit resolution), N ch the number of sensor. T is the recording time in seconds. As at 10k sampling rate from four channels for an hour , the amount of data to be collected is:Data_Size = fs*Word_Size* N ch *T(4) =10240*2*4*3600=294912000bytes=280Mbytes The 32G SD card can fulfill 4 days deployment storage.The data from this recording system is writing directly in the sector rather than through the creation of file system storage, which results in higher writing speed.The writing sector of SD card consists of three procedures: sent the writing sector command to the SD card; transmit data to the SD card; the SD card internal programming. Here I must say The SD card programming internal needn’t the CPU intervention, however, the time-consuming of one sector can reach up to hundreds of mill-seconds [5]. So in order to achieve the high-speed writing of SD card, big RAM caches are essential. And The DMA capabilities available in the MSP430 MCU, that permit fast data transfers without CPU intervention, are of a great advantage in applications where high sampling rates are required. The strategy of high-speed recording proposed below also relies on the exploitation of the DMA capabilities The classic double-buffer strategy is adopted, Two array of memory buffers of 512*12 bytes each is used to temporarily store the acquired data while is being transferred to the SD card. Let us focus on the data acquisition strategy implemented in the MCU: 1. 0.1ms timer interrupts is established for the sampling rate of 10k. The four channels is sampled once the interrupts is carried out, all of eight bytes from 2 bytes per channel is continuously written in the established AdcBuffer; 2. After 768 interrupts, the AdcBuffer of 6K is full, and the DMA is opened so that the data in the AdcBuffer is transmitted to the MMCBuffer of the same capacity; 3. Meanwhile, the new sampled data is over write in AdcBuffer. 4. The 6K bytes data will be transmitted to the SD card once the DMA transmission is completed;The flow chart of this strategy is shown in Fig.7. With the 16K RAM and DMA modules of Msp430F5438A combined with 25Mips processing speed, the real-time data recording up to 20ksps four channels is achieved. The high-speed SD card is used in this Stand-alone data logger with configurable sample rate from as low as 0.001 Hz up to as high as 10,000 samples per second.Figure 7. The system sampling and real-time handlingIV.C ONCLUSIONSeveral tests have been performed in order to ensure the low-noise performance on the analog circuits and check the effectiveness of the strategies adopted to optimize the SD real-time writing performance of the recording system.The system provides a reliable data acquisition platform for the underwater acoustic experiment, satisfying the requirements derived from the targeted application, in terms of sampling rate, resolution, data storage capabilities and power consumption. Besides, the dynamic range of signal is greater than 70dB, and the equivalent input noise is less than 10μv, the pass-band ripple is less than 0.1dB, the phase difference among channels is small. Also, the operating current of the whole system is about 80mA, the entire system is lightweight and portable if the high-energy lithium-ion battery is adopted, and it is convenient to be placed in equipment and deploy. In a word, this system is very feasible in the marine environment noise field measurement experiment for the use on underwater acoustic signal logging.A CKNOWLEDGMENTThe first author wishes to thank Zheng yi and Yang guang for their valuable comments that improved the qualityof this paper. And this paper was supported by the National Natural Science Foundation of China under Grant 40806044, and supported by the QingDao Science and Technology Planning Project Fund of China under Grant 10-3-4-9-2-jch, and supported by Research Fund for the Doctoral Program of the Shandong Academy of Sciences under Grant Y09-2.R EFERENCES[1]Henry, Wang pei-qing, etc. The noise suppression and attenuationtechnology of electronic systems[M]. Electronic industry press, 2003(In Chinese).[2]Liu bo-sheng, Lei jia-yu etc. Underwater acoustic principle [M].Harbin engineering university press, 2010 (In Chinese).[3]Texas Instruments Incorporated. MSP430 Family User's Guideslau208g. /.[4]Linear Technology Corporation. LTC1859 Datasheet./.[5]SanDisk. Secure Digital Card Product Manual - Revision 1.7,September 2003.。
外文翻译:智能开关电源
Intelligent switch power supply英文:With the rapid development of electronic technology, application field of electronic system is more and more extensive, electronic equipment, there are more and more people work with electronic equipment, life is increasingly close relationship. Any electronic equipment are inseparable from reliable power supply for power requirements, they more and more is also high. Electronic equipment miniaturized and low cost in the power of light and thin, small and efficient for development direction. The traditional transistors series adjustment manostat is continuous control linear manostat. This traditional manostat technology more mature, and there has been a large number of integrated linear manostat module, has the stable performance is good, output ripple voltage small, reliable operation, etc. But usually need are bulky and heavy industrial frequency transformer and bulk and weight are big filter.In the 1950s, NASA to miniaturization, light weight as the goal, for a rocket carrying the switch power development. In almost half a century of development process, switch power because of its small volume, light weight, high efficiency, wide range, voltage advantages in electric, control, computer, and many other areas of electronic equipment has been widely used. In the 1980s, a computer is made up of all of switch power supply, the first complete computer power generation. Throughout the 1990s, switching power supply in electronics, electrical equipment, home appliances areas to be widely, switch power technology into the rapid development. In addition, large scale integrated circuit technology, and the rapid development of switch power supply with a qualitative leap, raised high frequency power products of, miniaturization, modular tide.Power switch tube, PWM controller and high-frequency transformer is an indispensable part of the switch power supply. The traditional switch power supply is normally made by using high frequency power switch tube division and the pins, such as using PWM integrated controller UC3842 + MOSFET is domestic small powerswitch power supply, the design method of a more popularity.Since the 1970s, emerged in many function complete integrated control circuit, switch power supply circuit increasingly simplified, working frequency enhances unceasingly, improving efficiency, and for power miniaturization provides the broad prospect. Three end off-line pulse width modulation monolithic integrated circuit TOP (Three switch Line) will Terminal Off with power switch MOSFET PWM controller one package together, has become the mainstream of switch power IC development. Adopt TOP switch IC design switch power, can make the circuit simplified, volume further narrowing, cost also is decreased obviouslyMonolithic switching power supply has the monolithic integrated, the minimalist peripheral circuit, best performance index, no work frequency transformer can constitute a significant advantage switching power supply, etc. American PI (with) company in Power in the mid 1990s first launched the new high frequency switching Power supply chip, known as the "top switch Power", with low cost, simple circuit, higher efficiency. The first generation of products launched in 1994 represented TOP100/200 series, the second generation product is the TOP Switch - debuted in 1997 Ⅱ. The above products once appeared showed strong vitality and he greatly simplifies thedesign of 150W following switching power supply and the development of new products for the new job, also, high efficiency and low cost switch power supply promotion and popularization created good condition, which can be widely used in instrumentation, notebook computers, mobile phones, TV, VCD and DVD, perturbation VCR, mobile phone battery chargers, power amplifier and other fields, and form various miniaturization, density, on price can compete with the linear manostat AC/DC power transformation module.Switching power supply to integrated direction of future development will be the main trend, power density will more and more big, to process requirements will increasingly high. In semiconductor devices and magnetic materials, no new breakthrough technology progress before major might find it hard to achieve, technology innovation will focus on how to improve the efficiency and focus onreducing weight. Therefore, craft level will be in the position of power supply manufacturing higher in. In addition, the application of digital control IC is the future direction of the development of a switch power. This trust in DSP for speed and anti-interference technology unceasing enhancement. As for advanced control method, now the individual feels haven't seen practicability of the method appears particularly strong,perhaps with the popularity of digital control, and there are some new control theory into switching power supply.(1)The technology: with high frequency switching frequencies increase, switch converter volume also decrease, power density has also been boosted, dynamic response improved. Small power DC - DC converter switch frequency will rise to MHz. But as the switch frequency unceasing enhancement, switch components and passive components loss increases, high-frequency parasitic parameters and high-frequency EMI and so on the new issues will also be caused.(2)Soft switching technologies: in order to improve the efficiency of non-linearity of various soft switch, commutation technical application and hygiene, representative of soft switch technology is passive and active soft switch technology, mainly including zero voltage switch/zero current switch (ZVS/ZCS) resonance, quasi resonant, zero voltage/zero current pulse width modulation technology (ZVS/ZCS - PWM) and zero voltage transition/zero current transition pulse width modulation (PWM) ZVT/ZCT - technical, etc. By means of soft switch technology can effectively reduce switch loss and switch stress, help converter transformation efficiency (3)Power factor correction technology (IC simplifies PFC). At present mainly divided into IC simplifies PFC technology passive and active IC simplifies PFC technology using IC simplifies PFC technology two kinds big, IC simplifies PFC technology can improve AC - DC change device input power factor, reduce the harmonic pollution of power grid.(4)Modular technology. Modular technology can meet the needs of the distributed power system, enhance the system reliability.(5)Low output voltage technology. With the continuous development of semiconductor manufacturing technology, microprocessor and portable electronic devices work more and more low, this requires future DC - DC converter can provide low output voltage to adapt microprocessor and power supply requirement of portable electronic devicesPeople in switching power supply technical fields are edge developing related power electronics device, the side of frequency conversion technology, development of switch between mutual promotion push switch power supply with more than two year growth toward light, digital small, thin, low noise and high reliability, anti-interference direction. Switching powersupply can be divided into the AC/DC and DC/DC two kinds big, also have AC/AC DC/AC as inverter DC/DC converter is now realize modular, and design technology and production process at home and abroad, are mature and standardization, and has approved by users, but the AC/DC modular, because of its own characteristics in the process of making modular, meet more complex technology and craft manufacture problems. The following two types of switch power supply respectively on the structure and properties of this.Switching power supply is the development direction of high frequency, high reliability, low consumption, low noise, anti-jamming and modular. Because light switch power, small, thin key techniques are changed, so high overseas each big switch power supply manufacturer are devoted to the development of new high intelligent synchronous rectifier, especially the improvement of secondary devices of the device, and power loss of Zn ferrite (Mn) material? By increasing scientific and technological innovation, to enhance in high frequency and larger magnetic flux density (Bs) can get high magnetic under the miniaturization of, and capacitor is a key technology. SMT technology application makes switching power supply has made considerable progress, both sides in the circuitboard to ensure that decorate components of switch power supply light, small, thin. The high frequency switching power supply of the traditional PWM must innovate switch technology, to realize the ZCS ZVS, soft switch technology hasbecome the mainstream of switch power supply technical, and greatly improve the efficiency of switch power. For high reliability index, America's switch power producers, reduce by lowering operating current measures such as junction temperature of the device, in order to reduce stress the reliability of products made greatly increased.Modularity is of the general development of switch power supply trend can be modular power component distributed power system, can be designed to N + 1 redundant system, and realize the capacity expansion parallel. According to switch power running large noise this one defect, if separate the pursuit of high frequency noise will increase its with the partial resonance, and transform circuit technology, high frequency can be realized in theory and can reduce the noise, but part of the practical application of resonant conversion technology still have a technical problem, so in this area still need to carry out a lot of work, in order to make the technology to practional utilization.Power electronic technology unceasing innovation, switch power supply industry has broad prospects for development. To speed up the development of switch power industry in China, we must walk speed of technological innovation road, combination with Chinese characteristics in the joint development path, for I the high-speed development of national economy to make the contribution. The basic principle and component functionAccording to the control principle of switch power to classification, we have the following 3 kinds of work mode:1) pulse width adjustment type, abbreviation Modulation Pulse Width pulse width Modulation (PWM) type, abbreviation for. Its main characteristic is fixed switching frequency, pulse width to adjust by changing voltage 390v, realize the purpose. Its core is the pulse width modulator. Switch cycle for designing filter circuit fixed provided convenience. However, its shortcomings is influenced by the power switch conduction time limit minimum of output voltage cannot be wide range regulation; In addition, the output will take dummy loads commonly (also called pre load), in order to prevent the drag elevated when output voltage. At present, most ofthe integrated switch power adopt PWM way.2) pulse frequency Modulation mode pulse frequency Modulation (, referred to Pulse Frequency Modulation, abbreviation for PFM) type. Its characteristic is will pulse width fixed by changing switch frequency to adjust voltage 390v, realize the purpose. Its core is the pulse frequency modulator. Circuit design to use fixed pulse-width generator to replace the pulse width omdulatros and use sawtooth wave generator voltage?Frequency converter (for example VCO changes frequency VCO). It on voltage stability principle is: when the output voltage Uo rises, the output signal controller pulse width unchanged and cycle longer, make Uo 390v decreases, and reduction. PFM type of switch power supply output voltage range is very wide, output terminal don't meet dummy loads. PWM way and way of PFM respectively modulating waveform is shown in figure 1 (a), (b) shows, tp says pulse width (namely power switch tube conduction time tON), T represent cycle. It can be easy to see the difference between the two. But they have something in common: (1) all use time ratio control (TRC) on voltage stability principle, whether change tp, finally adjustment or T is pulse 390v. Although adopted in different ways, but control goals, is all rivers run into the sea. (2) when load by light weight, or input voltage respectively, from high changed by increasing the pulse width, higher frequency method to make the output voltage remained stable.3) mix modulation mode, it is to point to the pulse width and switching frequency is not fixed, each other can change, it belongs to the way the PWM and PFM blend mode. It contains a pulsewidthomdulatros and pulse frequency modulator. Because and T all can adjust alone, so occupies emptiescompared to adjust the most wide range, suitable for making the output voltage for laboratories that use a wide range of can adjust switching power supply. Above 3 work collectively referred to as "Time Ratio Control" (as a Control, from TRC) way. As noted, pulse width omdulatros either as a independent IC use (for example UC3842 type pulse width omdulatros), can also be integrated in DC/DC converter (for example LM2576 type switching voltage regulators integrated circuit), still can integration in AC/DC converter (for exampleTOP250 type monolithic integrated circuit switching power supply. Among them, the switching voltage regulators belong to DC/DC power converter, switching power supply general for AC/DC power converter.The typical structure of switch power as figure1shows, its working principle is: the first utility into power rectifier and filtering into high voltage dc and then through the switch circuit and high-frequency switch to high frequency low pressure pulse transformer, and then after rectification and filter circuits, finally output low voltage dc power. Meanwhile in the output parts have a circuit feedback to control circuit, through the control PWM occupies emptiescompared to achieve output voltage stability.Figure 1 typical structure of switch power supplySwitching power supply by these four components:1) the main circuit: exchange network input, from the main circuit to dc output. Mainly includes input filter, rectifier and filtering, inverter, and output rectifier and filtering.(1) input filter: its effect is the power grid existing clutter filtering, also hinder the machine produces clutter feedback to public power grid.(2) rectifier and filter: the power grid ac power directly for a smooth dc rectifier, for the next level transformation.(3) inverter: will the dc after rectifying a high-frequency ac, this is the core of high frequency switching power supply, the higher the frequency, the volume, weight and the ratio of power output and smaller.(4) Out put rectifier and filter: according to load needs, providing stable and reliable dc power supply. 2) control circuit: on the one hand, from the output bysampling with set standards to compare, and then to control inverter, changing its frequency or pulse width, achieve output stability, on the other hand, according to data provided by the test circuit, the protection circuit differential, provide control circuit to the machine to various protection measures. Including the output feedback circuit and sampling circuit, pulse width modulator. 3) the detection and protection circuit: detection circuit had current detection, over-voltage detection, owe voltage detection, overheat detection, etc.; Protection circuit can be divided over current protection, over-voltage protection, owe voltage protection, the ground-clamp protection, overheating protection, automatic restart, soft start, slow startup, etc. Various types. 4) Other circuit: if the sawtooth wave generator, offset circuit, optical coupler, etc.智能开关电源中文:随着电子技术的高速发展,电子系统的应用领域越来越广泛,电子设备的种类也越来越多,电子设备与人们的工作、生活的关系日益密切。
linearsyetems全系列参数查询替换对照表
2
Junction Field Effect Transistors
Monolithic Dual Amplifiers
N Channel
P/N en ∆VGS BVGSS V min IDSS IGSS gfs µS min PKG. nV/√Hz mV max max mA pA min max
F4,F7 F4,F7 F4,F7
HIGH FREQUENCY
2N/PN/SST4416 2N/PN/SST4416A J/SST210 J/SST211 J/SST212 J/SST/U308 J/SST/U309 J/SST/U310 6 6 10 10 10 6 6 6 -6.0 -6.0 -3.0 -4.5 -6.0 -6.5 -4.0 -6.5 -30 -35 -25 -25 -25 -25 -25 -25 5 -100 4500 5 -100 4500 2 -100 4000 7 -100 6000 15 -100 7000 12 -1000 8000 12 -1000 10000 24 -1000 8000
Selection Guide and Cross Reference
Linear Integrated Systems
SMALL SIGNAL DISCRETE SEMICONDUCTORS
JFETs
DMOS Switches
BJTs
MOSFETs
Linear Integrated Systems
F3,F6,F7 F3,F6,F7 F4,F7 F4,F7 F4,F7 F1,F4,F7 F1,F4,F7 F1,F4,F7
HIGH FREQUENCY
2N/SST5911 2N/SST5912 2N/SST5912C U/SST440 U/SST441 20 20 20 20 20 10 15 40 10 20 -25 -25 -25 -25 -25 7 7 7 6 6 -50 -50 -50 4000 4000 4000
各种LED驱动芯片
意法半导体(ST)推出一款驱动电流高达80mA的24在一个7x7mm的TQFP48封装内,新产品效能相当于三个普通的8路输出驱动器。
STP24DP05内置SPI端口提供精确的控制诊断功能。
ST公司的STP24DP05是带输出误差检测的24位移位寄存器恒流LED驱动器,包含有8x3位串进并出的移位寄存器,输出级有24个可调整的电流源,提供5-80mA恒定电流来驱动LED.电源电压可低到3V,输出电压可高达20V,主要应用在LCD屏显示器.本文介绍了STP24DP05的主要特性, 方框图和典型应用电路图.STP24DP05 24-bit constant current LED sink driver with output error detectionThe STP24DP05 is a monolithic, low voltage, low current power 24-bit shift register designed for LED pan EL displays. The device contains a 8 x 3-bit serial-in, parallel-out shift register that feeds a 8 x 3-bit D-type storage register. In the output stage, twenty-four regulated current sources were designed to provide 5-80 mA constant current to drive the LEDs.The 8x3 shift registers data flow sequence order can be managed with two dedicated pins. The STP24DP05 has a dedicated pin to activate the outputs with a sequential delay, that will prevent inrush current during outputs turn-ON.The device detection circuit checks 3 different conditions that can occur on the output line: short to GND, short to VO or open line.The data detection results are loaded in the shift registers and shifted out via the serial line output. The detection functionality is activated with a dedicated pin or as alternative, through a logic sequence that allows the user to enter or exit from detection mode.Through three external resistors, users can adjust the output current for each 8-channel group, controlling in this way the light intensity of LEDs. The STP24DP05 guarantees a 20 V output driving capability, allowing users to connect more LEDs in series.The high clock frequency, 25 MHz, makes the device suitable for high data rate transmission.The 3.3 V of voltage supply is useful for applications that interface any micro from 3.3 V.主要特性:■Low voltage power supply down to 3 V■8 x 3 constant current output channels■Adjustable output current through external resistors■Short and open output error detection■Serial data IN/Parallel data OUT■Shift register data flow registers control■Accepts 3.3 V and 5 V micro driver■Output current: 5-80 mA■25 MHz clock frequency■High thermal efficiency packageM3354/LM2792电荷泵驱动白光LED的电路发布商:NS 2007年12月13日美国国家半导体公司开发了许多用来驱动白光LED的解决方案,其中包括交换式电容变换器方案和采用电感器的交换式稳压器方案。
单片机外文翻译--AT89S51概述
外文翻译学生姓名:学号:指导教师:专业:二零一零年六月The Description of AT89S511 General DescriptionThe AT89S51 is a low-power, high-performance CMOS 8-bit microcontroller with 4K bytes of In-System Programmable Flash memory. The device is manufactured using Atmel’s high-density nonvolatile memory technology and is compatible with the industry-standard 80C51 instruction set and pinout. The on-chip Flash allows the program memory to be reprogrammed in-system or by a conventional nonvolatile memory programmer. By combining a versatile 8-bit CPU with In-System Programmable Flash on a monolithic chip, the Atmel AT89S51 is a powerful microcontroller which provides a highly-flexible and cost-effective solution to many embedded control applications.The AT89S51 provides the following standard features: 4K bytes of Flash, 128 bytes of RAM, 32 I/O lines, Watchdog timer, two data pointers, two 16-bit timer/counters, a five-vector two-level interrupt architecture, a full duplex serial port, on-chip oscillator, and clock circuitry. In addition, the AT89S51 is designed with static logic for operation down to zero frequency and supports two software selectable power saving modes.The Idle Mode stops the CPU while allowing the RAM, timer/counters, serial port, and interrupt system to continue functioning. The Power-down mode saves the RAM contents but freezes the oscillator, disabling all other chip functions until the next external interrupt or hardware reset.2 PortsPort 0 is an 8-bit open drain bi-directional I/O port. As an output port, each pin can sink eight TTL inputs. When 1s are written to port 0 pins, the pins can be used as high-impedance inputs. Port 0 can also be configured to be the multiplexed low-order address/data bus during accesses to external program and data memory. In this mode, P0 has internal pull-ups. Port 0 also receives the code bytes during Flash programming and outputs the code bytes during program verification. External pull-ups are required during program verification.Port 1 is an 8-bit bi-directional I/O port with internal pull-ups. The Port 1 output buffers can sink/source four TTL inputs. When 1s are written to Port 1 pins, they are pulled high by the internal pull-ups and can be used as inputs. As inputs, Port 1 pins that are externally being pulled low will source current (I IL) because of the internalpull-ups.Port 1 also receives the low-order address bytes during Flash programming and verification.Port 2 is an 8-bit bi-directional I/O port with internal pull-ups. The Port 2 output buffers can sink/source four TTL inputs. When 1s are written to Port 2 pins, they are pulled high by the internal pull-ups and can be used as inputs. As inputs, Port 2 pins that are externally being pulled low will source current (I IL) because of the internal pull-ups.Port 2 emits the high-order address byte during fetches from external program memory and during accesses to external data memory that use 16-bit addresses (MOVX @ DPTR). In this application, Port 2 uses strong internal pull-ups when emitting 1s. During accesses to external data memory that use 8-bit addresses (MOVX @ RI), Port 2 emits the contents of the P2 Special Function Register. Port 2 also receives the high-order address bits and some control signals during Flash programming and verification.Port 3 is an 8-bit bi-directional I/O port with internal pull-ups. The Port 3 output buffers can sink/source four TTL inputs. When 1s are written to Port 3 pins, they are pulled high by the internal pull-ups and can be used as inputs. As inputs, Port 3 pins that are externally being pulled low will source current (I IL) because of the pull-ups. Port 3 receives some control signals for Flash programming and verification. Port 3 also serves the functions of various special features of the AT89S51, as shown in the following table.3 Memory OrganizationMCS-51 devices have a separate address space for Program and Data Memory. Up to 64K bytes each of external Program and Data Memory can be addressed.3.1 Program MemoryIf the EA pin is connected to GND, all program fetches are directed to external memory. On the AT89S51, if EA is connected to V CC, program fetches to addresses 0000H through FFFH are directed to internal memory and fetches to addresses 1000H through FFFFH are directed to external memory.3.2 Data MemoryThe AT89S51 implements 128 bytes of on-chip RAM. The 128 bytes are accessible via direct and indirect addressing modes. Stack operations are examples of indirect addressing, so the 128 bytes of data RAM are available as stack space.4Watchdog Timer (One-time Enabled with Reset-out)The WDT is intended as a recovery method in situations where the CPU may be subjected to software upsets. The WDT consists of a 14-bit counter and the Watchdog Timer Reset (WDTRST) SFR. The WDT is defaulted to disable from exiting reset. To enable the WDT, a user must write 01EH and 0E1H in sequence to the WDTRST register (SFR location 0A6H). When the WDT is enabled, it will increment every machine cycle while the oscillator is running. The WDT timeout period is dependent on the external clock frequency. There is no way to disable the WDT except through reset (either hardware reset or WDT overflow reset). When WDT overflows, it will drive an output RESET HIGH pulse at the RST pin.4.1 Using the WDTTo enable the WDT, a user must write 01EH and 0E1H in sequence to the WDTRST register (SFR location 0A6H). When the WDT is enabled, the user needs to service it by writing 01EH and 0E1H to WDTRST to avoid a WDT overflow. The 14-bit counter overflows when it reaches 16383 (3FFFH), and this will reset the device. When the WDT is enabled, it will increment every machine cycle while the oscillator is running. This means the user must reset the WDT at least every 16383 machine cycles. To reset the WDT the user must write 01EH and 0E1H to WDTRST. WDTRST is a write-only register. The WDT counter cannot be read or written. WhenWDT overflows, it will generate an output RESET pulse at the RST pin. The RESET pulse duration is 98xTOSC, where TOSC = 1/FOSC. To make the best use of the WDT, it should be serviced in those sections of code that will periodically be executed within the time required to prevent a WDT reset.4.2 WDT DURING Power-down and IdleIn Power-down mode the oscillator stops, which means the WDT also stops. While in Power-down mode, the user does not need to service the WDT. There are two methods of exiting Power-down mode: by a hardware reset or via a level-activated external interrupt, which is enabled prior to entering Power-down mode. When Power-down is exited with hardware reset, servicing the WDT should occur as it normally does whenever the AT89S51 is reset. Exiting Power-down with an interrupt is significantly different. The interrupt is held low long enough for the oscillator to stabilize. When the interrupt is brought high, the interrupt is serviced. To prevent the WDT from resetting the device while the interrupt pin is held low, the WDT is not started until the interrupt is pulled high. It is suggested that the WDT be reset during the interrupt service for the interrupt used to exit Power-down mode. To ensure that the WDT does not overflow within a few states of exiting Power-down, it is best to reset the WDT just before entering Power-down mode. Before going into the IDLE mode, the WDIDLE bit in SFR AUXR is used to determine whether the WDT continues to count if enabled. The WDT keeps counting during IDLE (WDIDLE bit = 0) as the default state. To prevent the WDT from resetting the AT89S51 while in IDLE mode, the user should always set up a timer that will periodically exit IDLE, service the WDT, and reenter IDLE mode.With WDIDLE bit enabled, the WDT will stop to count in IDLE mode and resumes the count upon exit from IDLE.AT89S51概述1 一般概述该AT89S51是一个低功耗,高性能CMOS 8位微控制器,可在4K字节的系统内编程的闪存存储器。
超特克HV7350DB1型号高速高压超声波发射器RTZ发射器说明书
Supertex inc.HV7350DB1General DescriptionThe HV7350 is a monolithic eight channel, high-speed, high voltage, ultrasound transmitter RTZ pulser. This integrated, high performance circuit is in a single, 8x8x0.9 mm, 56-lead QFN package.The HV7350 can deliver a guaranteed ±1.0A source and sink current to a capacitive transducer with +/-60V peak to peak voltage. It is designed for portable medical ultrasound imaging and ultrasound NDT applications. It can also be used as a high voltage driver for other piezoelectric or capacitive MEMS transducers, or for test systems as a signal source or pulse signal generators.The HV7350’s circuitry consists of controller logic circuits, level translators, gate driving buffers and a high current and high voltage MOSFET output stage. The output stages of each channel are designed to provide peak output currents typically over ±1.0A for pulsing, with up to ±60V swings in RTZ mode. The upper limit frequency of the pulser waveform is depending on the load capacitance. This demoboard datasheet describes how to use the HV7350DB1 to generate the basic high voltage pulse waveform as an ultrasound transmitting pulser.The HV7350 circuit uses DC coupling from a 3.3V logic input to output Tx1~8 internally, therefore the chip needs three sets of voltage supply rails: VLL+3.3V, VDD+5.0V and VPP/VNN±10 to ±60V. The VPPand VNNrail voltages can be changed rather quickly, compared to the capacitor gate-coupled driving pulsers. This direct coupling topology of the gate drivers not only saves two high voltage capacitors per channel, but also makes the PCB layout easier.The HV7350DB1 output waveforms can be displayed using an oscilloscope by connecting the scope probe directly to the test points TX1~8 and GND. The soldering jumper can select whether or not to connect the on-board dummy-load, a 330pF capacitor paralleling with a 2.5kΩ resistor. The test points can be used to connect the user’s transducer to easily evaluate the pulser.Block DiagramEight Channel ±60V, ±1.0A, Ultrasound Pulser DemoboardThe PCB Layout TechniquesThe large thermal pad at the bottom of the HV7350 package is internally connected to the IC’s substrate (VSUB). This thermal pad should be connected to 0V or GND externally on the PCB. Designers need to pay attention to the connecting traces on the outputs TX1~8, specifically the high voltage and high speed traces. In particular, controlled impedance to the ground plane and more trace spacing needs to be applied in this situation.High speed PCB trace design practices that are compatible with about 50 to 100MHz operating speeds are used for the demoboard PCB layout. The internal circuitry of the HV7350 can operate at quite a high frequency, with the primary speed limitation being load capacitance. Because of this high speed and the high transient currents that result when driving ca-pacitive loads, the supply voltage bypass capacitors and the driver to the FET’s gate-coupling capacitors should be as close to the pins as possible. The GND pin should have low inductance feed-through via connections that are connected directly to a solid ground plane. The VDD, VPP, VNN, CPF, CNF, CNEG and CPOS voltage supply and/or bypass capaci-tor pins can draw fast transient currents of up to ±2.0A, so they should be provided with a low impedance bypass capaci-tor at the chip’s pins. A ceramic capacitor of 1.0 to 2.0µF may be used. Only the VPP and VNN pins to GND capacitors need to be the high-voltage type. The CPF to VPP and CNF to VNN capacitors maybe low voltage. Minimize the trace length to the ground plane, and insert a ferrite bead in the power supply lead to the capacitor to prevent resonance in the power sup-ply lines. For applications that are sensitive to jitter and noise and using multiple HV7350 ICs, insert another ferrite bead between each chip’s supply lines.Pay particular attention to minimizing trace lengths and us-ing sufficient trace width to reduce inductance. Surface mount components are highly recommended. Since the output im-pedance of the HV7350’s high voltage power stages is very low, in some cases it may be desirable to add a small value resistor in series with the output TX1~8 to obtain better wave-form integrity at the load terminals after long cables. This will, of course, reduce the output voltage slew rate at the terminals of a capacitive load.Be aware of the parasitic coupling from the outputs to the in-put signal terminals of the HV7350. This feedback may cause oscillations or spurious waveform shapes on the edges of the signal transitions. Since the input operates with signals down to 3.3V, even small coupling voltages may cause problems. Use of a solid ground plane and good power and signal layout practices will prevent this problem. Also ensure that the cir-culating ground return current from a capacitive load cannot react with common inductance to create noise voltages in the input logic circuitry.Testing the Integrated PulserThe HV7350 pulser demoboard should be powered up with multiple lab DC power supplies with current limiting functions. The on-board dummy load 330pF//2.5kΩ should be connect-ed to the high voltage pulser output through the solder jumper when using an oscilloscope’s high impedance probe to meet the typical loading condition. T o evaluate different loading conditions, one may change the values of RC within the cur-rent and power limit of the device.In order to drive the user’s piezo transducers with a cable, one should match the output load impendence properly to avoid cable and transducer reflections. A 70 to 75Ω coaxial cable is recommended. The coaxial cable end should be soldered to the TX1~8 and GND directly with very short leads. If a user’s load is being used, the on-board dummy load should be dis-connected by cutting the small shorting copper trace in be-tween the 0Ω resistors R2, R9, R12, R18, R23, R53, R54 or R55 pads. They are shorted by factory default.All the on-board test points are designed to work with the high impedance probe of the oscilloscope. Some probes may have limited input voltage. When using the probe on these high voltage test-points, make sure that VPP/VNNvoltages do not exceed the probe limit. Using the high impendence oscil-loscope probe for the on-board test points, it is important to have short ground leads to the circuit board ground plane.If both of the inputs PIN and NIN are high, then the channel out TX will be in Hi-Z.HV7350DB1 SchematicN o t e : J 4-4, 5, 6 & 7- p i n s f o r t e s t o n l yE k k kHV7350DB1 PCB and Board LayoutActual Board Size: 72.4mm x 68.4mmFigure 1. VPP /VNN= +/-60V 5MHz with 330pF//2.5kΩ load and 8-Channel pulsing Typical WaveformsFigure 2. VPP /VNN= +/-60V 5MHz with 330pF//2.5kΩ load and 8-Channel pulsingTypical Waveforms (cont.)Figure 3. V PP /V NN = +/-60V 10MHz with 330pF//2.5kΩ load and 8-Channel pulsingFigure. 4. Rise and Fall time at V PP /V NN = +/-60V with 330pF//2.5kΩ loadFigure 5. VPP /VNN= +/-60V 5MHz with 330pF//2.5kΩ load and 8-Channel pulsingFigure 6. Damping fall time at VPP /VNN= +/-60V with 330pF//2.5kΩ loadFigure 7. Damping rise time at V PP /V NN = +/-60V with 330pF//2.5kΩ loadFigure 8. V PP /V NN = +/-60V 5MHz with 330pF//2.5kΩ load 4 of the 8-Channel waveforms shownFigure 9. HD2 at VPP /VNN= +/-50V 2.5MHz with 330pF//2.5kΩ loadSupertex inc. does not recommend the use of its products in life support applications, and will not knowingly sell them for use in such applications unless it receives an adequate “product liability indemnification insurance agreement.” Supertex inc. does not assume responsibility for use of devices described, and limits its liability to the replacement of the devices determined defective due to workmanship. No responsibility is assumed for possible omissions and inaccuracies. Circuitry and specifications are subject to change without notice. For the latest product specifications refer to the Supertex inc. (website: http//)©2014 Supertex inc.All rights reserved. Unauthorized use or reproduction is prohibited.Supertex inc.。
AMS1117
conditions on both the regulator and power source circuitry.
The AMS1117 devices are pin compatible with other three-terminal SCSI regulators and are offered in the low profile surface
Advanced Monolithic Systems
AMS1117
800mA LOW DROPOUT VOLTAGE REGULATOR
800mA低压差稳压器
FEATURES 特点
APPLICATIONS应用
• Three Terminal Adjustable or Fixed Voltages*
Load Regulation (Notes 2, 3)
AMS1117-2.85 AMS1117-3.3 AMS1117-5.0
VIN = 5V, 0 ≤ IOUT ≤ 800mA VIN = 5V, 0 ≤ IOUT ≤ 800mA VIN = 8V, 0 ≤ IOUT ≤ 800mA
热调节
Dropout Voltage电压差 AMS1117-1.5/-1.8/-2.5/-
0 to 125° C
AMS1117CD-2.85 AMS1117-2.85
0 to 125° C
AMS1117CD-3.3
AMS1117-3.3
0 to 125° C
AMS1117CD-5.0
AMS1117-5.0
0 to 125° C
*For additional available fixed voltages contact factory.
Micrel PL585-28 19MHz-250MHz低相位噪声VCXO说明书
19MHz to 250MHz Low Phase-Noise VCXOFEATURES∙ < 0.6ps RMS phase jitter (12kHz to 20MHz)at 155.52MHz∙ 30ps max peak to peak period jitter ∙ Ultra Low-Power Consumption∙ < 90mA @155MHz PECL output ∙ <10μA at Power Down (PDB) Mode ∙ Input Frequency:∙ Fundamental Crystal: 19MHz to 40MHz ∙ Output Frequency:∙ 19MHz to 250MHz output. ∙ Output type: LVPECL∙ High Linearity VCXO: <10% linearity ∙ Pullability: ±150 ppm∙ Programmable OE input polarity selection. ∙ Power Supply: 3.3V, ±10% ∙ Operating Temperature Ranges:∙ Commercial: 0︒C to 70︒C ∙ Industrial: -40︒C to 85︒C ∙ Available in Die or WaferDESCRIPTIONThe PL585-28 is a Dual LC core monolithic IC clock, capable of maintaining sub-picoseconds RMS phase jitter, while covering a wide frequency output range up to 250MHz, without the use of external components. The high performance and high frequency output is achieved using a low costfundamental crystal of between 19MHz and 40 MHz. The PL585-28 is designed to address the demanding requirements of high performance applications such as Fiber Channel, serial ATA, Ethernet, SAN, SONET/SDH, etc.PIN CONFIGURATIONBLOCK DIAGRAMXIN/REF XOUTOE/PDB(0,0)(1650,2250)65 milX O U TX I N , F I NVCON/SCLKPL585GND_BUFGND_DIGGND_ANA QVDD_BUF QB VDD_ANA VDD_DIG VDD_BUFDNCOE/PDB/SDIO19MHz to 250MHz Low Phase-Noise VCXODIE SPECIFICATIONS1.65mm2.25m mPAD ASSIGNMENT AND DESCRIPTION (The X/Y coordinates indicate pad centers)19MHz to 250MHz Low Phase-Noise VCXOFUNCTIONAL DESCRIPTIONPL585 family of products is an advanced, programmable LCVCO clock IC that is designed to meet the most stringent performance specifications for phase noise, jitter, and power consumption. There are two main types of VCOs, a) Ring Oscillator, b) LC Tank oscillator. An LCVCO is made up of an LC tank oscillator. Although a Ring Oscillator has very good performance, and has a good tuning range, its phase noise and jitter performance, in particular at higher frequencies, degrades.On the other hand, an LCVCO has an outstanding phase noise and jitter performance, even at higher frequencies. PL585 family of products takes advantage of this state of the art technology, and incorporates the LC tank on-chip, for optimal performance.PL585 family of products exhibit very low phase noise/phase jitter and peak to peak jitter, wide tuning range, and very low-power. All members of the PL585 family accept a low-cost fundamental crystal input of 19MHz to 40MHz, and its flexible core is capable of producing any output frequency between 19MHz to 800MHz. The PL585-28 specifically is limited to 250MHz. See the PL585-88 for operation up to 800MHz. PLL ProgrammingThe PLL in the PL585 family is fully programmable. The PLL is equipped with a Pre-Scalar to divide down the VCO frequency, and a 5-bit VCO frequency feedback loop divider (M-Counter). The output of the PLL is transferred to a 4-bit post VCO divider (P-Counter), to achieve the desired output frequency. OE (Output Enable)The OE pin in PL585 family, through programming, can be configured to support OE pin activation with a logic ‘1’ or logic ’0’, to provide you with the desired enable polarity.The OE pin incorporates a 60KΩresistor to either pull-up or pull-down to the default state, when the OE pad is left open.19 MHz to 250MHz Low Phase-Noise VCXO ELECTRICAL SPECIFICATIONS1. ABSOLUTE MAXIMUM RATINGSExposure of the device under conditions beyond the limits specified by Maximum Ratings for extended periods may cause permane nt damage to the device and affect product reliability. These conditio ns represent a stress rating only, and functional operations of the device at these or any other conditions above the operational limits noted in this specification is not implied.*Operating temperature is guaranteed by design. Parts are tested to comm ercial grade only.2. GENERAL ELECTRICAL SPECIFICATIONS19 MHz to 250MHz Low Phase-Noise VCXO 3. VOLTAGE CONTROLLED CRYSTAL OSCILLATOR4. CRYSTAL SPECIFICATIONS5. JITTER SPECIFICATIONS6. PHASE NOISE SPECIFICATIONSNote: Phase Noise measured at VCON = 1.65V19MHz to 250MHz Low Phase-Noise VCXO 7. LVPECL OUTPUTS (Q, QB)ORDERING INFORMATIONMicrel Inc., reserves the right to make changes in its products or specifications, or both at any time without notice. The in formation furnished by Micrel is believed to be accurate and reliable. However, Micrel makes no guarantee or warranty concerning the accuracy of said information a nd shall not be responsible for any loss or damage of whatever nature resulting from the use of, or reliance upon this product.LIFE SUPPORT POLICY: Micrel’s products are not authorized for use as critical components in life support devices or systems without the express written approval of the President of Micrel Inc.。
MP2359直流降压 转换器
MP23591.2A, 24V, 1.4MHzStep-Down Converter in a TSOT23-6The Future of Analog IC TechnologyTMTMDESCRIPTIONThe MP2359 is a monolithic step-down switch mode converter with a built-in power MOSFET. It achieves 1.2A peak output current over a wide input supply range with excellent load and line regulation. Current mode operation provides fast transient response and eases loop stabilization. Fault condition protection includes cycle-by-cycle current limiting and thermal shutdown.The MP2359 requires a minimum number of readily available standard external components. The MP2359 is available in TSOT23-6 and SOT23-6 packages.EVALUATION BOARD REFERENCEBoard Number Dimensions EV2359DJ-00B2.1”X x 1.9”Y x 0.4”ZFEATURES• 1.2A Peak Output Current• 0.35Ω Internal Power MOSFET Switch• Stable with Low ESR Output CeramicCapacitors• Up to 92% Efficiency • 0.1µA Shutdown Mode • Fixed 1.4MHz Frequency • Thermal Shutdown• Cycle-by-Cycle Over Current Protection • Wide 4.5V to 24V Operating Input Range • Output Adjustable from 0.81V to 15V• Available in TSOT23-6 and SOT23-6PackagesAPPLICATIONS• Distributed Power Systems • Battery Charger• Pre-Regulator for Linear Regulators • WLED Drivers“MPS” and “The Future of Analog IC Technology” are Trademarks of Monolithic Power Systems, Inc.TYPICAL APPLICATIONEfficiency vs Load Currents1009080706050403020100LOAD CURRENT (A)E F F I C I E N C Y (%)0.010.1110PACKAGE REFERENCE* For Tape & Reel, add suffix –Z (eg. MP2359DJ–Z) For RoHS compliant packaging, add suffix –LF (eg.MP2359DJ–LF–Z) ABSOLUTE MAXIMUM RATINGS (1) Supply Voltage V IN (26V)V SW.......................................–0.3V to V IN + 0.3V V BS .......................................................V SW + 6V All Other Pins.................................–0.3V to +6V Junction Temperature...............................150°C Lead Temperature....................................260°C Storage Temperature..............–65°C to +150°C Recommended Operating Conditions (2) Supply Voltage V IN...........................4.5V to 24V Output Voltage V OUT......................0.81V to 15V Ambient Temperature................–40°C to +85°C Thermal Resistance (3)θJA θJCTSOT23-6..............................220....110..°C/W SOT23-6................................220....110..°C/W Notes:1) Exceeding these ratings may damage the device.2) The device function is not guaranteed outside of therecommended operating conditions.3) Measured on approximately 1” square of 1 oz copper.ELECTRICAL CHARACTERISTICSV IN = 12V, T A = +25°C, unless otherwise noted.Parameters SymbolConditionMinTypMaxUnitsFeedback Voltage V FB 4.5V ≤ V IN≤ 24V 0.790 0.810 0.830 VFeedback Current I FB V FB = 0.8V 0.1 µASwitch-On Resistance (4)R DS(ON)0.35 ΩSwitch Leakage V EN = 0V, V SW = 0V 10 µACurrent Limit (4) 1.8A Oscillator Frequency f SW V FB = 0.6V 1.2 1.4 1.7 MHzFold-back Frequency V FB = 0V 460 KHzMaximum Duty Cycle V FB = 0.6V 87 %Minimum On-Time (4)t ON100 nsUnder Voltage Lockout Threshold Rising 2.5 2.8 3.1 VUnder Voltage Lockout Threshold Hysteresis150 mVEN Input Low Voltage 0.4 VEN Input High Voltage 1.2 VV EN = 2V 2.1EN Input CurrentV EN = 0V 0.1µASupply Current (Shutdown) I S V EN= 0V 0.1 1.0 µASupply Current (Quiescent) I Q V EN= 2V, V FB = 1V 0.8 1.0 mAThermal Shutdown (4)150°C Note:4) Guaranteed by design.PIN FUNCTIONSPin # Name Description1 BST Bootstrap. A capacitor is connected between SW and BS pins to form a floating supply acrossthe power switch driver. This capacitor is needed to drive the power switch’s gate above thesupply voltage.2 GND Ground. This pin is the voltage reference for the regulated output voltage. For this reason caremust be taken in its layout. This node should be placed outside of the D1 to C1 ground path toprevent switching current spikes from inducing voltage noise into the part.3 FBFeedback. An external resistor divider from the output to GND, tapped to the FB pin sets the output voltage. To prevent current limit run away during a short circuit fault condition, thefrequency foldback comparator lowers the oscillator frequency when the FB voltage is below 250mV.4 EN On/Off Control Input. Pull EN above 1.2V to turn the device on.5 INSupply Voltage. The MP2359 operates from a +4.5V to +24V unregulated input. C1 is neededto prevent large voltage spikes from appearing at the input.6 SW Switch Output.TYPICAL PERFORMANCE CHARACTERISTICSV IN = 12V, V OUT = 3.3V, L = 4.7µH, C1 = 10µF, C2 = 22µF, T A= +25ºC, unless otherwise noted.Efficiency vs Load CurrentLOAD CURRENT (A)1009080706050403020100E F F I C I E N C Y (%)0.010.1110LOAD CURRENT ( A)Efficiency vsLoad CurrentFeedback Voltage vs Die TemperatureF E E D B A C K V O L T AG E (V )0.8200.8180.8160.8140.8120.8100.8080.8060.8040.8020.800DIE TEMPERATURE (O C)-50-250257510012550150Switching Frequency vs Die TemperatureS W I T C H I N G F R E Q U E N C Y (M H z )1.501.481.461.441.421.401.381.361.341.321.30DIE TEMPERATURE (O C)-50-2502575100125501501TYPICAL PERFORMANCE CHARACTERISTICS(continued)V IN = 12V, V OUT = 3.3V, L = 4.7µH, C1 = 10µF, C2 = 22µF, T A = +25ºC, unless otherwise noted.V SW 10V/div.V EN 5V/div.V OUT 1V/div.I L1A/div.Start-up through EnableI OUT = 1A Resistive LoadV OUT 1V/div.V SW 10V/div.V EN 5V/div.Start-up through EnableNo LoadVOUT 2V/div.V SW 10V/div.V EN 5V/div.I L1A/div.Shut-down through EnableNo LoadShut-down through EnableI OUT = 1A Resistive LoadI L500mA/div.V OUT 2V/div.V SW10V/div.V EN 5V/div.I L 1A/div.V OUT 1V/div.I L 1A/div.Short Circuit Entry Short Circuit Recovery V OUT 1V/div.I L 1A/div.400ns/div.Steady State TestI OUT = 0.5AV OUTAC Coupled 50mV/div.I L 1A/div.I LOAD 1A/div.V OUT 20mV/div.V SW 10V/div.I L500mA/div.Current Limit vs Duty CycleC U R R E N T L I M I T (A )3.02.52.01.51.00.50DUTY CYCLE (%)20406080100OPERATIONThe MP2359 is a current mode buck regulator. That is, the EA output voltage is proportional to the peak inductor current.At the beginning of a cycle, M1 is off. The EA output voltage is higher than the current sense amplifier output, and the current comparator’s output is low. The rising edge of the 1.4MHz CLK signal sets the RS Flip-Flop. Its output turns on M1 thus connecting the SW pin and inductor to the input supply.The increasing inductor current is sensed and amplified by the Current Sense Amplifier. Ramp compensation is summed to the Current Sense Amplifier output and compared to the Error Amplifier output by the PWM Comparator. When the sum of the Current Sense Amplifier output and the Slope Compensation signal exceeds the EA output voltage, the RS Flip-Flop is reset and M1 is turned off. The external Schottky rectifier diode (D1) conducts the inductor current. If the sum of the Current Sense Amplifier output and the Slope Compensation signal does not exceed the EA output for a whole cycle, then the falling edge of the CLK resets the Flip-Flop. The output of the Error Amplifier integrates the voltage difference between the feedback and the 0.81V bandgap reference. The polarity is such that a FB pin voltage lower than 0.81V increases the EA output voltage. Since the EA output voltage is proportional to the peak inductor current, an increase in its voltage also increases current delivered to the output.IN ENFB GNDSWBST Figure 1—Functional Block DiagramAPPLICATION INFORMATIONSetting Output VoltageThe external resistor divider is used to set the output voltage (see the schematic on front page). Table 1 shows a list of resistor selection for common output voltages. The feedback resistor R1 also sets the feedback loop bandwidth with the internal compensation capacitor (see Figure 1). R2 can be determined by:1V81.0V 1R 2R OUT−=Table 1—Resistor Selection for CommonOutput VoltagesV OUT (V) R1 (k Ω) R2 (k Ω) 1.8 80.6 (1%) 64.9 (1%) 2.5 49.9 (1%) 23.7 (1%) 3.3 49.9 (1%) 16.2 (1%) 549.9 (1%)9.53 (1%)Selecting the InductorA 1µH to 10µH inductor with a DC current rating of at least 25% percent higher than the maximum load current is recommended for most applications. For highest efficiency, the inductor’s DC resistance should be less than 200m Ω. Refer to Table 2 for suggested surface mount inductors. For most designs, the required inductance value can be derived from the following equation.SWL IN OUT IN OUT f I V )V V (V L ×∆×−×=Where ∆I L is the inductor ripple current.Choose the inductor ripple current to be 30% of the maximum load current. The maximum inductor peak current is calculated from:2I I I LLOAD )MAX (L ∆+= Under light load conditions below 100mA, a larger inductance is recommended for improved efficiency. See Table 2 for suggested inductors. Also note that the maximum recommended load current is 1A if the duty cycle exceeds 35%.Selecting the Input CapacitorThe input capacitor reduces the surge current drawn from the input supply and the switching noise from the device. The input capacitor impedance at the switching frequency should be less than the input source impedance to prevent high frequency switching current from passing through the input. Ceramic capacitors with X5R or X7R dielectrics are highly recommended because of their low ESR and small temperature coefficients. For most applications, a 4.7µF capacitor is sufficient.Selecting the Output CapacitorThe output capacitor keeps the output voltage ripple small and ensures feedback loop stability. The output capacitor impedance should be low at the switching frequency. Ceramic capacitors with X5R or X7R dielectrics are recommended for their low ESR characteristics. For most applications, a 22µF ceramic capacitor will be sufficient.PC Board LayoutThe high current paths (GND, IN and SW) should be placed very close to the device with short, direct and wide traces. The input capacitor needs to be as close as possible to the IN and GND pins. The external feedback resistors should be placed next to the FB pin. Keep the switch node traces short and away from the feedback network. External Bootstrap DiodeIt is recommended that an external bootstrap diode be added when the input voltage is no greater than 5V or the 5V rail is available in the system. This helps improve the efficiency of the regulator. The bootstrap diode can be a low cost one such as IN4148 or BAT54.10nFIN (4.5V to 5V)Figure 2—External Bootstrap Diode This diode is also recommended for high duty cycle operation (whenINOUTV V >65%) applications.Table 2—Suggested Surface Mount InductorsManufacturer Part Number Inductance(µH) Max DCR(Ω)CurrentRating (A)DimensionsL x W x H (mm3)Toko A921CY-4R7M 4.7 0.027 1.66 6 x 6.3 x 3 Sumida CDRH4D28C/LD 4.7 0.036 1.5 5.1 x 5.1 x 3 Wurth Electronics 7440530047 4.7 0.038 2.0 5.8 x 5.8 x 2.8 TYPICAL APPLICATION CIRCUITSV OUT3.3VFigure 3—1.4MHz, 3.3V Output at 1A Step-Down ConverterFigure 4—White LED Driver ApplicationPACKAGE INFORMATIONTSOT23-66) DRAWING IS NOT TO SCALE.DETAIL “A”7) PIN 1 IS LOWER LEFT PIN WHEN READING TOP MARK FROMLEFT TO RIGHT, (SEE EXAMPLE TOP MARK)NOTICE: The information in this document is subject to change without notice. Please contact MPS for current specifications. Users should warrant and guarantee that third party Intellectual Property rights are not infringed upon when integrating MPS products into any application. MPS will not assume any legal responsibility for any said applications.SOT23-6DETAIL “A”6) DRAWING IS NOT TO SCALE.7) PIN 1 IS LOWER LEFT PIN WHEN READING TOP MARK FROM LEFT TO RIGHT, (SEE EXAMPLE TOP MARK)。
马兰士sr5200数字环绕声接收器用户手册说明书
The Marantz SR5200 Digital Surround Receiver is a high-performance,high-power home theater receiver that offers outstanding home theater surround sound quality and operational flexibility. It features Dolby Digital ® 6.1 channel decoding, Dolby Pro Logic ®II and DTS ® 6.1compatibility. The SR5200 features an equal power amplifier section, with high current discrete output on all channels. Highly accurate 96kHz/24-bit audio D/A converters handle the analog to digital conversion, resulting in more faithful sound quality compared to the original source. It is built to Marantz standards with refinements such as a metal alloy faceplate, internal bracing and hand-selected customized components. Experience your movies and music in dynamic Marantz style. The SR5200 comes complete with an easy-to-use pre-programmed remote control, for totally integrated home entertainment.SR5200Hear PerfectionPowered to ExciteMarantz America, Inc. 1100 Maplewood Dr., Itasca, IL 60143630-741-0300Fax: All specifications, dimensions and weights are subject to change without notice. ©2001 Marantz America, Inc. 07/01Power Your Home TheaterThe SR5200 is capable of generating 85 watts of discrete power into all 6 channels. The large power supply incorporates a high current power transformer, with ample capabilities to drive low impedance loudspeakers. The SR5200 incorporates an extensive array of digital and analog audio and video connections to accommodate a wide variety of multiple program sources.Other versatile and future-ready custom installment features include 7-channel direct inputs and pre-amp outputs, a multi-language on-screen display and front panel A/V inputs.Music reproduction is enhanced through a highly efficient source direct switch, which bypasses the entire A/V section in audio mode. In direct mode, interference and disturbance by radiated electrical or magnetic fields are minimized, ensuring the shortest signal path for the highest degree of clarity and detail.Dolby Pro-Logic ®II (Movie & Music)Designed to generate an exciting multi-channel soundstage for music and movies from a two channel source, Pro-Logic ®is upgraded. Amongst the many improvements,the rear channel is full bandwidth, the steering is faster and more accurate, less cross talk occurs and bass management is incorporated. Moreover, Dolby Pro Logic ®II is backward compatible.Convenience & FunctionalityThe SR5200 presents multiple surround modes like hall, stadium, virtual, matrix and movie and 6 - channel stereo. The extensive feature list, such as auto preset tuning (program up to 30 stations), manual station naming, display dimmer, delay function and clock/timer characterize the functionality of the SR5200. An easy to use, pre-programmed remote control allows complete access to all of the operating functions and can be used for system operation as well. The Marantz unique D-BUS connection allows convenient linkage to other Marantz components.SR5200 DIGITAL SURROUND RECEIVERFeatures• Dolby Digital ®(AC-3) 5.1/6.1, DTS 5.1/6.1 • On Screen Display Compatible, Dolby Pro Logic ®,• Delay Time Pro Logic ®II (Movie, Music)• 30 Presets• Preset Modes: Hall, Stadium, Virtual, Matrix, Movie • Manual Station Naming • All Discrete Amplifier Stages • Display Dimmer • 96kHz/24-bit D/A Converters • Timer/Clock • 6-Channel Stereo Mode • Headphone Jack • Source Direct• Rec Out (Source)In/OutputsVideoCompositeIn (VCR1, DSS/VDR2, TV, DVD, Front AUX)5Out (Monitor, VCR1, DSS/VCR2)3S-VideoIn (VCR1, DSS/VCR2, TV, DVD, Front AUX)5Out (Monitor, VCR1, DSS/VCR2)3Preamplifier Outputs7(Channel)Front (L/R), Rear (L/R), Center,Surround Back, Sub-Woofer Direct Inputs7(Channel)SpecificationsAmplifierPower Output (8 Ohm, F, C, S)85W/85W/85W Signal-To-Noise 105 dB Frequency Range20–20kHz Total Harmonic Distortion (THD)0.05%AM TunerFrequency Range AM: 520-1710kHz Usable Sensitivity Loop 400 uV/mDistortion400Hz, 30% Mod. 0.5%Alternate Channel Selectivity +/- 18kHz 60 dB Signal-To-Noise (MW/LW) 50 dBFM TunerFrequency RangeFM: 87.5-108.0MHz Sensitivity (Mono/Stereo)IHF 1.8 uV/16.4 dBf Alternate Channel Selectivity +/- 400kHz 60 dBSignal-To-Noise (Mono/Stereo) 76/72dB Image Rejection 98MHz 70 dbTune Output Level1kHz, ±75kHz Dev 800mV GeneralColorBlack Front Panel MetalRemote ControlRC5200SR (Pre-Programmed)Dimensions (W x H x D)175/16" x 61/2" x 1511/16"440mm x 164mm x 400mm Weight28 lbs.AudioAnalog In8(CD, Tape, CDR/MD, VCR1,DSS/VDR2, TV, DVD, AUX)Analog Out4(Tape, CDR/MD, VCR1,DSS/VDR2) Digital In/Out Optical In/Out 2/1Coaxial In/Out2/1OtherD-BUS In/Out 1Heavy Duty Speaker Terminals Switched/Unswitched AC Outlet 1/1FM Antenna Connector 1AM Antenna Terminal (Ground)1。
单片机外文资料
AT89C51的介绍描述AT89C51是一个低电压,高性能CMOS8位单片机带有4K字节的可反复擦写的程序存储器(PENROM)。
和128字节的存取数据存储器(RAM),这种器件采用ATMEL公司的高密度、不容易丢失存储技术生产,并且能够与MCS-51系列的单片机兼容。
片内含有8位中央处理器和闪烁存储单元,有较强的功能的AT89C51单片机能够被应用到控制领域中。
功能特性AT89C51提供以下的功能标准:4K字节闪烁存储器,128字节随机存取数据存储器,32个I/O口,2个16位定时/计数器,1个5向量两级中断结构,1个串行通信口,片内震荡器和时钟电路。
另外,AT89C51还可以进行0HZ的静态逻辑操作,并支持两种软件的节电模式。
闲散方式停止中央处理器的工作,能够允许随机存取数据存储器、定时/计数器、串行通信口及中断系统继续工作。
掉电方式保存随机存取数据存储器中的内容,但震荡器停止工作并禁止其它所有部件的工作直到下一个复位。
引脚描述VCC:电源电压GND:地P0口:P0口是一组8位漏极开路双向I/O口,即地址/数据总线复用口。
作为输出口时,每一个管脚都能够驱动8个TTL电路。
当“1”被写入P0口时,每个管脚都能够作为高阻抗输入端。
P0口还能够在访问外部数据存储器或程序存储器时,转换地址和数据总线复用,并在这时激活内部的上拉电阻。
P0口在闪烁编程时,P0口接收指令,在程序校验时,输出指令,需要接电阻。
P1口:- 1 -P1口一个带内部上拉电阻的8位双向I/O口,P1的输出缓冲级可驱动4个TTL 电路。
对端口写“1”,通过内部的电阻把端口拉到高电平,此时可作为输入口。
因为内部有电阻,某个引脚被外部信号拉低时输出一个电流。
闪烁编程时和程序校验时,P1口接收低8位地址。
P2口:P2口是一个内部带有上拉电阻的8位双向I/O口,P2的输出缓冲级可驱动4个TTL电路。
对端口写“1”,通过内部的电阻把端口拉到高电平,此时,可作为输入口。
Monolithic Power MPQ8904 低电流低电压跌落线性电源说明书
MPQ8904DD-AEC1-LF-PDESCRIPTIONThe MPQ8904 is a low-current, low-dropout, linear regulator that operates on a single 2.5V-to-6.5V input supply. An external resistor controls the output voltage. The MPQ8904 can supply up to 500mA of load current. The enable pin (EN) allows the part to enter a low-current shutdown mode (EN=0). The MPQ8904 features thermal overload and current limit protection. It is available in an 8-pin QFN (2×3mm) package. FEATURES∙Power-Good Open Collector Output∙Guaranteed Industrial/Automotive Temp.Range Limits∙Operates from a 2.5V-to-6.5V Input∙Low 300mV Dropout at 500mA Output∙Stable with Very Small Ceramic Capacitors ∙ 2.5% Feedback Reference∙Adjustable Output Voltage from 0.5V to 5V ∙Better than 0.001%/mA Load Regulation∙Stable with Low-ESR Output Capacitor∙Low 140μA Ground Current∙Internal Thermal Protection∙Current Limit Protection∙7µA Typical Quiescent Current at Shutdown ∙Available in AEC-Q100 Qualified Grade 1 APPLICATIONS∙Low-Current Regulators∙Battery-Powered Systems∙Mobile Devices, such as Cell Phones and GPS NavigatorsAll MPS parts are lead-free, halogen free, and adhere to the RoHS directive. For MPS green status, please visit MPS website under Quality Assurance.“MPS” and “The Future of Analog IC Technology” are Registered Trademarks of Monolithic Power Systems, Inc.TYPICAL APPLICATIONORDERING INFORMATION* For Tape & Reel, add suffix –Z (e.g. MPQ8904DD-AEC1–Z);For RoHS, compliant packaging, add suffix –LF (e.g. MPQ8904DD-AEC1–LF–Z).** For Tape & Reel, add suffix -Z (e.g. MPQ8904DD-Z);For RoHS, compliant packaging, add suffix -LF (e.g. MPQ8904DD-LF-Z).TOP MARKINGT3: product code of MPQ8904DD and MPQ8904DD-AEC1;Y: year code;W: week code:LLL: lot number;PACKAGE REFERENCEABSOLUTE MAXIMUM RATINGS (1) IN, FB to GND ................................. -0.3V to +7V EN to GND ............................. -0.3V to V IN +0.3V OUT ...................................... -0.3V to V IN + 0.3V Continuous Power Dissipation (T A = +25°C)(2)……………………………………………….2.5W Junction Temperature ............................... 150°C Lead Temperature .................................... 260°C Storage Temperature .............. -65°C to +150°C Recommended Operating Conditions (3) Input Voltage V IN............................. 2.5V to 6.5V Output Voltage ................................... 0.5V to 5V Load Current ........................... 500mA Maximum Operating Junction Temp. (T J). -40°C to +125°C Thermal Resistance (4)θJA θJCQFN-8 (2mm x 3mm) .............. 55 ...... 12 ... °C/W Notes:1) Exceeding these ratings may damage the device.2) The maximum allowable power dissipation is a function of themaximum junction temperature T J(MAX), the junction-to-ambient thermal resistance θJA, and the ambient temperature T A. The maximum allowable continuous power dissipation at any ambient temperature is calculated by P D(MAX)=(T J(MAX)-T A)/ θJA. Exceeding the maximum allowable power dissipation will cause excessive die temperature, and the regulator will go into thermal shutdown. Internal thermal shutdown circuitry protects the device from permanent damage.3) The device is not guaranteed to function outside of itsoperating conditions.4) Measured on approximately 1” square of 1 oz copper.ELECTRICAL CHARACTERISTICSV IN = 3.3V, V OUT = 1.2V, C OUT = 4.7µF, C IN = 2.2µF, T J = -40°C to +125°C, Typical value are T J = 25°C, unless otherwise noted.Notes:5) Parameter is guaranteed by design, not production tested.6) Resistors for V OUT measurement are 10kΩ, 14kΩ, 1%7) The ground current does not include current through feedback current8) Dropout Voltage is defined as the input to output differential when the output voltage drops 1% below its nominal value9) V FEEDBACK is 90% of the regulated value with 10kΩ pull-up to 5VTYPICAL PERFORMANCE CHARACTERISTICS Based on the Figure Typical Application CircuitC1=2.2μF, C2 =4.7μF, C3=1nF, T A = +25°C, unless otherwise noted.TYPICAL PERFORMANCE CHARACTERISTICS (continued) C1=2.2μF, C2 =4.7μF, C3=1nF, T A = +25°C, unless otherwise noted.TYPICAL PERFORMANCE CHARACTERISTICS (continued) C1=2.2μF, C2 =4.7μF, C3=1nF, T A = +25°C, unless otherwise noted.OPERATIONThe MPQ8904 is a low-current, low-voltage, low-dropout, linear regulator. It is intended for devices that require very low voltage and low quiescent current power, such as wireless modems and cellular phones.The MPQ8904 uses a PNP pass element and features internal thermal shutdown and internal current limit circuit.Figure 1: Functional Block DiagramAPPLICATION INFORMATIONSetting the Output VoltageThe MPQ8904 has an adjustable output voltage set via an external resistor divider (R1 and R2 in Figure).⎪⎪⎭⎫⎝⎛-⨯=FB FB OUT V V V 2R 1R where V FB = 0.5V is the OUT feedbackthreshold voltage.Example: For a 2.5V output and R2=10kΩk 405.05.05.2k 101R =⎪⎭⎫⎝⎛-⨯=Use a standard 40kΩ (±1%) resistor for R1. Table 1 lists selectedR1 values for typical output voltages (R2 = 10kΩ).Power-GoodThe power-good (PG) pin monitors the output voltage; if the output voltage goes below 10% of its regulation point, the PG pin goes low. The PG pin is an open collector output that connects to a pull-up resistor (typically 10kΩ). Tie the pull-up resistor to 0V-to-5.5V supply, such as regulated input voltage.Table 1: Adjustable Output Voltage Values vs. R1(R2 =10kΩ)Bypass CapacitorsBypass the reference voltage can be bypassed with an external capacitor to reduce noise. Use a low-ESR ceramic capacitor for the best performance. Fast Power OnThe MPQ8904 may need an RC circuit to slow down the fast power on if the power on time is less than 100μs (see Figure 2). The typical resistor (R4) value is 100k Ω and the typical capacitor (C3) value is 10nF.Figure 2: Fast Power-On Start-Up CircuitTYPICAL APPLICATION CIRCUITFigure 3: Typical Application CircuitPCB layout guidePCB layout is very important to achieve good regulation, ripple rejection, transient response and thermal performance. For optimal performance, duplicate the EVB layout from Figure.For any changes, follow the guidelines below: 1) Place the input and output ceramic bypasscapacitors close to their respective IN and OUT pins. 2) Use short and direct feedback connections.Place thefeedback resistors andcompensation components as closeto thechip as possible.3) Connect IN, OUT and GND to large coppersurfaces to help cool the chip to improvethermal performance and long-termreliability.Figure 4: PCB Layout, Top LayerPACKAGE INFORMATIONQFN-8 (2mm x 3mm)Revision HistoryNOTICE: The information in this document is subject to change without notice. Users should warrant and guarantee that third party Intellectual Property rights are not infringed upon when integrating MPS products into any application. MPS will not assume any legal responsibility for any said applications.MPQ8904DD-AEC1-LF-P。
Equinox技术有限公司产品参考手册说明书
Continued....Errata•Reset During EEPROM Write•Verifying EEPROM in System•Serial Programming at Voltages below 3.0 Volts3.Reset During EEPROM WriteIf reset is activated during EEPROM write the result is not what should be expected. The EEPROM write cycle completes as normal, but the address regis-ters are reset to 0. The result is that both the address written and address 0 in the EEPROM can be corrupted.Problem Fix/WorkaroundAvoid using address 0 for storage, unless you can guarantee that you will not geta reset during EEPROM write.2.Verifying EEPROM in SystemEEPROM verify in In-System Programming mode cannot operate with maximum clock frequency. This is independent of the SPI clock frequency.Problem Fix/WorkaroundReduce the clock speed, or avoid using the EEPROM verify feature.1.Serial Programming at Voltages below 3.0 VoltsAt voltages below 3.0 Volts, serial programming might fail.Problem Fix/WorkaroundKeep V CC at 3.0 Volts or higher during In-System Programming.Microcontroller with 1K bytes In-System Programmable FlashAT90S1200/A Rev. FErrata SheetRev. 1190B–01/99© Atmel Corporation 1999.Atmel Corporation makes no warranty for the use of its products, other than those expressly contained in the Company’s standard war-ranty which is detailed in Atmel’s Terms and Conditions located on the Company’s web site. The Company assumes no responsibility for any errors which may appear in this document, reserves the right to change devices or specifications detailed herein at any time without notice, and does not make any commitment to update the information contained herein. No licenses to patents or other intellectual prop-erty of Atmel are granted by the Company in connection with the sale of Atmel products, expressly or by implication. Atmel’s products are not authorized for use as critical components in life support devices or systems.Atmel HeadquartersAtmel OperationsCorporate Headquarters2325 Orchard Parkway San Jose, CA 95131TEL (408) 441-0311FAX (408) 487-2600EuropeAtmel U.K., Ltd.Coliseum Business Centre Riverside WayCamberley, Surrey GU15 3YL EnglandTEL (44) 1276-686677FAX (44) 1276-686697AsiaAtmel Asia, Ltd.Room 1219Chinachem Golden Plaza 77 Mody Road Tsimshatsui East Kowloon, Hong Kong TEL (852) 27219778FAX (852) 27221369JapanAtmel Japan K.K.Tonetsu Shinkawa Bldg., 9F 1-24-8 ShinkawaChuo-ku, Tokyo 104-0033JapanTEL (81) 3-3523-3551FAX (81) 3-3523-7581Atmel Colorado Springs1150 E. Cheyenne Mtn. Blvd.Colorado Springs, CO 80906TEL (719) 576-3300FAX (719) 540-1759Atmel RoussetZone Industrielle13106 Rousset Cedex, France TEL (33) 4 42 53 60 00FAX (33) 4 42 53 60 01Fax-on-DemandNorth America:1-(800) 292-8635International:1-(408) 441-0732e-mail********************Web Site BBS1-(408) 436-4309Features•Utilizes the AVR®RISC Architecture•AVR - High-performance and Low-power RISC Architecture –89 Powerful Instructions - Most Single Clock Cycle Execution –32 x 8 General Purpose Working Registers–Up to 12 MIPS Throughput at 12 MHz•Data and Nonvolatile Program Memory–1K Bytes of In-System Programmable FlashEndurance: 1,000 Write/Erase Cycles–64 Bytes of In-System Programmable EEPROMEndurance: 100,000 Write/Erase Cycles–Programming Lock for Flash Program and EEPROM Data Security•Peripheral Features–One 8-bit Timer/Counter with Separate Prescaler–On-chip Analog Comparator–Programmable Watchdog Timer with On-chip Oscillator–SPI Serial Interface for In System Programming•Special Microcontroller Features–Low-power Idle and Power Down Modes–External and Internal Interrupt Sources–Selectable On-chip RC Oscillator for Zero External Components •Specifications–Low-power, High-speed CMOS Process Technology–Fully Static Operation•Power Consumption at 4 MHz, 3V, 25°C–Active: 2.0 mA–Idle Mode: 0.4 mA–Power Down Mode: <1 µA•I/O and Packages–15 Programmable I/O Lines–20-pin PDIP and SOIC•Operating Voltages–2.7 - 6.0V (AT90S1200-4)–4.0 - 6.0V (AT90S1200-12)•Speed Grades–0 - 4 MHz, (AT90S1200-4)–0 - 12 MHz, (AT90S1200-12)DescriptionThe AT90S1200 is a low-power CMOS 8-bit microcontroller based on the AVR RISC architecture. By executing powerful instructions in a single clock cycle, the Microcontroller with 1K bytesAT90S1200 achieves throughputs approaching 1 MIPS per MHz allowing the system designer to optimize power consump-tion versus processing speed.The AVR core combines a rich instruction set with the 32 general purpose working registers. All the 32 registers are directly connected to the Arithmetic Logic Unit (ALU), allowing two independent registers to be accessed in one single instruction executed in one clock cycle. The resulting architecture is more code efficient while achieving throughputs up to ten times faster than conventional CISC microcontrollers.Block DiagramFigure 1. The AT90S1200 Block DiagramAT90S1200The architecture supports high level languages efficiently as well as extremely dense assembler code programs. The AT90S1200 provides the following features: 1K bytes of In-System Programmable Flash, 64 bytes EEPROM, 15 general purpose I/O lines, 32 general purpose working registers, internal and external interrupts, programmable Watchdog Timer with internal oscillator, an SPI serial port for program downloading and two software selectable power saving modes. The Idle Mode stops the CPU while allowing the registers, timer/counter, watchdog and interrupt system to continue functioning. The power down mode saves the register contents but freezes the oscillator, disabling all other chip functions until the next external interrupt or hardware reset.The device is manufactured using Atmel’s high density non-volatile memory technology. The on-chip In-System Program-mable Flash allows the program memory to be reprogrammed in-system through an SPI serial interface or by a conventional nonvolatile memory programmer. By combining an enhanced RISC 8-bit CPU with In-System Programmable Flash on a monolithic chip, the Atmel AT90S1200 is a powerful microcontroller that provides a highly flexible and cost effective solution to many embedded control applications.The AT90S1200 AVR is supported with a full suite of program and system development tools including: macro assemblers, program debugger/simulators, in-circuit emulators, and evaluation kits.Pin DescriptionsVCCSupply voltage pin.GNDGround pin.Port B (PB7..PB0)Port B is an 8-bit bi-directional I/O port. Port pins can provide internal pull-up resistors (selected for each bit). PB0 and PB1 also serve as the positive input (AIN0) and the negative input (AIN1), respectively, of the on-chip analog comparator. The Port B output buffers can sink 20 mA and thus drive LED displays directly. When pins PB0 to PB7 are used as inputs and are externally pulled low, they will source current if the internal pull-up resistors are activated. The Port B pins are tri-stated when a reset condition becomes active, even if the clock is not active.Port D (PD6..PD0)Port D has seven bi-directional I/O pins with internal pull-up resistors, PD6..PD0. The Port D output buffers can sink 20 mA. As inputs, Port D pins that are externally pulled low will source current if the pull-up resistors are activated. The Port D pins are tri-stated when a reset condition becomes active, even if the clock is not active.RESETReset input. A low level on this pin for more than 50 ns will generate a reset, even if the clock is not running. Shorter pulses are not guaranteed to generate a reset.XTAL1Input to the inverting oscillator amplifier and input to the internal clock operating circuit.XTAL2Output from the inverting oscillator amplifier.Architectural OverviewThe fast-access register file concept contains 32 x 8-bit general purpose working registers with a single clock cycle access time. This means that during one single clock cycle, one ALU (Arithmetic Logic Unit) operation is executed. Two operands are output from the register file, the operation is executed, and the result is stored back in the register file - in one clock cycle.Figure 2. The AT90S1200 AVR Enhanced RISC ArchitectureThe ALU supports arithmetic and logic functions between registers or between a constant and a register. Single register operations are also executed in the ALU. Figure 2 shows the AT90S1200 AVR Enhanced RISC microcontroller architec-ture. The AVR uses a Harvard architecture concept - with separate memories and buses for program and data memories. The program memory is accessed with a two stage pipeline. While one instruction is being executed, the next instruction is pre-fetched from the program memory. This concept enables instructions to be executed in every clock cycle. The program memory is In-System Programmable Flash memory.With the relative jump and relative call instructions, the whole 512 address space is directly accessed. All AVR instructions have a single 16-bit word format, meaning that every program memory address contains a single 16-bit instruction. During interrupts and subroutine calls, the return address program counter (PC) is stored on the stack. The stack is a 3level deep hardware stack dedicated for subroutines and interrupts.The I/O memory space contains 64 addresses for CPU peripheral functions as Control Registers, Timer/Counters, A/D-converters, and other I/O functions. The memory spaces in the AVR architecture are all linear and regular memory maps.A flexible interrupt module has its control registers in the I/O space with an additional global interrupt enable bit in the status register. All the different interrupts have a separate interrupt vector in the interrupt vector table at the beginning of the p ro-gram memory. The different interrupts have priority in accordance with their interrupt vector position. The lower theAT90S1200AT90S1200 Register SummaryAddress Name Bit 7Bit 6Bit 5Bit 4Bit 3Bit 2Bit 1Bit 0 $3F SREG I T H S V N Z C$3E Reserved$3D Reserved$3C Reserved$3B GIMSK-INT0------$3A Reserved$39TIMSK------TOIE0-$38TIFR------TOV0-$37Reserved$36Reserved$35MCUCR--SE SM--ISC01ISC00 $34Reserved$33TCCR0-----CS02CS01CS00 $32TCNT0 Timer/Counter0 (8 Bit)$31Reserved$30Reserved$2F Reserved$2E Reserved$2D Reserved$2C Reserved$2B Reserved$2A Reserved$29Reserved$28Reserved$27Reserved$26Reserved$25Reserved$24Reserved$23Reserved$22Reserved$21WDTCR----WDE WDP2WDP1WDP0 $20Reserved$1F Reserved$1E EEAR- EEPROM Address Register$1D EEDR EEPROM Data Register$1C EECR------EEWE EERE $1B Reserved$1A Reserved$19Reserved$18PORTB PORTB7PORTB6PORTB5PORTB4PORTB3PORTB2PORTB1PORTB0 $17DDRB DDB7DDB6DDB5DDB4DDB3DDB2DDB1DDB0 $16PINB PINB7PINB6PINB5PINB4PINB3PINB2PINB1PINB0 $15Reserved$14Reserved$13Reserved$12PORTD-PORTD6PORTD5PORTD4PORTD3PORTD2PORTD1PORTD0 $11DDRD-DDD6DDD5DDD4DDD3DDD2DDD1DDD0 $10PIND-PIND6PIND5PIND4PIND3PIND2PIND1PIND0 $0F Reserved...Reserved$09Reserved$08ACSR ACD-ACO ACI ACIE-ACIS1ACIS0…Reserved$00ReservedNotes: 1.For compatibility with future devices, reserved bits should be written to zero if accessed. Reserved I/O memory addresses should never be written.2.Some of the status flags are cleared by writing a logical one to them. Note that the CBI and SBI instructions will operate onall bits in the I/O register, writing a one back into any flag read as set, thus clearing the flag. The CBI and SBI instructionswork with registers $00 to $1F only.Instruction Set SummaryMnemonics Operands Description Operation Flags#Clocks ARITHMETIC AND LOGIC INSTRUCTIONSADD Rd, Rr Add two Registers Rd ← Rd + Rr Z,C,N,V,H1 ADC Rd, Rr Add with Carry two Registers Rd ← Rd + Rr + C Z,C,N,V,H1 SUB Rd, Rr Subtract two Registers Rd ← Rd - Rr Z,C,N,V,H1 SUBI Rd, K Subtract Constant from Register Rd ← Rd - K Z,C,N,V,H1 SBC Rd, Rr Subtract with Carry two Registers Rd ← Rd - Rr - C Z,C,N,V,H1 SBCI Rd, K Subtract with Carry Constant from Reg.Rd ← Rd - K - C Z,C,N,V,H1 AND Rd, Rr Logical AND Registers Rd ← Rd • Rr Z,N,V1 ANDI Rd, K Logical AND Register and Constant Rd ← Rd • K Z,N,V1 OR Rd, Rr Logical OR Registers Rd ← Rd v Rr Z,N,V1 ORI Rd, K Logical OR Register and Constant Rd ← Rd v K Z,N,V1 EOR Rd, Rr Exclusive OR Registers Rd ← Rd⊕Rr Z,N,V1 COM Rd One’s Complement Rd ← $FF - Rd Z,C,N,V1 NEG Rd T wo’s Complement Rd ← $00 - Rd Z,C,N,V,H1 SBR Rd,K Set Bit(s) in Register Rd ← Rd v K Z,N,V1 CBR Rd,K Clear Bit(s) in Register Rd ← Rd • (FFh - K)Z,N,V1 INC Rd Increment Rd ← Rd + 1Z,N,V1 DEC Rd Decrement Rd ← Rd - 1 Z,N,V1 TST Rd T est for Zero or Minus Rd ← Rd • Rd Z,N,V1 CLR Rd Clear Register Rd ← Rd⊕Rd Z,N,V1 SER Rd Set Register Rd ← $FF None1 BRANCH INSTRUCTIONSRJMP k Relative Jump PC ← PC + k + 1 None2 RCALL k Relative Subroutine Call PC ← PC + k + 1None3 RET Subroutine Return PC ← ST ACK None4 RETI Interrupt Return PC ← ST ACK I4 CPSE Rd,Rr Compare, Skip if Equal if (Rd = Rr) PC ← PC + 2 or 3None 1 / 2 CP Rd,Rr Compare Rd - Rr Z, N,V,C,H1 CPC Rd,Rr Compare with Carry Rd - Rr - C Z, N,V,C,H1 CPI Rd,K Compare Register with Immediate Rd - K Z, N,V,C,H1 SBRC Rr, b Skip if Bit in Register Cleared if (Rr(b)=0) PC ← PC + 2 or 3 None 1 / 2 SBRS Rr, b Skip if Bit in Register is Set if (Rr(b)=1) PC ← PC + 2 or 3None 1 / 2 SBIC P, b Skip if Bit in I/O Register Cleared if (P(b)=0) PC ← PC + 2 or 3 None 1 / 2 SBIS P, b Skip if Bit in I/O Register is Set if (P(b)=1) PC ← PC + 2 or 3None 1 / 2 BRBS s, k Branch if Status Flag Set if (SREG(s) = 1) then PC←PC + k + 1None 1 / 2 BRBC s, k Branch if Status Flag Cleared if (SREG(s) = 0) then PC←PC + k + 1None 1 / 2 BREQ k Branch if Equal if (Z = 1) then PC ← PC + k + 1None 1 / 2 BRNE k Branch if Not Equal if (Z = 0) then PC ← PC + k + 1None 1 / 2 BRCS k Branch if Carry Set if (C = 1) then PC ← PC + k + 1None 1 / 2 BRCC k Branch if Carry Cleared if (C = 0) then PC ← PC + k + 1None 1 / 2 BRSH k Branch if Same or Higher if (C = 0) then PC ← PC + k + 1None 1 / 2 BRLO k Branch if Lower if (C = 1) then PC ← PC + k + 1None 1 / 2 BRMI k Branch if Minus if (N = 1) then PC ← PC + k + 1None 1 / 2 BRPL k Branch if Plus if (N = 0) then PC ← PC + k + 1None 1 / 2 BRGE k Branch if Greater or Equal, Signed if (N ⊕ V= 0) then PC ← PC + k + 1None 1 / 2 BRLT k Branch if Less Than Zero, Signed if (N ⊕ V= 1) then PC ← PC + k + 1None 1 / 2 BRHS k Branch if Half Carry Flag Set if (H = 1) then PC ← PC + k + 1None 1 / 2 BRHC k Branch if Half Carry Flag Cleared if (H = 0) then PC ← PC + k + 1None 1 / 2 BRTS k Branch if T Flag Set if (T = 1) then PC ← PC + k + 1None 1 / 2 BRTC k Branch if T Flag Cleared if (T = 0) then PC ← PC + k + 1None 1 / 2 BRVS k Branch if Overflow Flag is Set if (V = 1) then PC ← PC + k + 1None 1 / 2 BRVC k Branch if Overflow Flag is Cleared if (V = 0) then PC ← PC + k + 1None 1 / 2 BRIE k Branch if Interrupt Enabled if (I = 1) then PC ← PC + k + 1None 1 / 2 BRID k Branch if Interrupt Disabled if (I = 0) then PC ← PC + k + 1None 1 / 2 DATA TRANSFER INSTRUCTIONSLD Rd,Z Load Register Indirect Rd ← (Z)None2 ST Z,Rr Store Register Indirect(Z) ← Rr None2 MOV Rd, Rr Move Between Registers Rd ← Rr None1 LDI Rd, K Load Immediate Rd ← K None1IN Rd, P In Port Rd ← P None1 OUT P, Rr Out Port P ← Rr None1AT90S1200Instruction Set Summary (Continued)Mnemonics Operands Description Operation Flags#Clocks BIT AND BIT-TEST INSTRUCTIONSSBI P,b Set Bit in I/O Register I/O(P,b) ← 1None2 CBI P,b Clear Bit in I/O Register I/O(P,b) ← 0None2 LSL Rd Logical Shift Left Rd(n+1) ← Rd(n), Rd(0) ← 0Z,C,N,V1 LSR Rd Logical Shift Right Rd(n) ← Rd(n+1), Rd(7) ← 0Z,C,N,V1 ROL Rd Rotate Left Through Carry Rd(0)←C,Rd(n+1)← Rd(n),C←Rd(7)Z,C,N,V1 ROR Rd Rotate Right Through Carry Rd(7)←C,Rd(n)← Rd(n+1),C←Rd(0)Z,C,N,V1 ASR Rd Arithmetic Shift Right Rd(n) ← Rd(n+1), n=0..6Z,C,N,V1 SWAP Rd Swap Nibbles Rd(3..0)←Rd(7..4),Rd(7..4)←Rd(3..0)None1 BSET s Flag Set SREG(s) ← 1SREG(s)1 BCLR s Flag Clear SREG(s) ← 0 SREG(s)1 BST Rr, b Bit Store from Register to T T ← Rr(b)T1 BLD Rd, b Bit load from T to Register Rd(b) ← T None1 SEC Set Carry C ←1C1 CLC Clear Carry C ← 0 C1 SEN Set Negative Flag N ← 1N1 CLN Clear Negative Flag N ← 0 N1 SEZ Set Zero Flag Z ←1Z1 CLZ Clear Zero Flag Z ← 0 Z1 SEI Global Interrupt Enable I ←1I1 CLI Global Interrupt Disable I ← 0 I1 SES Set Signed T est Flag S ←1S1 CLS Clear Signed T est Flag S ← 0 S1 SEV Set T wos Complement Overflow V ←1V1 CLV Clear T wos Complement Overflow V ← 0 V1 SET Set T in SREG T ←1T1 CLT Clear T in SREG T ← 0 T1 SEH Set Half Carry Flag in SREG H ←1H1 CLH Clear Half Carry Flag in SREG H ← 0 H1 NOP No Operation None1 SLEEP Sleep(see specific descr. for Sleep function)None3 WDR Watch Dog Reset(see specific descr. for WDR/timer)None1Note:1.Order A T90S1200A-XXX for devices with the RCEN fuse programmed.Ordering Information (1)Speed (MHz)Power Supply Ordering Code Package Operation Range 42.7 - 6.0VA T90S1200-4PC A T90S1200-4SC A T90S1200-4YC 20P320S 20Y Commercial (0°C to 70°C)A T90S1200-4PI A T90S1200-4SI A T90S1200-4YI20P320S 20Y Industrial (-40°C to 85°C)124.0 - 6.0VA T90S1200-12PC A T90S1200-12SC A T90S1200-12YC 20P320S 20Y Commercial (0°C to 70°C)A T90S1200-12PI A T90S1200-12SI A T90S1200-12YI20P320S 20YIndustrial (-40°C to 85°C)Package Type20P320-lead, 0.300" Wide Plastic Dual Inline Package (PDIP)20S 20-lead, 0.300" Wide, Plastic Gull-Wing Small Outline (SOIC)20Y20-lead, 5.3 mm Wide, Plastic Shrink Small Outline Package (SSOP)Packaging Information© Atmel Corporation 1999.Atmel Corporation makes no warranty for the use of its products, other than those expressly contained in the Company’s standard war-ranty which is detailed in Atmel’s Terms and Conditions located on the Company’s web site. The Company assumes no responsibility for any errors which may appear in this document, reserves the right to change devices or specifications detailed herein at any time without notice, and does not make any commitment to update the information contained herein. No licenses to patents or other intellectual prop-erty of Atmel are granted by the Company in connection with the sale of Atmel products, expressly or by implication. Atmel’s products are not authorized for use as critical components in life support devices or systems.Atmel HeadquartersAtmel OperationsCorporate Headquarters2325 Orchard Parkway San Jose, CA 95131TEL (408) 441-0311FAX (408) 487-2600EuropeAtmel U.K., Ltd.Coliseum Business Centre Riverside WayCamberley, Surrey GU15 3YL EnglandTEL (44) 1276-686-677FAX (44) 1276-686-697AsiaAtmel Asia, Ltd.Room 1219Chinachem Golden Plaza 77 Mody Road Tsimhatsui East Kowloon Hong KongTEL (852) 2721-9778FAX (852) 2722-1369JapanAtmel Japan K.K.9F, Tonetsu Shinkawa Bldg.1-24-8 ShinkawaChuo-ku, Tokyo 104-0033JapanTEL (81) 3-3523-3551FAX (81) 3-3523-7581Atmel Colorado Springs1150 E. Cheyenne Mtn. Blvd.Colorado Springs, CO 80906TEL (719) 576-3300FAX (719) 540-1759Atmel RoussetZone Industrielle13106 Rousset Cedex FranceTEL (33) 4-4253-6000FAX (33) 4-4253-6001Fax-on-DemandNorth America:1-(800) 292-8635International:1-(408) 441-0732e-mail********************Web Site BBS1-(408) 436-4309Marks bearing ® and/or ™ are registered trademarks and trademarks of Atmel Corporation.。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
A MONOLITHIC 19-BIT 800 H Z LOW POWER MULTI-BIT SIGMADELTA CMOS ADC USING DATA WEIGHTED A VERAGINGOlivier Nys, Robert HendersonCentre Suisse d’Electronique et de Microtechnique S.A.Jaquet-Droz 1, CH-2007 NeuchâtelAbstract:This paper describes a sigma delta switched capacitor CMOS ADC usingmulti-bit quantization and feedback path for minimum power consumption.Multi-bit quantization has up to now been avoided because the linearity ofthe DAC in the feedback path directly limits the linearity of the wholeconverter. By using data weighted averaging, the non-linearity error relatedto the mismatch of the DAC components is decorrelated from the signal andtransformed into high frequency noise. Hence most of this error is furthereliminated together with the quantization noise by the digital lowpass filter.1. I NTRODUCTIONWhen designing low power high resolution oversampled ADC, 3 main parameters must first be determined : the oversampling frequency, the modulator order and the number of bits for quantization and feedback DAC. In order to allow weak or moderate inversion operation of the OTA’s and thus to reach maximum power efficiency, the sampling frequency is chosen below a critical value fc related to the technology [1]. However, for high resolution converters, the dominant noise source is thermal noise, which imposes a minimum value on the product of the input capacitor size and the sampling frequency. Hence, reducing the sampling frequency much below fc drastically increases the sizes of capacitors and the chip area, without significantly reducing power consumption. For a Nyquist rate of 800 Hz, a relatively large oversampling ratio (~512) can still be selected without significant penalty in power consumption. In this way, a quantization noise level compatible with 19 bit resolution can already be achieved with a third order modulator. The modulator order can be further reduced to 2 with multi-bit quantization and feedback. By so doing, the sensitivity of the converter to overload is reduced. Moreover, multi-bit quantization has a very favourable impact on power consumption. The reason is that the feedback signal tracks the input signal. better As the first integrator accumulates the difference between the input signal and the feedback signal, its slew rate requirements and power consumption can be drastically reduced. The main reason why multibit quantization and feedback has up to now generally been avoided is that the linearity of the DAC directly limits the linearity of the overal converter. In this circuit, this problem has been solved by using data weighted averaging (DWA) [2].2. I MPROVED DAC LINEARITYSwitched capacitor DAC’s are generally realised from an array of identical elementary capacitors. These elementary capacitors are then grouped into binary weighted capacitors, each capacitor being made of a number of elementary capacitors equal to a power of 2. Such DAC’s generally exhibit discontinuities or even non-monotonicities around the middle of their characteristics, corresponding to the switching of the msb’s. These discontinuities can be avoided by selecting all the elementary capacitors according to a thermometrical decoder where only one more capacitor participates to the D/A conversion for each unit increment in the the input code. However, such an algorithm only reduces the differential non-linearity, but not the integral non-linearity. The error related to the mismatch between the DAC capacitors can also be decorrelated from the signal by selecting the capacitors at random [3]. This error is then converted into random noise, the spectrum of which spans up to half the sampling frequency. The advantage is that the components outside the signal baseband are further eliminated by the digital decimation filter. However, the noise power is only attenuated by 3 dB per octave of the oversampling factor. A much greater attenuation can be obtained by using a noise shaping technique in order to move the noise due to mismatch between DAC capacitors outside the baseband. This is achieved by the DWA technique which basically involves cyclically selecting all the DAC capacitors [2, 4, 5], as illustrated in figure 1. This algorithm prevents any capacitor from being selected more than one time more than any other capacitor over an arbitrarily long time period. As this technique performs a first order shaping on the mismatch noise, it is attenuated by 9 dB per octave of oversampling. With an oversampling factor of 512, the mismatch noise is attenuated by 81 dB, and thus becomes negligible with respect to thermal noise.code(k)=4code(k+1)=5code(k+2)=2code(k+3)=3Fig1: Cyclic selection of the capacitors participating in the D/A conversion3. C IRCUIT I MPLEMENTATIONFigure 2 shows the architecture of the sigma delta modulator. This is basically a fully differential second order single loop modulator, using multibit feedback towards both integrators. For improved 1/f noise rejection, correlated double sampling (CDS) is performed within the first integrator. This technique is combined with a chopper at an intermediate and programmable frequency in order to remove the offset due to the charge injection of the sampling switches. The 8pF input capacitors necessary to achieve a thermal noise levelcompatible with 19 bits can be conveniently subdivided into the eight elementary capacitors constituting the 3-bit feedback DAC without area overhead. To increase the input impedance,the sampling capacitors are precharged to coarse copies of the input or reference signals through on-chip buffers [6]. The number of quantization and feedback bits within the sigma delta loop is programmable between 0 and 3. The digital decimation filter is a third order comb filter with programmable decimation factor. The complete test chip including digital filter and control circuitry has been integrated in a 2 µm double poly CMOS process (Fig 3). The analogue and digital parts occupy 4 and 10mm 2 respectively. Total power consumption is 2.7mW from a 5 V power supply, half of the power being due to the digital part.vin-Fig 2: Architecture of the multi-bit sigma delta modulator with cyclic selection of capacitorsFig 3: Chip Photograph4. M EASUREMENT R ESULTSFig. 4a shows the measured resolution as a function of oversampling factor (N). At low N, the resolution is limited by quantization noise and increases by 2.5 bits per octave. At N=128 the resolution begins to be limited by thermal noise and only 0.5 bit per octave of N is gained. The resolution does not saturate even for high N, indicating that 1/f noise is successfully eliminated by the CDS technique. Fig. 4b shows a comparison of the converter linearity error bounds with and without DWA. These curves have been extracted from an LMS fit of data from a ±5V fully-differential DC sweep of the fullscale converter input range. The linearity error without dynamic matching varied greatly from chip to chip whereas that with dynamic matching was reproducible and is related to charge injection. An other observed advantage of multi-bit compared to single bit is the suppression of tones in the quantization noise.b) effect of enabling or disabling DWA on the linearity5. C ONCLUSIONSAn ADC with 19 bits resolution on a 400 Hz bandwidth has been presented, consuming only 2.7 mW thanks to multibit quantization and feedback. The inherent linearity problem of this architecture has been solved using the DWA technique. A reduction of the power consumption by a factor 2 could be expected with a submicron technology, as half of the power is still consumed in the digital part.6. R EFERENCES[1]O. Nys, R. Henderson, “Low Power High Resolution A/D Converters”, Proc. of Midwest Symposium on Circuitsand Systems”, Rio de Janeiro, Brazil, August 13-16,1995.[2]R.T. Baird, T. S. Fiez, “Linearity Enhancement of Multibit ∆Σ A/D and D/A Converters using Data WeightedAveraging”, IEEE Transactions on Circuits and Systems--II: Analog and Digital Signal Processing, Volume 42, No 12, pp. 753-762, December 1995.[3]L. R. Carley, “A Noise-Shaping Coder Topology for 15+ Bit Converters”, IEEE Journal of Solid-State Circuits,Volume SC-24, pp. 267-273, April 1989[4] A. Maloberti, “Convertitore Digitale Analogico Sigma-Delta Multilivello con Matching Dinamico degliElementi ”, Tesi di Laurea, Universita degli Studi di Pavia, 1990-1991[5]O. Nys, R. Henderson, “An Analyis of Dynamic Element Matching Techniques in Sigma-Delta Modulation”, to bepublished at ISCAS 96, Atlanta, 1996,[6]K. Yamamura, A. Nogi, A. Barlow, “ A Low Power 20 Bit Instrumentation Delta-Siigma ADC”, Proc. IEEE CICC,pp. 519-522, San Diego, 1994.。