DS89C450-KIT# DS89C450 Evaluation Kit

Size: px
Start display at page:

Download "DS89C450-KIT# DS89C450 Evaluation Kit"

Transcription

1 -0; Rev /0 DSC0-KIT# DSC0 Evaluation Kit GENERAL DESCRIPTION The DSC0 evaluation kit (EV kit) is a proven platform to conveniently evaluate the capabilities of the ultra-high-speed flash microcontroller family. The kit contains the DSC0 in a DIP-0 socket, kb of SRAM mapped through a preprogrammed CPLD, a power-supply regulator, two DB serial connectors, and switches and LEDs to control and display board operation. With the addition of a power supply and an RS- cable connected to a personal computer, the EV kit provides a completely functional system ideal for application development and debug. The DSC0 EV kit can also be used as a programming and development platform for the DS000(T). Quick-start instructions and sample programs for the DS000(T) can be obtained from the DS000 directory on the software tool disk, or from Maxim technical support at EVALUATION KIT CONTENTS DSC0 Evaluation Kit Board with Processor and.mhz Crystal Installed 0-Based Microcontroller Software Eval Disk FEATURES Easily Load Code Using Bootstrap Loader and Serial 0 Port (DB, J) Two DB RS- Serial Connectors DB Serial Cable Two Internal Serial Ports On-Board Power Supply Regulator kb of On-Board Program + Data RAM Preprogrammed Xilinx CPLD Handles Address Multiplexing and RAM Mapping LED Display of Port 0 Levels Pushbutton Switches for Reset and Interrupt Generation Prototyping Area Board Schematics Included to Provide a Convenient Reference Design ORDERING INFORMATION PART TEMP RANGE DIMENSIONS DSC0-KIT# Room Approx. cm x 0cm #Denotes a RoHS-compliant device that may include lead(pb) that is exempt under the RoHS requirements. Figure. DSC0 Evaluation Kit Board of

2 DSC0 Evaluation Kit COMPONENT LIST DESIGNATION QTY DESCRIPTION SUPPLIER PART C, C 00 F, V radial capacitors Panasonic ECA-EM0 C, C F, 0V tantalum capacitors Panasonic ECS-TAXR C, C, C, C C 0. F capacitors (00) Generic C, C pf capacitors Panasonic ECJ-VCH0J J mm male power-barrel connector CUI Inc. PJ-00A J, J DB RS- female connectors Amp/Tyco - J Micro header pins (unpopulated) J Spare input header pins (unpopulated) JP, JP Solder pad jumpers (closed) R, R.k resistors (00) Generic R, R 0k resistors (00) Generic R 0 resistor (00) Generic RN, RN, RN 0 resistor pack () CTS 00 RN.k resistor pack () CTS 00 SW, SW, SW DIP switches x C&K SDA0HBD SW, SW SPST pushbutton Panasonic EVQ-PAC0M U 0mA linear regulator (V) Maxim MAXESA+ U 0mA linear regulator (.V) Maxim MAXESA+ U DSC0 microcontroller (0-pin PDIP) Maxim DSC0-MNL+ U Quad buffer Fairchild AC U Preprogrammed -pin CPLD Xilinx XCXL- 0PCGC U k x asynchronous cache SRAM Cypress CYC00D-0VXI U Unpopulated U RS- transceiver ( Tx, Rx) Maxim MAXACWP+ U Inverting octal buffer Fairchild AC0 U0 LED x0 display (Port + power) Lumex SSA-LXB0IW-GF/LP Y.MHz crystal (socketed) Citizen HCUS.MABJ of

3 DSC0 Evaluation Kit TYPICAL OPERATING CIRCUIT Figure. DSC0 Evaluation Kit Board Layout DETAILED DESCRIPTION The DSC0 EV kit must be used with the DSC0/DSC0 ultra-high-speed flash microcontrollers IC data sheet and the Ultra-High-Speed Flash Microcontroller User s Guide ( A complete description of the bootstrap loader commands and functions is located in Section of the Ultra-High-Speed Flash Microcontroller User s Guide. The DSC0 EV kit and all of its connectors are defined in the schematics provided in the accompanying documentation disk. However, a short description of the major components of the board follows. Power Supplies The EV kit accepts a DC input supply at J. The supply should be a V to V DC supply, center post positive, with at least 00mA capacity. The exact DC input value of the supply is not important, as the on-board linear MAX and MAX regulators produce fixed V and.v for use by the kit circuitry. While it is possible to supply up to V at J (the maximum input voltage of the MAX and MAX), doing so results in a large amount of heat dissipation from the board. A small heatsink plane is provided on the backside of the board beneath the linear regulators, but this may be inadequate at input voltages above V. If U and U are hot, lower the DC input voltage at J. Note that many unregulated DC wall plug-in supplies may provide an output level much higher than their labeled output value if they are lightly loaded. of

4 DSC0 Evaluation Kit Serial Ports Both serial ports of the DSC0 (Serial Port 0 and Serial Port ) are translated to RS- levels and brought out to DB connectors at J and J. Serial Port 0 (J) must always be used when communicating with the bootloader. Memory The external memory of the DSC0 on this EV kit is designed to operate with the address and data bus multiplexed on P0 and P. A kb x SRAM is installed, which is accessed as both program and data memory by this multiplexed bus. Note that as the total memory space of the DSC0 is only kb of program memory and K of data memory, port pin memory banking must be used to access the entire kb-memory space. CPLD The CPLD device on the EV kit board is preprogrammed to perform several functions. Address latching of the low bits of the external memory address from port P0. Mapping together program and data memory. Performing port pin memory banking (optional). The RTL code preprogrammed into the CPLD is as follows. module Eval(AD, nrd, ALE, npsen, CFG0, CFG, SW_IN, P, A, A, A, noe, SW_OUT); input [:0] AD; // Multiplexed low-order address and data from micro input nrd; // Data memory read enable from micro input ALE; // Address latch enable from micro input npsen; // Program memory read enable from micro input CFG0; // Configuration input zero (from DIP switch) input CFG; // Configuration input one (from DIP switch) input SW_IN; // Interrupt switch input (from pushbutton) inout [:0] P; // Port from micro output [:0] A; // Demultiplexed low-order address to RAM output A; // Address line to RAM output A; // Address line to RAM output noe; // Output enable to RAM output SW_OUT; // Interrupt switch output (to micro) reg [:0] A; ALE) begin A <= AD; end assign A = (CFG0 == 0)? P[0] : 'b0; assign A = (CFG0 == 0)? P[] : 'b0; assign P[0] = (CFG == 0)? SW_IN : 'bz; assign P[] = (CFG == 0)? SW_IN : 'bz; assign P[] = (CFG == 0)? SW_IN : 'bz; assign P[] = (CFG == 0)? SW_IN : 'bz; assign P[] = (CFG == 0)? ~SW_IN : 'bz; assign P[] = (CFG == 0)? ~SW_IN : 'bz; assign P[] = (CFG == 0)? ~SW_IN : 'bz; assign P[] = (CFG == 0)? ~SW_IN : 'bz; assign noe = nrd & npsen; assign SW_OUT = SW_IN; endmodule of

5 DSC0 Evaluation Kit Switch SW. automatically activates the run/load signals. For loader mode, turn SW. ON. For run mode, turn SW. OFF. DIP switches SW. and SW. are used as configuration inputs by the CPLD program. Normally, these switches should be OFF for proper operation. Turning DIP switch SW. ON causes the high address lines A and A to be set to the values at port pins P.0 and P.. This can be used for address banking, but is not required for normal operation. Turning DIP switch SW. on puts the CPLD into a test mode; press SW to toggle the LEDs. Pushbuttons Reset and interrupt pushbuttons are provided. The reset button resets the DSC0, while the interrupt button can be configured to pull down either the INT0 (by setting SW. ON) or T0 (by setting SW. ON) inputs to the microcontroller when pressed. Header Pins and Prototyping Area Header J provides access to all pins of the DSC0, including power and ground. This header is adjacent to a spaced grid prototyping area for circuit development. GETTING STARTED Before using the DSC0 EV kit, the Microcontroller Tool Kit (MTK) application should be installed. MTK is included on the CD and is available at ) Connect the DC V V, center post positive power supply to the power plug J. ) Connect a DB straight-through serial cable between the PC COM port and connector J. ) Set DIP switches SW., SW., SW., SW., and SW. ON. All other DIP switches should be OFF. ) Turn power ON. All the LEDs should light except for the second from the right. ) Open MTK. In the initial dialog box, select the type of processor you are using (DSC0, DSC0, or DSC0). ) Select Options Configure Serial Port from the menu. Enter COM and 00 baud. ) Select Target Open COM at 00 baud. ) Select Target Connect to Loader. ) A loader banner should appear, as shown in Figure. Refer to the user s guide for more details on the bootloader commands for the DSC0. To load an application into the DSC0 flash memory, first enter K at the bootloader prompt to erase the flash, then select File -> Load Flash and open the.hex file you wish to load. The Help menu in MTK provides additional information. The bootloader also allows you to write to Port directly by entering W P xx, where xx is a hex byte value. If you enter a value such as W P or W P AA, the LED display will change to reflect the new outputs at Port. of

6 DSC0 Evaluation Kit Figure. Microcontroller Tool Kit Output USING THE DSC0 EV KIT WITH THE DS000(T) To use the DSC0 EV kit as the evaluation board for the DS000(T), it is necessary to first unsolder the DSC0 from the EV kit. A 0-pin ZIF socket can then be soldered into its place to allow for multiple programming of the DS000(T). DSC0 INFORMATION For more information on the DSC0 and to download the IC data sheet, go to SCHEMATICS The DSC0 EV kit schematics are featured in the following pages. of

7 DSC0 Evaluation Kit REVISION HISTORY REVISION DATE /0 DESCRIPTION Changed U Cypress part number to CYC00BN-VC in the Components List and in the schematic sheet of Added information about switch SW.; updated schematic sheet of (corrected references of SW. SW. to SW. SW.) Added for the DS00(T) to the General Description describing where to go for DS000(T) instructions and sample programs (for clarification) Changed the ordering number from DSC0-K00 to DSC0-KIT# (added RoHS changes); updated the Component List part numbers for SW and U, and changed the part numbers to lead(pb)-free for U, U, U, and U; changed the Technical Support section to Using the DSC0 EV Kit with the DS000(T) PAGES CHANGED,, of Maxim cannot assume responsibility for use of any circuitry other than circuitry entirely embodied in a Maxim product. No circuit patent licenses are implied. Maxim reserves the right to change the circuitry and specifications without notice at any time. Maxim Integrated Products, 0 San Gabriel Drive, Sunnyvale, CA Maxim Integrated Products Maxim is a registered trademark of Maxim Integrated Products.

8 AD[..0] 0 AD0 VCC GND 0 D D AD P0.0/AD0 XTAL nrd AD P0./AD XTAL nwr VUNREG AD P0./AD P./nRD P[..0] J AD P0./AD P./nWR P AD P0./AD P./T P AD P0./AD P./T0 P IN AD P0. P./nINT P G P0. P./nINT0 nea_in P G TP EA/VPP P./TXD0 ALE 0 P0 GND ALE/PROG P.0/RXD0 0 npsen RST A RST PJ-00A PSEN P A P. P./nINT P A P. P./INT P A P. P./nINT P A P. P./INT P A0 P. P./TXD P A P. P./RXD P C A P. P./TEX P0 C P.0 P.0/T A[..] P[..0] VCC J XTAL XTAL Header x0 VUNREG JP VCC VUNREG JP VCC U MAX U MAX IN OUT IN OUT IN OUT IN SET TP IN OUT TP B SHDN GND VCC IN SET VCC B Solder Jumper (closed) SHDN GND Solder Jumper (closed) C uf 0v + C 00uF, v VCC C A 00nF A 0v DSC0 Evaluation Kit - Power and Header Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f C uf 0v + C 00uF, v

9 VCC U P[..0] AD[..0] P0 0 AD0 D D P P.0/RXD0 P0.0/AD0 AD P P./TXD0 P0./AD AD P P./INT0 P0./AD AD P P./INT P0./AD AD P P.T0 P0./AD AD P./T P0./AD AD nwr P./WR P0./AD AD nrd P./RD P0./AD P[..0] A[..] P0 A P P.0/T P.0/A A P P./TEX P./A A0 P P./RXD P./A0 A P P./TXD P./A A P P./INT P./A A P P./INT P./A A P P./INT P./A A P./INT P./A C ALE C RST RST ALE 0 nea_in EA XTAL XTAL npsen PSEN XTAL XTAL nloader VCC DSCX0 DSCx0 DIP-0 C pf 0v B B AC VCC VCC VCC UC AC nea_out A A DSC0 Evaluation Kit - Processor Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f 0 GND VCC 0 UA Y. MHz SOCKETED C pf 0v 0 UB AC UD AC

10 D D TP TCK TP TDI U VCC TP TMS TCK TDI 0 TDO TMS AD[..0] A[..0] AD0 A0 C AD AD0 A0 A C AD AD A A AD AD A A AD AD A A AD AD A A AD AD A A AD AD A A AD A nrd ALE npsen CFG0 CFG SW_IN P0 P P0 P P B B P P P P P P P P P P P P[..0] A A noe SW_OUT XCXL A A DSC0 Evaluation Kit - CPLD Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f 0 GNDa GNDb GNDc VCCINTa VCCINTb TP TDO TP + V VCCIO 0 nrd ALE npsen CFG0 CFG SW_IN A A noe SW_OUT 0 TP GND

11 D D OPTIONAL SECOND RAM AD[..0] AD[..0] VCC VCC U 0 CE 0 CE A[..0] A[..0] A0 A0 A A0 A A0 A A A A 0 C A A 0 A A C A A A A A A A A A A A A A A A[..] D0 A A A[..] D0 A A D0 D A A D0 D A A D D A A D D A0 A D D A0 A D D A A0 D D A A0 D D A A D D A A D D A A D D A A D D A A D 0 D A A D 0 D A A D A A D A A A A A A A U noe noe noe noe B nwr nwe nwr nwe B A nce CYC00BN-VC A A DSC0 Evaluation Kit - RAM Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f VCC NC NC GND VCC nce GND CYC00BN-VC

12 J VCC DTR0 DB RS FEMALE CTS0 D U RX0_ SERIAL PORT 0 RTS0 LOADER D TX0_ TX0 TIN TOUT DSR0 TX TIN TOUT DCD0 RX0 RX C+ J C+ C- Cb+ 0 V- C- Vb- Cb- DTR V+ DB RS FEMALE CTS RX_ SERIAL PORT GNDa GNDb RTS TX_ MAX0ECWP DSR C DCD C TX_ RX_ nled VCC P[..0] U noe noe P0 P0 B B P P I0 no0 0 P P I no P P I no R P P I no 0 Ohm P P I no P P I no P P I no I no RESISTOR SIP - 0 OHM SW DIP- AC0 TURN ON TO PULL LXB0XX RESISTOR SIP - 0 OHM PORT LINES LOW 0-SEGMENT RED LED VCC VCC A A DSC0 Evaluation Kit - Serial / Port Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f 0 GND VCC 0 VCC 0 ROUT ROUT RIN RIN RN SW U0 RN

13 J VCC D R D. K VCC SW RN SW RN nloader nled CFG0 CFG SPARE INPUTS nea_out nea_in RX0 P0 TX0 P SW_OUT P P RX P TX P TX_ RX_ 0 0 SW DIP- RESISTOR SIP - 0 OHM SW DIP- RESISTOR SIP -. K C C SW. - ON FOR DSCx0 SW. - ON TO USE SERIAL PORT 0 / LOADER SW. - ON TO USE SERIAL PORT 0 / LOADER SW. - ON TO CONNECT SW AND nint0 SW. - ON TO CONNECT SW AND T0 SW. - ON TO USE SERIAL PORT SW. - ON TO USE SERIAL PORT SW. - OFF FOR NORMAL USE SW. - ON FOR LOADER MODE SW. - ON TO ENABLE LEDs SW. - OFF FOR NORMAL USE SW. - OFF FOR NORMAL USE SW. - UNUSED SW. - UNUSED SW. - UNUSED SW. - UNUSED VCC R VCC B B 0k SW SW_IN RST INTERRUPT PUSHBUTTON RESET PUSHBUTTON BFS-000 A A DSC0 Evaluation Kit - Switches/Config Rev B Copyright (C) 00 - Dallas Semiconductor / MAXIM Size A Document Number -C0-KIT Friday, August 0, 00 Sheet o f R 0k SW R.k BFS-000

S USB-PC Connection (Cable Not Included) S USB Powered (No External Power Supply Required) S Real-Time Data Acquisition Through the USB

S USB-PC Connection (Cable Not Included) S USB Powered (No External Power Supply Required) S Real-Time Data Acquisition Through the USB 19-5610; Rev 1; 8/11 MAXADClite Evaluation Kit General Description The MAXADClite evaluation kit (EV kit) evaluates the MAX11645, Maxim's smallest, very-low-power, 12-bit, 2-channel analog-to-digital converter

More information

MAXQ USB-to-JTAG EV Kit

MAXQ USB-to-JTAG EV Kit 19-5185; Rev 1; 11/10 MAXQ USB-to-JTAG Evaluation Kit General Description The MAXQM USB-to-JTAG evaluation kit (EV kit) is a preprogrammed interface board that acts as a USB-to-JTAG programming and debugging

More information

MAX3232PMB1 Peripheral Module

MAX3232PMB1 Peripheral Module 19-6319; Rev 0; 5/12 MAX3232PMB1 Peripheral Module General Description The MAX3232PMB1 peripheral module provides the necessary hardware to interface the MAX3232E true RS-232 transceiver to any system

More information

S Complete 2:1 VGA Multiplexer S VGA Connections and Power S LED Indicators for Switch Connections S VGA Inputs/Outputs S Fully Assembled and Tested

S Complete 2:1 VGA Multiplexer S VGA Connections and Power S LED Indicators for Switch Connections S VGA Inputs/Outputs S Fully Assembled and Tested 19-5030; Rev 0; 10/09 MAX4885AE Evaluation Kit General Description The MAX4885AE evaluation kit (EV kit) is a fully assembled and tested circuit board that evaluates the MAX4885AE VGA 2:1 multiplexer.

More information

MAXQ622 Evaluation Kit Evaluates: MAXQ622

MAXQ622 Evaluation Kit Evaluates: MAXQ622 General Description The MAXQ622 evaluation kit (EV kit) provides a proven platform for conveniently evaluating the capabilities of the MAXQ622 low-power, 16-bit, RISC microcontroller with USB interface

More information

+Denotes lead(pb)-free and RoHS compliant.

+Denotes lead(pb)-free and RoHS compliant. 19-4545; Rev 0; 4/09 General Description The MAX13235E evaluation kit (EV kit) provides a proven design to evaluate the MAX13235E, a 3Mbps RS-232 transceiver with low-voltage interface and enhanced electrostatic

More information

Digilab 2E Reference Manual

Digilab 2E Reference Manual Digilent 2E System Board Reference Manual www.digilentinc.com Revision: February 8, 2005 246 East Main Pullman, WA 99163 (509) 334 6306 Voice and Fax Digilab 2E Reference Manual Overview The Digilab 2E

More information

MAX14535E Evaluation Kit. Evaluates: MAX14535E

MAX14535E Evaluation Kit. Evaluates: MAX14535E 19-4510; Rev 0; 3/09 General Description The MAX14535E evaluation kit (EV kit) demonstrates the MAX14535E double-pole/double-throw (DPDT) analog switch featuring negative signal capability, low onresistance

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-4581; Rev 0; 4/09 MAX4989 Evaluation Kit General Description The MAX4989 evaluation kit (EV kit) provides a proven design to evaluate the MAX4989 Hi-Speed 2-of-4 USB 2.0 crosspoint switch. The EV kit

More information

+Denotes lead(pb)-free and RoHS compliant. Maxim Integrated Products 1

+Denotes lead(pb)-free and RoHS compliant. Maxim Integrated Products 1 19-4957; Rev 0; 9/09 General Description The MAX3162 evaluation kit (EV kit) provides a proven design to evaluate the MAX3162 programmable RS-232/ RS-485/422 multiprotocol transceiver. The MAX3162 EV kit

More information

Revision: 5/7/ E Main Suite D Pullman, WA (509) Voice and Fax. Power jack 5-9VDC. Serial Port. Parallel Port

Revision: 5/7/ E Main Suite D Pullman, WA (509) Voice and Fax. Power jack 5-9VDC. Serial Port. Parallel Port Digilent Digilab 2 Reference Manual www.digilentinc.com Revision: 5/7/02 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview The Digilab 2 development board (the D2) features the

More information

MAX3804 Evaluation Kit. Evaluates: MAX3804. Features DC-Coupled EV Kit SMA Connectors for All High-Speed Inputs and Outputs Fully Assembled and Tested

MAX3804 Evaluation Kit. Evaluates: MAX3804. Features DC-Coupled EV Kit SMA Connectors for All High-Speed Inputs and Outputs Fully Assembled and Tested 19-2821; Rev 1; 2/09 General Description The MAX3804 DC-coupled evaluation kit (EV kit) simplifies evaluation of the MAX3804 12.5Gbps settable equalizer. The EV kit enables full testing of the device functions

More information

Digilab 2 Reference Manual

Digilab 2 Reference Manual 125 SE High Street Pullman, WA 99163 (509) 334 6306 (Voice and Fax) www.digilentinc.com PRELIMINARY Digilab 2 Reference Manual Revision: November 19, 2001 Overview The Digilab 2 (D2) development board

More information

S One SATA Host Connector S Two SATA Device Connectors

S One SATA Host Connector S Two SATA Device Connectors 19-5166; Rev 0; 2/10 MAX4986 Evaluation Kit General Description The MAX4986 evaluation kit (EV kit) provides a proven design to evaluate the MAX4986 SAS/SATA 2:1/1:2 multiplexer/demultiplexer. The EV kit

More information

R1, R2, R3 3 R4, R5, R6 3. Maxim Integrated Products 1

R1, R2, R3 3 R4, R5, R6 3. Maxim Integrated Products 1 19-2163; Rev 0; 9/01 MAX7428 Evaluation Kit General Description The MAX7428 evaluation kit (EV kit) is an assembled and tested circuit board that demonstrates the MAX7428 standard-definition video reconstruction

More information

MAX3161E Evaluation Kit. Evaluates: MAX3161E. Features

MAX3161E Evaluation Kit. Evaluates: MAX3161E. Features 19-0803; Rev 0; 4/07 MX3161E Evaluation Kit General Description The MX3161E evaluation kit (EV kit) circuit demonstrates the RS-232/RS-485/RS-422 multiprotocol transceivers using the MX3161E IC. The circuit

More information

S On-Board Clock Generator Capable of 33MHz and 16.5MHz. S Accessible Headers to All 8 Input/Output (I/O) Channels

S On-Board Clock Generator Capable of 33MHz and 16.5MHz. S Accessible Headers to All 8 Input/Output (I/O) Channels 19-5067; Rev 0; 11/09 MAX13055E Evaluation Kit General Description The MAX13055E evaluation kit (EV kit) provides a proven design to evaluate the MAX13055E 8-channel, bidirectional level translator. The

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-3093; Rev 0; 12/03 MAX3942 Evaluation Kit General Description The MAX3942 evaluation kit (EV kit) is an assembled demonstration board that provides electrical evaluation of the MAX3942 10.7Gbps modulator

More information

R23 R34 0. Maxim Integrated Products 1

R23 R34 0. Maxim Integrated Products 1 19-2360; Rev 0; 3/02 MAX7432 Evaluation Kit General Description The MAX7432 evaluation kit (EV kit) is an assembled and tested circuit board that demonstrates the MAX7428, MAX7430, and MAX7432 standard

More information

S Application Circuit with SATA Input/Output S Eye Diagram Test Circuit with SMA Inputs/ Outputs

S Application Circuit with SATA Input/Output S Eye Diagram Test Circuit with SMA Inputs/ Outputs 19-4953; Rev 0; 9/09 MAX4951AE Evaluation Kit General Description The MAX4951AE evaluation kit (EV kit) provides a proven design to evaluate the MAX4951AE dual-channel buffer. The EV kit contains four

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-5229; Rev 0; 4/10 MAX14885E Evaluation Kit General Description The MAX14885E evaluation kit (EV kit) is a fully assembled and tested surface-mount PCB that utilizes the MAX14885E device to implement

More information

C4 C9, C12 C18. Maxim Integrated Products 1

C4 C9, C12 C18. Maxim Integrated Products 1 General Description The LD module is an assembled and tested PC board intended for use with Maxim s low-voltage dataacquisition evaluation kits (V kits). The module uses Motorola s MCLFN microcontroller

More information

MAX1662 Evaluation Kit/Evaluation System

MAX1662 Evaluation Kit/Evaluation System 19-1306; Rev 0; 3/98 MAX1662 Evaluation Kit/Evaluation System General Description The MAX1662 evaluation system (EV system) consists of a MAX1662 evaluation kit (EV kit) and a companion Maxim SMBus Interface

More information

ABRIDGED DATA SHEET C6 C14 9 C17 C21, C27 C39, C42, C43, C45, C46, C50, C51, C54, C59, C61, C64, C65

ABRIDGED DATA SHEET C6 C14 9 C17 C21, C27 C39, C42, C43, C45, C46, C50, C51, C54, C59, C61, C64, C65 Rev 0; 8/08 ABRIDGED DATA SHEET General Description The MAXQ1103 evaluation kit (EV kit) is a proven platform to conveniently evaluate the capabilities of the MAXQ1103 secure microcontroller. The EV kit

More information

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document

F2MC MB90385 series Evaluation Board Documentation. Revision Date Comment V New document F2MC MB90385 series Evaluation Board Documentation Revision Date Comment V1.0 08.25.02 New document 1 Warranty and Disclaimer To the maximum extent permitted by applicable law, Fujitsu Microelectronics

More information

DS21S07AE. SCSI Terminator

DS21S07AE. SCSI Terminator DS21S07A SCSI Terminator www.maxim-ic.com GENERAL DESCRIPTION Fast SCSI and Ultra SCSI require the use of active terminations at both ends of every cable segment in a SCSI system with single-ended drivers

More information

S IEEE 802.3af/at-Compliant PSE Circuit. Maxim Integrated Products 1

S IEEE 802.3af/at-Compliant PSE Circuit. Maxim Integrated Products 1 19-5740; Rev 0; 1/11 MAX5971A Evaluation Kit General Description The MAX5971A evaluation kit (EV kit) is a fully assembled and tested surface-mount circuit board featuring an Ethernet single-port power-sourcing

More information

MAX3983 SMA Connector Evaluation Kit

MAX3983 SMA Connector Evaluation Kit 19-3340; Rev 0, 7/04 MAX3983 SMA Connector Evaluation Kit General Description The MAX3983 SMA Connector evaluation kit (EV Kit) is an assembled demonstration board that provides electrical evaluation of

More information

S Proven PCB Layout S Fully Assembled and Tested. Maxim Integrated Products 1

S Proven PCB Layout S Fully Assembled and Tested. Maxim Integrated Products 1 19-5059; Rev 1; 4/10 General Description The MAX4951B evaluation kit (EV kit) provides a proven design to evaluate the MAX4951BE dual-channel redriver. The EV kit contains four sections: application circuit,

More information

MAX5216PMB1 Peripheral Module

MAX5216PMB1 Peripheral Module 9-6; Rev 0; 5/ MAX56PMB Peripheral Module General Description The MAX56PMB peripheral module provides the necessary hardware to interface the MAX56 6-bit DAC to any system that utilizes PmodK-compatible

More information

MAX44000PMB1 Peripheral Module

MAX44000PMB1 Peripheral Module 19-6335; Rev 0; 5/12 MAX44000PMB1 Peripheral Module General Description The MAX44000PMB1 peripheral module provides the necessary hardware to interface the MAX44000 ambient and infrared proximity sensor

More information

DSTINIs400 Sockets Board Evaluation Kit

DSTINIs400 Sockets Board Evaluation Kit DSTINIs00 Sockets Board Evaluation Kit www.maxim-ic.com GENERAL DESCRIPTION The DSTINIm00 and DSTINIs00 are fully assembled and tested circuit boards that evaluate the DS0C00 network microcontroller. In

More information

MAX3160E Evaluation Kit. Evaluates: MAX3160E. Features

MAX3160E Evaluation Kit. Evaluates: MAX3160E. Features 9-076; Rev 0; 4/07 MAX60E Evaluation Kit General Description The MAX60E evaluation kit (EV kit) circuit demonstrates the RS-/RS-485/RS-4 multiprotocol transceivers using the MAX60E IC. The circuit can

More information

+Denotes lead(pb)-free and RoHS compliant. C76, C77, C83 C86

+Denotes lead(pb)-free and RoHS compliant. C76, C77, C83 C86 19-5061; Rev 0; 11/09 MAX11046 Evaluation Kit General Description The MAX11046 evaluation kit (EV kit) provides a proven design to evaluate the MAX11046 8-channel, 16-bit, simultaneous-sampling ADC. The

More information

JU1 JU6, JU15 JU20. Maxim Integrated Products 1

JU1 JU6, JU15 JU20. Maxim Integrated Products 1 9-9; Rev 0; /0 MAX9 Evaluation Kit General Description The MAX9 evaluation kit (EV kit) contains a flowthrough low-voltage differential signaling (LVDS) quad differential line driver (MAX9) and receiver

More information

AC/DC Adapter. Figure 1. Hardware Setup

AC/DC Adapter. Figure 1. Hardware Setup C8051F12X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F12x Development Kit contains the following items: C8051F120 Target Board Serial Adapter (RS232 to Target Board Debug Interface Protocol

More information

S U1 Configured for Filterless Output S U2 Configured for Filtered Output S Fully Assembled and Tested. Maxim Integrated Products 1

S U1 Configured for Filterless Output S U2 Configured for Filtered Output S Fully Assembled and Tested. Maxim Integrated Products 1 19-5505; Rev 0; 9/10 MAX98400B Evaluation Kit General Description The MAX98400B evaluation kit (EV kit) configures the MAX98400B Class D amplifier to drive 2x12W into a pair of 8I speakers in stereo mode

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 9-005; Rev ; /06 General Description The MAX557 evaluation kit (EV kit) is a fully assembled and tested surface-mount circuit board that evaluates the MAX557 digital potentiometer. Included software generates

More information

MAX186 Evaluation System/Evaluation Kit

MAX186 Evaluation System/Evaluation Kit -0; Rev. ; /0 MAX Evaluation System/Evaluation Kit General Description The MAX evaluation system (EV system) consists of a MAX evaluation kit (EV kit) connected to a Maxim 0C microcontroller (µc) module.

More information

Wi125 Evaluation Kit User Manual

Wi125 Evaluation Kit User Manual Wi125 Evaluation Kit User Manual Issue: R01 Available at Digi-Key www.digikey.com Bulletin SG172-DKUM Revision R01 Date 06 May 2010 Table of Contents 1. Introduction 3 2. Wi125 Evaluation Board Overview

More information

Universal RFID Socket board with RS232 / USB interface

Universal RFID Socket board with RS232 / USB interface Data Sheet UNI_RS232_USB.pdf 9 Pages Last Revised 03/09/09 Universal RFID Socket board with RS232 / USB interface The Universal RFID Socket board is the baseboard for the MicroRWD RFID reader modules from

More information

MAX14972 Evaluation Kit Evaluates: MAX14972

MAX14972 Evaluation Kit Evaluates: MAX14972 19-6165; Rev 0; 12/11 MAX14972 Evaluation Kit General Description The MAX14972 evaluation kit (EV kit) provides a proven design to evaluate the MAX14972 dual SuperSpeed USB 3.0 equalizer/redriver utilizing

More information

MAX17116Q Evaluation Kit Evaluates: MAX17116 in a 24-Pin TQFN Package

MAX17116Q Evaluation Kit Evaluates: MAX17116 in a 24-Pin TQFN Package 19-5846; Rev 0; 5/11 MAX17116Q Evaluation Kit General Description The MAX17116Q evaluation kit (EV kit) is a fully assembled and tested surface-mount PCB that evaluates the MAX17116 dual-output DC/DC power

More information

+Denotes lead-free and RoHS-compliant.

+Denotes lead-free and RoHS-compliant. 19-3107; Rev 0; 12/07 MAX1493 Evaluation Kit General Description The MAX1493 is a low-power, 4.5-digit analog-to-digital converter (ADC) with integrated liquid-crystal display (LCD) drivers. The MAX1493

More information

MAX14579E Evaluation Kit Evaluates: MAX14579E/MAX14579AE

MAX14579E Evaluation Kit Evaluates: MAX14579E/MAX14579AE 19-5995; Rev 0; 8/11 General Description The MAX14579E evaluation kit (EV kit) provides a proven design to evaluate the MAX14579E headset detection IC. The EV kit is designed to demonstrate the IC s headset

More information

MAX6642 Evaluation System/Evaluation Kit

MAX6642 Evaluation System/Evaluation Kit 19-3417; Rev 0; 9/04 MAX6642 Evaluation System/Evaluation Kit General Description The MAX6642 evaluation kit (EV kit) is an assembled and tested PC board with a mounted MAX6642. The EV kit allows full

More information

MAX5591 Evaluation Kit/Evaluation System

MAX5591 Evaluation Kit/Evaluation System 19-3366; Rev 2; 4/06 MAX5591 Evaluation Kit/Evaluation System General Description The MAX5591 evaluation system (EV system) (MAX5591EVCMOD2) is a complete 8-channel, 12-bit data-generation system consisting

More information

MAX11205PMB1 Peripheral Module

MAX11205PMB1 Peripheral Module 9-60; Rev 0; / MAX0PMB Peripheral Module General Description The MAX0PMB peripheral module provides the necessary hardware to interface the MAX0 6-bit ADC to any system that utilizes PmodK-compatible expansion

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 9-904; Rev 0; 7/0 MAX406 Evaluation Kit General Description The MAX406 evaluation kit (EV kit) is a fully assembled and tested circuit board that uses the MAX406 lownoise microphone amplifier IC designed

More information

+Denotes lead(pb)-free and RoHS compliant. FOUTL-, FOUTL+, FOU TR-, FO U TR+, V D D, P G N D

+Denotes lead(pb)-free and RoHS compliant. FOUTL-, FOUTL+, FOU TR-, FO U TR+, V D D, P G N D 19-4071; Rev 1; 9/09 MAX9736A Evaluation Kit General Description The MAX9736A evaluation kit (EV kit) is a fully assembled and tested printed-circuit board (PCB) that configures the MAX9736A Class D amplifier

More information

MAX6651 Evaluation Kit/Evaluation System

MAX6651 Evaluation Kit/Evaluation System 19-1980; Rev 1; 5/07 MAX6651 Evaluation Kit/Evaluation System General Description The MAX6651 evaluation kit (EV kit) is an assembled and tested printed-circuit board (PCB) that demonstrates the MAX6651

More information

MAX4951C Evaluation Kit Evaluates: MAX4951C

MAX4951C Evaluation Kit Evaluates: MAX4951C 19-5944; Rev 0; 6/11 MAX4951C Evaluation Kit General Description The MAX4951C evaluation kit (EV kit) provides a proven design to evaluate the MAX4951C dual-channel buffer. The EV kit contains four sections:

More information

MAX13335E Evaluation Kit Evaluates: MAX13335E/MAX13336E

MAX13335E Evaluation Kit Evaluates: MAX13335E/MAX13336E 19-6290; Rev 0; 4/12 General Description The MAX13335E evaluation kit (EV kit) is a fully assembled and tested PCB that evaluates the MAX13335E automotive audio receiver. The IC features a dual automotive

More information

MAX7311 Evaluation Kit. Evaluates: MAX7311

MAX7311 Evaluation Kit. Evaluates: MAX7311 19-4151; Rev 0; 5/08 General Description The MAX7311 evaluation kit (EV kit) provides a proven design to evaluate the MAX7311 I 2 C-compatible 16-bit I/O port expander, with each port configurable as input

More information

MAX3814 Evaluation Kit. Evaluates: MAX3814

MAX3814 Evaluation Kit. Evaluates: MAX3814 -04; Rev 0; /0 General Description The MAX4 evaluation kit (EV kit) simplifies evaluation of the MAX4 TMDS equalizer/driver. This EV kit allows for quick testing of the MAX4 with either a DVI or HDMI environment.

More information

Evaluate: MAX14589E/MAX14594E/ MAX MAX14589E/MAX14594E/ MAX14689 Evaluation Kits. Features and Benefits. General Description.

Evaluate: MAX14589E/MAX14594E/ MAX MAX14589E/MAX14594E/ MAX14689 Evaluation Kits. Features and Benefits. General Description. Evaluation Kits General Description The MAX14589E/MAX14594E/ evaluation kits (EV kits) are fully assembled and tested circuit boards that demonstrate the functionality of the MAX14589E, MAX14594E, and

More information

+Denotes lead(pb)-free and RoHS compliant. R1, R2, R3, R103

+Denotes lead(pb)-free and RoHS compliant. R1, R2, R3, R103 19-4544; Rev 0; 4/09 MAX6662 Evaluation Kit General Description The MAX6662 evaluation kit (EV kit) provides a proven design to evaluate the MAX6662 12-bit + sign temperature sensor with SPI -compatible

More information

+Denotes lead-free and RoHS compliant. C38 C43, C62, C64, C65, C66, C68, C70, C72, C73, C74, C76 C44 C49, C67, C75 C63, C69, C71, C77

+Denotes lead-free and RoHS compliant. C38 C43, C62, C64, C65, C66, C68, C70, C72, C73, C74, C76 C44 C49, C67, C75 C63, C69, C71, C77 19-4354; Rev 0; 10/08 MAX17108 Evaluation Kit General Description The MAX17108 evaluation kit (EV kit) is a fully assembled and tested surface-mount PCB that evaluates the MAX17108 10-channel, high-voltage

More information

Megawin 8051 ISP via COM Port

Megawin 8051 ISP via COM Port Megawin 8051 ISP via COM Port User Manual By Vincent Y. C. Yu This document information is the intellectual property of Megawin Technology Co., Ltd. 1 Contents 1 What is ISP... 3 2 Chip Configuration for

More information

MAX31723PMB1 Peripheral Module

MAX31723PMB1 Peripheral Module 19-6332; Rev 0; 5/12 MAX31723PMB1 Peripheral Module General Description The MAX31723PMB1 peripheral module provides the necessary hardware to interface the MAX31723 digital thermometer and thermostat to

More information

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing

CMS-8GP32. A Motorola MC68HC908GP32 Microcontroller Board. xiom anufacturing CMS-8GP32 A Motorola MC68HC908GP32 Microcontroller Board xiom anufacturing 2000 717 Lingco Dr., Suite 209 Richardson, TX 75081 (972) 994-9676 FAX (972) 994-9170 email: Gary@axman.com web: http://www.axman.com

More information

INSTALL.EXE. Maxim Integrated Products 1

INSTALL.EXE. Maxim Integrated Products 1 9-258; Rev 0; 9/02 MAX06 Evaluation Kit General Description The MAX06 evaluation kit (EV kit) is designed to evaluate the MAX06. The MAX06 is an 8-bit four-channel (two-differential-channel) ADC with a

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 9-2479; Rev 0; 6/02 MAX28 Evaluation Kit General Description The MAX28 evaluation kit (EV kit) is designed to evaluate the MAX28. The MAX28 is a 2-bit, 2-channel (six differential-channel) ADC with a 2-wire

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

Digilab 2 XL Reference Manual

Digilab 2 XL Reference Manual 125 SE High Street Pullman, WA 99163 (509) 334 6306 (Voice and Fax) www.digilentinc.com PRELIMINARY Digilab 2 XL Reference Manual Revision: May 7, 2002 Overview The Digilab 2 XL (D2XL) development board

More information

DS3153DK Triple DS3/E3/STS-1 LIU Demo Kit

DS3153DK Triple DS3/E3/STS-1 LIU Demo Kit DK Triple DS3/E3/STS-1 LIU Demo Kit www.maxim-ic.com GENERAL DESCRIPTION The DK is an easy-to-use evaluation kit for the triple DS3/E3/STS-1 LIU. A surfacemounted and careful layout of the analog signal

More information

S Low-Power Shutdown Input S Fully Assembled and Tested. Maxim Integrated Products 1

S Low-Power Shutdown Input S Fully Assembled and Tested. Maxim Integrated Products 1 19-5599; Rev 0; 10/10 MAX98303 Evaluation Kit General Description The MAX98303 evaluation kit (EV kit) is a fully assembled and tested PCB that evaluates the MAX98303 stereo 3.1W Class D amplifier in a

More information

DS3154DK Quad DS3/E3/STS-1 LIU Demo Kit

DS3154DK Quad DS3/E3/STS-1 LIU Demo Kit DK Quad DS3/E3/STS-1 LIU Demo Kit www.maxim-ic.com GENERAL DESCRIPTION The DK is an easy-to-use evaluation kit for the quad DS3/E3/STS-1 LIU. A surfacemounted and careful layout of the analog signal traces

More information

S Convenient USB Interface. S Single-Supply Operation through the USB S Option for External Power Supply for the Boost Regulator

S Convenient USB Interface. S Single-Supply Operation through the USB S Option for External Power Supply for the Boost Regulator 19-5507; Rev 0; 9/10 MAX11835 Evaluation System General Description The MAX11835 evaluation system (EV system) demonstrates a complete solution to drive single and multilayer piezo actuators to create

More information

UM ISP1181x Microcontroller Eval Kit. Document information. Keywords isp1181a, isp1181b, usb, universal serial bus, peripheral

UM ISP1181x Microcontroller Eval Kit. Document information. Keywords isp1181a, isp1181b, usb, universal serial bus, peripheral Rev. 0 February 007 User manual Document information Info Content Keywords ispa, ispb, usb, universal serial bus, peripheral Abstract This document explains the ISPx microcontroller eval kit. This kit

More information

DS3174DK DS3/E3 Single-Chip Transceiver Demo Kit

DS3174DK DS3/E3 Single-Chip Transceiver Demo Kit www.maxim-ic.com GENERAL DESCRIPTION The DS3174DK is an easy-to-use demo kit for the DS3174. A surface-mounted DS3174 and careful layout of the analog signal traces provide maximum signal integrity to

More information

PART. Maxim Integrated Products 1

PART. Maxim Integrated Products 1 9-05; Rev 0; 5/0 General Description The MAX6654 evaluation system (EV system) consists of a MAX6654 evaluation kit (EV kit) and a companion system management bus (SMBus ) interface board. The MAX6654

More information

MAX9611PMB1 Peripheral Module

MAX9611PMB1 Peripheral Module 9-68; Rev 0; 5/ General Description The MAX96PMB peripheral module provides the necessary hardware to interface the MAX96 currentsense amplifier with -bit ADC and op amp, along with the MAX580 8-bit DAC,

More information

DS1070K EconOscillator Programming Kit

DS1070K EconOscillator Programming Kit Rev 0; 5/04 DS070K EconOscillator Programming Kit General Description The DS070K EconOscillator programming kit is a complete hardware/software solution for programming Dallas Semiconductor s 2-wire EconOscillator

More information

MAX5097A Evaluation Kit. Evaluates: MAX5097A

MAX5097A Evaluation Kit. Evaluates: MAX5097A 19-0718; Rev 0; 1/07 MAX5097A Evaluation Kit General Description The MAX5097A evaluation kit (EV kit) demonstrates the MAX5097A in a standard application circuit demonstrating high efficiency. The EV kit

More information

MAX1707 Evaluation Kit/Evaluation System

MAX1707 Evaluation Kit/Evaluation System 19-3904; Rev 0; 12/05 MAX1707 Evaluation Kit/Evaluation System General Description The MAX1707 evaluation system (EV system) includes a MAX1707 evaluation kit (EV kit) and a Maxim command module (CMODUSB).

More information

MAX4899AE Evaluation Kit. Evaluates: MAX4899AE/MAX4899E

MAX4899AE Evaluation Kit. Evaluates: MAX4899AE/MAX4899E 19-4025; Rev 0; 1/08 General Description The MAX4899AE evaluation kit (EV kit) provides a proven design to evaluate the MAX4899AE USB 2.0 high-speed, fault-tolerant 4:1 multiplexer. The EV kit routes a

More information

DIY KIT 123. ATMEL 89xxxx PROGRAMMER

DIY KIT 123. ATMEL 89xxxx PROGRAMMER INTRODUCTION This kit is a powerful programmer for the Atmel 8051 family of microcontrollers. It supports the following devices: 89C1051, 89C2051 and 89C4051 89C51, 89LV51 89C52, 89LV52 89C55, 89LV55 89S8252,

More information

AC/DC. Adapter. Serial. Adapter. Figure 1. Hardware Setup

AC/DC. Adapter. Serial. Adapter. Figure 1. Hardware Setup C8051F35X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F35x Development Kit contains the following items: C8051F350 Target Board Serial Adapter (RS232 to Target Board Debug Interface Protocol

More information

MAX6966 Evaluation Kit/Evaluation System

MAX6966 Evaluation Kit/Evaluation System 19-3999; Rev 1; 5/08 MAX6966 Evaluation Kit/Evaluation System General Description The MAX6966 evaluation (EV) kit is an assembled and tested PCB that demonstrates the capabilities of the MAX6966 constant-current

More information

MAX6960 Evaluation Kit/Evaluation System

MAX6960 Evaluation Kit/Evaluation System 9-85; Rev 0; 0/05 Evaluation Kit/Evaluation System General Description The evaluation kit (EV kit) provides a proven design to evaluate the 8 x 8 graphic LED tile display driver. The EV kit board contains

More information

CPU369-Module Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany

CPU369-Module Documentation. Fujitsu Microelectronics Europe GmbH Am Siebenstein Dreieich-Buchschlag, Germany CPU369-Module Documentation Fujitsu Microelectronics Europe GmbH Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany History Revision Date Comment V1.0 08.03.01 New Document V1.1 17.10.03 Modifications

More information

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter C8051F38X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F38x Development Kit contains the following items: C8051F380 Target Board C8051Fxxx Development Kit Quick-start Guide Silicon Laboratories

More information

CSCI 6907 PROJECT PROPOSAL LIGHTS OUT MANAGEMENT

CSCI 6907 PROJECT PROPOSAL LIGHTS OUT MANAGEMENT CSCI 6907 PROJECT PROPOSAL LIGHTS OUT MANAGEMENT JAMES LEE JAMESLEE@GWU.EDU. Project Abstract I am a system administrator who manages hundreds of Unix systems. One of the essential tools to ensure I don

More information

S Measures Current on a Fixed 400mA Range S On-Board LCD Display of Conversion Results S Proven PCB Layout S Fully Assembled and Tested

S Measures Current on a Fixed 400mA Range S On-Board LCD Display of Conversion Results S Proven PCB Layout S Fully Assembled and Tested 19-5204; Rev 0; 4/10 MAX134 Evaluation Kit General Description The MAX134 evaluation kit (EV kit) provides a proven design to evaluate the MAX134 3¾-digit digital multimeter. The EV kit measures volts,

More information

Evaluates: EV Kits Requiring SPI/ Parallel to USB Interface. INTF3000 Interface Board. General Description. Quick Start. Benefits and Features

Evaluates: EV Kits Requiring SPI/ Parallel to USB Interface. INTF3000 Interface Board. General Description. Quick Start. Benefits and Features INTF3000 Interface Board Evaluates: EV Kits Requiring SPI/ Parallel to USB Interface General Description The INTF3000 interface board is designed to facilitate the interfacing of Maxim s evaluation kit

More information

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter C8051F32X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F32x Development Kit contains the following items: C8051F320 Target Board C8051Fxxx Development Kit Quick-Start Guide C8051F32x Development

More information

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P Devices Included in this Data sheet: KPIC-0818P Features: Carefully designed prototyping area Accepts 8 pin PIC12 series micro-controllers Accepts 14 and 18 Pin PIC16 series Accepts some 8,14 and 18 pin

More information

DS3112RD DS3/E3 Multiplexer Reference Design

DS3112RD DS3/E3 Multiplexer Reference Design DS3112RD DS3/E3 Multiplexer Reference Design www.maxim-ic.com GENERAL DESCRIPTION The DS3112RD is a reference design for the DS3112 DS3/E3 framer/mux and the DS3150 DS3/E3 LIU. Both devices are surface

More information

MAX197 Evaluation Kit. Evaluates: MAX197/MAX199. Features

MAX197 Evaluation Kit. Evaluates: MAX197/MAX199. Features 9-0398; Rev ; 7/95 MAX97 Evaluation Kit General Description The MAX97 evaluation system (EV system) is a complete, low-cost, 8-channel data-acquisition system consisting of a MAX97 evaluation kit (EV kit)

More information

MAX6620 Evaluation Kit/Evaluation System

MAX6620 Evaluation Kit/Evaluation System 19-4069; Rev 0; 3/08 MAX6620 Evaluation Kit/Evaluation System General Description The MAX6620 evaluation system (MAX6620EVCMAXQU+) consists of the MAX6620 evaluation kit (MAX6620EVKIT+) and the Maxim CMAXQUSB+

More information

MCP2120/MCP2150 DEVELOPER S KIT USER S GUIDE

MCP2120/MCP2150 DEVELOPER S KIT USER S GUIDE MCP2120/MCP2150 DEVELOPER S KIT USER S GUIDE Information contained in this publication regarding device applications and the like is intended by way of suggestion only. No representation or warranty is

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 9-20; Rev 0; /0 MAX5 Evaluation Kit General Description The MAX5 evaluation system (EV system) is a complete, eight channel data-acquisition system consisting of a MAX5 evaluation kit (EV kit) and a Maxim

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-1883; Rev 1; 2/07 MAX1799 Evaluation System/ General Description The MAX1799 evaluation system (EV system) consists of a MAX1799 evaluation kit (EV kit) and a companion Maxim CMAXQUSB board. The MAX1799

More information

Nios Embedded Processor Development Board

Nios Embedded Processor Development Board Nios Embedded Processor Development Board July 2003, ver. 2.2 Data Sheet Introduction Development Board Features Functional Overview This data sheet describes the features and functionality of the Nios

More information

MAX544X Evaluation Kit Evaluates: MAX5441 MAX5444

MAX544X Evaluation Kit Evaluates: MAX5441 MAX5444 19-6314; Rev 0; 5/12 MAX544X Evaluation Kit General Description The MAX544X evaluation kit (EV kit) provides a proven design to evaluate the MAX5441 MAX5442 serial-input, voltage-output, 16-bit digital-to-analog

More information

AVR-P development board Users Manual

AVR-P development board Users Manual AVR-P40-8515 development board Users Manual All boards produced by Olimex are ROHS compliant Revision A, January 2002 Copyright(c) 2009, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: The AVR Microcontroller

More information

Cmod Board Reference Manual. Overview. 1 Functional Description. Revised October 26, 2012 This manual applies to the Cmod rev. D

Cmod Board Reference Manual. Overview. 1 Functional Description. Revised October 26, 2012 This manual applies to the Cmod rev. D 1300 Henley Court Pullman, WA 99163 509.334.6306 www.digilentinc.com Cmod Board Reference Manual Revised October 26, 2012 This manual applies to the Cmod rev. D Overview Cmod boards combine a Xilinx CPLD,

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-2881; Rev 0; 6/03 General Description The MAX1543 evaluation kit (EV kit) is a fully assembled and tested surface-mount circuit board that provides the voltages and features required for active-matrix,

More information

NX-51 V2 plus experiment board Documentation 1. NX-51 V2 plus. P89V51RD2 microcontroller Eexperiment board. Documentation

NX-51 V2 plus experiment board Documentation 1. NX-51 V2 plus. P89V51RD2 microcontroller Eexperiment board. Documentation NX- V plus experiment board Documentation NX- V plus PVRD microcontroller Eexperiment board Documentation NX- V plus experiment board Documentation NX- V plus experiment board Documentation. About PVRD

More information