December 2002, ver. 1.0 Application Note 285. This document describes the Excalibur web server demonstration design and includes the following topics:
|
|
|
- Theresa James
- 10 years ago
- Views:
Transcription
1 Excalibur Web Server Demonstration December 2002, ver. 1.0 Application Note 285 Introduction This document describes the Excalibur web server demonstration design and includes the following topics: Design Overview Installation Run the Design 1 The design assumes that you have a basic level of knowledge of web servers. Design Overview f For important late-breaking information on this design, you must read the readme.txt file in the project root directory. The web server demonstration design is a simple web server running on top of the Nios Ethernet Development Kit (NEDK) plugs library. The design runs on the EPXA10 development board and serves web pages, which are stored in flash memory on the board. The design highlights the features of the Excalibur EPXA10 embedded stripe and the ability to incorporate soft intellectual property into the FPGA array. Figure 1 shows the design block diagram. Altera Corporation 1 AN
2 Figure 1. Block Diagram SDRAM EPXA10 Development Board SDRAM Controller UART RS-232 EPXA10 Device Flash PC 10/100 Ethernet MAC 10/100 PHY Device RJ-45 The design serves both static and dynamic web pages. The web server runs on top of the plugs library, which handles the transmission control protocol/internet protocol (TCP/IP). On top of the plugs library the web server embedded software parses incoming HTTP requests and responds with the requested web page. Web pages are stored in flash using the way over simplified file system (WOSFS). After an HTTP request is received, the requested page is retrieved from WOSFS and sent back to the host PC as an HTTP response. The web server assumes that all HTTP requests are GET requests. The design code runs out of on-chip SRAM. TCP/IP packets are transmitted and received by the Ethernet MAC MegaCore funciton over the on-board PHY device and RJ-45 connector. The design connects the Ethernet MAC to bus logic in the FPGA. The Ethernet MAC AHB master port buffers TCP/IP packets in the SDRAM via the PLD-to-stripe bridge. The processor configures the Ethernet MAC via its AHB slave port over the stripe-to-pld bridge. Status information is sent out of the UART to the PC via the RS232 port. In addition, flash programming occurs over the ByteBlasterMV download cable, which is connected to the EPXA10 development board JTAG header. 2 Altera Corporation
3 Installation This sections details the hardware and software requirements and the design directory structure. Hardware & Software Requirements The web server demonstration design requires the following hardware and software: EPXA10 development board Quartus II software version 2.2 ARM Developer Suite for Altera (Altera ADS-Lite) software version 1.1 Altera 10/100 Ethernet MAC MegaCore function version OpenCore Plus evaluation license Terminal Program, e.g., Minicom or Hyperterminal Directory Structure To install the web server demonstration design, unzip an285.zip into the installation directory of your choice. Figure 2 shows the directory structure. Figure 2. Directory Structure webserver software Contains the embedded software source for the design; this includes the source for the plugs library. inc Contains project header files. lib Contains the plugs library and other functions used in the design. web Contains the web pages. altera_ahb_ext_irq_wire Contains a simple SOPC Builder component that is needed to handle the multiple interrupts for the Ethernet MAC. Altera Corporation 3
4 Run the Design Running the web server demonstration design involves the following steps: 1. Compile the FPGA Hardware. 2. Compile the Embedded Software. 3. Configure the EPXA10 Development Board. 4. Setup the Host PC. Compile the FPGA Hardware The project root directory includes the default hardware image for the web server demonstration design, webserver.sbi. If you have no changes to the hardware design, you need not recompile, so proceed to Compile the Embedded Software on page 4. If you need to change the hardware design, use the SOPC Builder for design entry. f For more information on how to use the SOPC Builder to build systems, refer to If you perform a hardware recompilation, you must obtain an OpenCore Plus license to re-synthesize and place-and-route the Ethernet MAC. f For an OpenCore Plus license, refer to Compile the Embedded Software The design has the following default TCP/IP settings: Development board IP address: Development board subnet mask: Gateway address: DNS address: If the default settings remain unchanged, or if you are connecting to the board directly with a crossover cable, proceed to Configure the EPXA10 Development Board on page 5. 4 Altera Corporation
5 If the default TCP/IP settings are not acceptable for your network, perform an embedded software build. To build the embedded software, perform the following steps. 1. Run the Quartus II software and open the webserver.quartus project. 2. Change the IP address for the EPXA10 development board to the desired settings by modifying the following lines in the \software\web.c file: settings.nameserver_ip_address = nm_ip2n(137,57,109,1); settings.subnet_mask = nm_ip2n(255,255,255,0); settings.gateway_ip_address = nm_ip2n(137,57,193,254); settings.ip_address = nm_ip2n(137,57,193,114); 3. To build the design file, choose Start Software Build (Processing menu). Configure the EPXA10 Development Board You must configure the EPXA10 Development board to work with this design. To setup the jumpers and connect the development board to the host PC and network, perform the following steps: Altera Corporation 5
6 1. To configure the EPXA10 development board to boot from flash and enable the 78Q2120 Ethernet PHY device MII clocks to the EPXA10 device, adjust the jumper settings. Table 1 shows the jumper settings. Table 1. Jumper Settings Jumper Setting JP1 On JP2 Connect 2 to 3 JP3 Connect 2 to 3 JP4 Connect 2 to 3 JP5 Connect 2 to 3 JP6 Connect 2 to 3 JP14 JP15 JP16 JP17 JP18 MSEL0 Connect 1 to 2 MSEL1 Connect 1 to 2 JP31 JP32 JP33 JSELECT Connect 1 to 2 DEBUG_EN Connect 2 to 3 BOOT_FLASH Connect 2 to 3 EN_SELECT JP40 Connect 2 to 3 JP41 Connect 2 to 3 U179 Connect 2 to 3 JP50 Connect 2 to 3 JP51 Connect 2 to 3 JP52 Connect 2 to 3 JP53 Connect 2 to 3 JP54 Connect 2 to 3 JP55 Connect 2 to 3 JP57 JP58 3V3 JP59 3V3 JP_AGND2GND Connect 1 to 2 6 Altera Corporation
7 2. Connect a straight-through Ethernet cable from the EPXA10 board to a network hub. Alternatively, you can use a crossover Ethernet cable to connect the EPXA10 board directly to your host PC. 3. Connect a ByteblasterMV cable from your PC s parallel port to the MasterBlaster header on the EPXA10 development board. 4. Connect null modem cable to the RS-232 P2 port (the one in the upper left hand corner) on the EPXA10 development board. Setup the Host PC The Web Server Demo Design must communicate with a host PC, for flash programming, to display debug information, and serve web pages. To setup the host PC, perform the following steps: 1. Start a terminal session with the following settings: Baud 8 Data bits No Parity 1 stop bit No Flow control 1 In this design, the UART presents status information. 2. To download the combined PLD and software image, webserver_flash.hex, to the EPXA10 development board flash, use the prog_hw.bat file. 1 If you have not performed JTAG programming on the host PC before, start the JTAG server by typing the following command at a command prompt: jtagconfig -add byteblastermv lpt1r 3. Launch a web browser and enter the board IP address in the URL field. For example Altera Corporation 7
8 101 Innovation Drive San Jose, CA (408) Applications Hotline: (800) 800-EPLD Literature Services: Copyright 2002 Altera Corporation. All rights reserved. Altera, The Programmable Solutions Company, the stylized Altera logo, specific device designations, and all other words and logos that are identified as trademarks and/or service marks are, unless noted otherwise, the trademarks and service marks of Altera Corporation in the U.S. and other countries. All other product or service names are the property of their respective holders. Altera products are protected under numerous U.S. and foreign patents and pending applications, mask work rights, and copyrights. Altera warrants performance of its semiconductor products to current specifications in accordance with Altera s standard warranty, but reserves the right to make changes to any products and services at any time without notice. Altera assumes no responsibility or liability arising out of the application or use of any information, product, or service described herein except as expressly agreed to in writing by Altera Corporation. Altera customers are advised to obtain the latest version of device specifications before relying on any published information and before placing orders for products or services. 8 Altera Corporation
Digitale Signalverarbeitung mit FPGA (DSF) Soft Core Prozessor NIOS II Stand Mai 2007. Jens Onno Krah
(DSF) Soft Core Prozessor NIOS II Stand Mai 2007 Jens Onno Krah Cologne University of Applied Sciences www.fh-koeln.de [email protected] NIOS II 1 1 What is Nios II? Altera s Second Generation
Debugging Network Communications. 1 Check the Network Cabling
Debugging Network Communications Situation: you have a computer and your NetBurner device on a network, but you cannot communicate between the two. This application note provides a set of debugging steps
MAX II ISP Update with I/O Control & Register Data Retention
MAX II ISP Update with I/O Control & Register Data Retention March 2006, ver 1.0 Application Note 410 Introduction MAX II devices support the real-time in-system mability (ISP) feature that allows you
13. Publishing Component Information to Embedded Software
February 2011 NII52018-10.1.0 13. Publishing Component Information to Embedded Software NII52018-10.1.0 This document describes how to publish SOPC Builder component information for embedded software tools.
Interfacing an HTML Form to the ez80f91 MCU
Application Note Interfacing an HTML Form to the ez80f91 MCU AN020803-0708 Abstract This application note demonstrates how to use Zilog s ez80f91 microcontroller unit (MCU) as a web server to send electronic
PROFINET IRT: Getting Started with The Siemens CPU 315 PLC
PROFINET IRT: Getting Started with The Siemens CPU 315 PLC AN-674 Application Note This document shows how to demonstrate a working design using the PROFINET isochronous real-time (IRT) device firmware.
BitBlaster Serial Download Cable
BitBlaster Serial Download Cable February 2002, ver. 4.3 Data Sheet Features Allows PC and UNIX workstation users to perform the following functions: Program MAX 9000, MAX 7000S, MAX 7000A, and MAX 3000A
Engineering Change Order (ECO) Support in Programmable Logic Design
White Paper Engineering Change Order (ECO) Support in Programmable Logic Design A major benefit of programmable logic is that it accommodates changes to the system specification late in the design cycle.
In-System Programmability
In-System Programmability in MAX Devices September 2005, ver. 1.5 Application Note 95 Introduction Features & Benefits MAX devices are programmable logic devices (PLDs), based on the Altera Multiple Array
White Paper Increase Flexibility in Layer 2 Switches by Integrating Ethernet ASSP Functions Into FPGAs
White Paper Increase Flexibility in Layer 2 es by Integrating Ethernet ASSP Functions Into FPGAs Introduction A Layer 2 Ethernet switch connects multiple Ethernet LAN segments. Because each port on the
Creating a Webserver on the Nios development kit Stratix Edition board Enoch Hwang
Creating a Webserver on the Nios development kit Stratix Edition board Enoch Hwang A) Creating the Nios System (Nios v3.2 can only work with Quartus II v5.1 and below. Need to also remove Nios II completely.)
3.1 RS-232/422/485 Pinout:PORT1-4(RJ-45) RJ-45 RS-232 RS-422 RS-485 PIN1 TXD PIN2 RXD PIN3 GND PIN4 PIN5 T+ 485+ PIN6 T- 485- PIN7 R+ PIN8 R-
MODEL ATC-2004 TCP/IP TO RS-232/422/485 CONVERTER User s Manual 1.1 Introduction The ATC-2004 is a 4 Port RS232/RS485 to TCP/IP converter integrated with a robust system and network management features
eprism Email Security Suite
Guide eprism 2505 eprism Email Security Suite 800-782-3762 www.edgewave.com 2001 2012 EdgeWave. All rights reserved. The EdgeWave logo is a trademark of EdgeWave Inc. All other trademarks and registered
Altera SoC Embedded Design Suite User Guide
Altera SoC Embedded Design Suite User Guide Subscribe ug-1137 101 Innovation Drive San Jose, CA 95134 www.altera.com TOC-2 Contents Introduction to SoC Embedded Design Suite... 1-1 Overview... 1-1 Linux
1-Port Wireless USB 2.0 Print Server Model # APSUSB201W. Quick Installation Guide. Ver. 2A
1-Port Wireless USB 2.0 Print Server Model # APSUSB201W Quick Installation Guide Ver. 2A Section 1 Step 1Connect one end of the Ethernet cable to the RJ-45 port of the Print Server and attach the other
Load Balancing. Outlook Web Access. Web Mail Using Equalizer
Load Balancing Outlook Web Access Web Mail Using Equalizer Copyright 2009 Coyote Point Systems, Inc. Printed in the USA. Publication Date: January 2009 Equalizer is a trademark of Coyote Point Systems
Pre-tested System-on-Chip Design. Accelerates PLD Development
Pre-tested System-on-Chip Design Accelerates PLD Development March 2010 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com 1 Pre-tested
Altera Programming Hardware
Altera Programming Hardware September 2005, er. 5.3 Data Sheet General Description Altera offers a ariety of hardware to program and configure Altera deices. For conentional deice programming, in-system
USB-Blaster Download Cable User Guide
USB-Blaster Download Cable User Guide Subscribe UG-USB81204 101 Innovation Drive San Jose, CA 95134 www.altera.com TOC-2 Contents Introduction to USB-Blaster Download Cable...1-1 USB-Blaster Revision...1-1
Video and Image Processing Suite
Video and Image Processing Suite January 2006, Version 6.1 Errata Sheet This document addresses known errata and documentation issues for the MegaCore functions in the Video and Image Processing Suite,
Connecting the DG-102S VoIP Gateway to your network
Contents of Package: DG-102S VoIP Station Gateway Power adapter CD-ROM, including User s Manual Quick Install Guide Requirements: RS-232 Console Cable Two RJ-45 CAT-5 Straight-Through Cables For more information
8-bit Microcontroller. Application Note. AVR461: Quick Start Guide for the Embedded Internet Toolkit. Introduction. System Requirements
AVR461: Quick Start Guide for the Embedded Internet Toolkit Introduction Congratulations with your AVR Embedded Internet Toolkit. This Quick-start Guide gives an introduction to using the AVR Embedded
CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs
CS 326e F2002 Lab 1. Basic Network Setup & Ethereal Time: 2 hrs Tasks: 1 (10 min) Verify that TCP/IP is installed on each of the computers 2 (10 min) Connect the computers together via a switch 3 (10 min)
Data Transfer between Serial Link and TCP/IP Link Using ez80f91 MCU
Application Note Data Transfer between Serial Link and TCP/IP Link Using ez80f91 MCU AN021904 0808 Abstract This application note describes Zilog s ez80 - based Serial-to-TCP and TCP-to-Serial communicator
Quartus II Software Download and Installation Quick Start Guide
Quartus II Software Download and Installation Quick Start Guide 2013 Altera Corporation. All rights reserved. ALTERA, ARRIA, CYCLONE, HARDCOPY, MAX, MEGACORE, NIOS, QUARTUS and STRATIX words and logos
Prestige 314 Read Me First
Prestige 314 Read Me First Console WAN 10M PORT Prestige Rear Panel Connections CONNECTION Use an RS-232 console cable. Use the cable that came with your broadband modem. LAN 10/100M Port Number COMPUTER
White Paper Streaming Multichannel Uncompressed Video in the Broadcast Environment
White Paper Multichannel Uncompressed in the Broadcast Environment Designing video equipment for streaming multiple uncompressed video signals is a new challenge, especially with the demand for high-definition
User s Manual TCP/IP TO RS-232/422/485 CONVERTER. 1.1 Introduction. 1.2 Main features. Dynamic DNS
MODEL ATC-2000 TCP/IP TO RS-232/422/485 CONVERTER User s Manual 1.1 Introduction The ATC-2000 is a RS232/RS485 to TCP/IP converter integrated with a robust system and network management features designed
Wireless G Broadband quick install
Wireless G Broadband Router quick install guide Model 503693 INT-503693-QIG-0608-02 Thank you for purchasing the INTELLINET NETWORK SOLUTIONS Wireless G Broadband Router, Model 503693. This quick install
Hyper-V Server 2008 Setup and Configuration Tool Guide
Hyper-V Server 2008 Setup and Configuration Tool Guide Microsoft Corporation Published: October 2008 Author: Cynthia Nottingham Abstract This guide will help you set up and configure Microsoft Hyper-V
TFTP Firmware upgrade
Application Note 301 Revision 3, October 2011 This Application Note describes how to upgrade the firmware of your proconx unit using the TFTP method. Prerequisites File transfer utility (Tftpd32.exe, version
Getting Started with the Xilinx Zynq- 7000 All Programmable SoC Mini-ITX Development Kit
Getting Started with the Xilinx Zynq- 7000 All Programmable SoC Mini-ITX Development Kit Table of Contents ABOUT THIS GUIDE... 3 ADDITIONAL DOCUMENTATION... 3 ADDITIONAL SUPPORT RESOURCES... 3 INTRODUCTION...
Using Nios II Floating-Point Custom Instructions Tutorial
Using Nios II Floating-Point Custom Instructions Tutorial 101 Innovation Drive San Jose, CA 95134 www.altera.com TU-N2FLTNGPNT-2.0 Copyright 2010 Altera Corporation. All rights reserved. Altera, The Programmable
NIOS II Based Embedded Web Server Development for Networking Applications
NIOS II Based Embedded Web Server Development for Networking Applications 1 Sheetal Bhoyar, 2 Dr. D. V. Padole 1 Research Scholar, G. H. Raisoni College of Engineering, Nagpur, India 2 Professor, G. H.
DSA-1000 / PRT-1000 Device Server / Thermal Printer
LevelOne DSA-1000 / PRT-1000 Device Server / Thermal Printer User Manual V2.0 TABLE OF CONTENTS 1. INTRODUCTION...- 3-2. DEVICE OVERVIEW...- 7-3. HARDWARE SETUP...- 10-4. SYSTEM CONFIGURATION...- 12 -,
Voice Over Internet Protocol (VoIP) Configuration
(VoIP) Configuration ENGINEERING REPORT No: 02-003 Introduction This report describes interfacing the IPCS VoIP Gateway Model EGW-902 to an ESTeem Model 192E Wireless Ethernet radio modem in a demonstration
TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL
TCP/IP MODULE CA-ETHR-A INSTALLATION MANUAL w w w. c d v g r o u p. c o m CA-ETHR-A: TCP/IP Module Installation Manual Page Table of Contents Introduction...5 Hardware Components... 6 Technical Specifications...
USER GUIDE. Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6
KRAMER ELECTRONICS LTD. USER GUIDE Ethernet Configuration Guide (Lantronix) P/N: 2900-300321 Rev 6 Contents 1 Connecting to the Kramer Device via the Ethernet Port 1 1.1 Connecting the Ethernet Port Directly
Load Balancing ContentKeeper With RadWare
Load Balancing ContentKeeper With RadWare The RadWare Fireproof may be used with ContentKeeper to provide load balanced and redundant Internet content filtering for your network. The RadWare FireProof
Qsys System Design Tutorial
2015.05.04 TU-01006 Subscribe This tutorial introduces you to the Qsys system integration tool available with the Quartus II software. This tutorial shows you how to design a system that uses various test
OfficeConnect Internet Firewall 25 Internet Firewall DMZ. QuickStart Guide (3C16770, 3C16771)
OfficeConnect Internet Firewall 25 Internet Firewall DMZ QuickStart Guide (3C16770, 3C16771) Checking Package Contents Getting Started Thank you for purchasing the OfficeConnect Internet Firewall. The
Using Altera MAX Series as Microcontroller I/O Expanders
2014.09.22 Using Altera MAX Series as Microcontroller I/O Expanders AN-265 Subscribe Many microcontroller and microprocessor chips limit the available I/O ports and pins to conserve pin counts and reduce
Nios II Software Developer s Handbook
Nios II Software Developer s Handbook Nios II Software Developer s Handbook 101 Innovation Drive San Jose, CA 95134 www.altera.com NII5V2-13.1 2014 Altera Corporation. All rights reserved. ALTERA, ARRIA,
User Manual Revision 1.400 English Converter / Adapter Ethernet to RS232 / RS485 (Order Code: HD67038-2 HD67038-2-M HD67038-25 HD67038-25-M)
Document code: MN67038-2_ENG Revision 1.400 Page 1 of 25 User Manual Revision 1.400 English Converter / Adapter Ethernet to RS232 / RS485 (Order Code: HD67038-2 HD67038-2-M HD67038-25 HD67038-25-M) for
White Paper Military Productivity Factors in Large FPGA Designs
White Paper Introduction Changes in technology and requirements are leading to FPGAs playing larger roles in defense electronics designs, and consequently are creating both opportunities and risks. The
Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers. User s Guide
Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware Catalog Drivers User s Guide Developing an Application on Core8051s IP-Based Embedded Processor System Using Firmware
MasterBlaster Serial/USB Communications Cable User Guide
MasterBlaster Serial/USB Communications Cable User Guide 101 Innovation Drive San Jose, CA 95134 www.altera.com Software Version: 80 Document Version: 1.1 Document Date: July 2008 Copyright 2008 Altera
1. Overview of Nios II Embedded Development
May 2011 NII52001-11.0.0 1. Overview o Nios II Embedded Development NII52001-11.0.0 The Nios II Sotware Developer s Handbook provides the basic inormation needed to develop embedded sotware or the Altera
GreenEye Monitor Setup Guide V1.0 Brultech Research Inc.
GreenEye Monitor Setup Guide V1.0 Brultech Research Inc. Latest GEM Software and Manuals: - http://www.brultech.com/gem/files/gem_files.zip - NOTE: To run GEM Setup, the JRE (Java Run-Time Engine) must
50-Port 10/100/1000Mbps with 4 Shared SFP. Managed Gigabit Switch WGSW-50040. Quick Installation Guide
50-Port 10/100/1000Mbps with 4 Shared SFP Managed Gigabit Switch WGSW-50040 Quick Installation Guide Table of Contents 1. Package Content... 3 2. Switch Management... 4 3. Requirements... 5 4. Terminal
White Paper Using the Intel Flash Memory-Based EPC4, EPC8 & EPC16 Devices
White Paper Introduction Altera enhanced configuration devices provide single-device, advanced configuration solutions for high-density Altera FPGAs. The core of an enhanced configuration device is divided
Savvius Insight Initial Configuration
The configuration utility on Savvius Insight lets you configure device, network, and time settings. Additionally, if you are forwarding your data from Savvius Insight to a Splunk server, You can configure
WIZ-Embedded WebServer User s Manual (Ver. 1.0)
[텍스트 입력] WIZ-Embedded WebServer User s Manual (Ver. 1.0) 2007 WIZnet Inc. All Rights Reserved. For more information, visit our website at www.wiznet.co.kr Document History Information Revision Data Description
1. Overview of Nios II Embedded Development
January 2014 NII52001-13.1.0 1. Overview o Nios II Embedded Development NII52001-13.1.0 The Nios II Sotware Developer s Handbook provides the basic inormation needed to develop embedded sotware or the
Document ID: FLXN111 PRODUCTS AND LICENSING
Document ID: FLXN111 PRODUCTS AND LICENSING This document could contain technical inaccuracies or typographical errors. Flexibilis Oy may make changes in the product described in this document at any time.
For Quartus II Software. This Quick Start Guide will show you. how to set up a Quartus. enter timing requirements, and
Quick Start Guide For Quartus II Software This Quick Start Guide will show you how to set up a Quartus II project, enter timing requirements, and compile the design into an Altera device. 1 Three-Step
1. Hardware Installation
4 Port 10/100M Internet Broadband Router with USB Printer server Quick Installation Guide #4824904AXZZ0 1. Hardware Installation A. System Requirement Before you getting started, make sure that you meet
Using the NicheStack TCP/IP Stack - Nios II Edition Tutorial
Using the NicheStack TCP/IP Stack - Nios II Edition Tutorial Using the NicheStack TCP/IP Stack - Nios II Edition Tutorial 101 Innovation Drive San Jose, CA 95134 www.altera.com TU-01001-3.0 Subscribe Copyright
Prestige 650R-31/33 Read Me First
Prestige 650R-31/33 Read Me First Prestige Rear Panel Connections PORT DSL CONSOLE LAN 10/100M POWER Connect to a telephone jack using a telephone wire. CONNECTION Connect to a serial port (COM port) on
White Paper Utilizing Leveling Techniques in DDR3 SDRAM Memory Interfaces
White Paper Introduction The DDR3 SDRAM memory architectures support higher bandwidths with bus rates of 600 Mbps to 1.6 Gbps (300 to 800 MHz), 1.5V operation for lower power, and higher densities of 2
CP2110-EK CP2110 EVALUATION KIT USER S GUIDE. 1. Kit Contents. 2. Relevant Documentation. 3. Software Setup
CP2110 EVALUATION KIT USER S GUIDE 1. Kit Contents The CP2110 Evaluation Kit contains the following items: CP2110 Evaluation Board RS232 Serial Cable USB Cable DVD Quick Start Guide 2. Relevant Documentation
10/100/1000Mbps Ethernet MAC with Protocol Acceleration MAC-NET Core with Avalon Interface
1 Introduction Ethernet is available in different speeds (10/100/1000 and 10000Mbps) and provides connectivity to meet a wide range of needs from desktop to switches. MorethanIP IP solutions provide a
Table of Contents. Creating a VC1000 Network... 3
2 Table of Contents Creating a VC1000 Network... 3 Topology... 3 Unit ddressing... 4 Terminating Resistors... 5 Shielding... 5 Interconnecting the common... 6 ias Resistors... 6 VC1000 Hardware Configuration...
ezvsp User's Manual ( Version 2.1d ) Sollae Systems Co., Ltd.
ezvsp User's Manual ( Version 2.1d ) Sollae Systems Co., Ltd. Contents Chapter 1 Overview 1 1.1 Introduction 1 2.2 Key Features 2 Chapter 2 Installation 3 2.1 Ready to install ezvsp 3 2.2 Install ezvsp
In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1
RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer
c. Securely insert the Ethernet cable from your cable or DSL modem into the Internet port (B) on the WGT634U. Broadband modem
Start Here Follow these instructions to set up your router. Verify That Basic Requirements Are Met Assure that the following requirements are met: You have your broadband Internet service settings handy.
Implementation of Web-Server Using Altera DE2-70 FPGA Development Kit
1 Implementation of Web-Server Using Altera DE2-70 FPGA Development Kit A THESIS SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENT OF FOR THE DEGREE IN Bachelor of Technology In Electronics and Communication
EDGE FX Network configuration
Page 1 of 16 TITLE: Category: EDGE FX Network configuration GERBER EDGE Document Number: 4280 Supplied by: Gerber Service Last Modified: April 14, 2011 Summary: In order to connect an EDGE FX to your PC
PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications
PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications PC/POLL SYSTEMS supports native TCP/IP polling for the SPS2000 cash register. It is recommended users have the register updated
DSL-2600U. User Manual V 1.0
DSL-2600U User Manual V 1.0 CONTENTS 1. OVERVIEW...3 1.1 ABOUT ADSL...3 1.2 ABOUT ADSL2/2+...3 1.3 FEATURES...3 2 SPECIFICATION...4 2.1 INDICATOR AND INTERFACE...4 2.2 HARDWARE CONNECTION...4 2.3 LED STATUS
NetBiter webscada Modbus User Manual
User Manual IntelliCom Innovation AB Pilefeltsgatan 93-95 SE-302 50 Halmstad SWEDEN Phone +46 35 17 29 90 Fax +46 35 17 29 09 email [email protected] www www.intellicom.se Revision List Revision Date
Applying the Benefits of Network on a Chip Architecture to FPGA System Design
Applying the Benefits of on a Chip Architecture to FPGA System Design WP-01149-1.1 White Paper This document describes the advantages of network on a chip (NoC) architecture in Altera FPGA system design.
First Steps. Remote Access Gateway IGW/922. with DIL/NetPC ADNP/9200
Remote Access Gateway IGW/922 with DIL/NetPC ADNP/9200 First Steps SSV Embedded Systems Dünenweg 5 D-30419 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: [email protected] Document
SIP Proxy Server. Administrator Installation and Configuration Guide. V2.31b. 09SIPXM.SY2.31b.EN3
SIP Proxy Server Administrator Installation and Configuration Guide V2.31b 09SIPXM.SY2.31b.EN3 DSG, DSG logo, InterPBX, InterServer, Blaze Series, VG5000, VG7000, IP590, IP580, IP500, IP510, InterConsole,
4 Networking Generators
4 Networking Generators Topics in this chapter: Overview Configuring a file server Establishing a network environment Network operations Controlling a generator remotely Upgrading generators over a network
Dominion KX II-101-V2
Dominion KX II-101-V2 Quick Setup Guide Thank you for your purchase of the Dominion KX II-101-V2, the economical, full-featured, single-port digital KVM-over-IP device. For details on using the KX II-101-V2,
RN-131-PICTAIL & RN-171-PICTAIL Web-Server Demo Application
RN-131-PICTAIL & RN-171-PICTAIL Web-Server Demo Application 2012 Roving Networks. All rights reserved. RN-131/171-PICTAIL-UM Version 1.0 1/8/2013 OVERVIEW The RN-131 and RN-171 WiFly radio modules are
Quick Installation Guide 8-Port 10/100/1000Mbps Green Switch
Quick Installation Guide 8-Port 10/100/1000Mbps Green Switch Model# AGSW802 Ver. 1A Introduction This Quick Installation Guide tells you how to install your 8-Port 10/100/1000Mbps Green Switch, and how
Follow these steps to prepare the module and evaluation board for testing.
2 Getting Started 2.1. Hardware Installation Procedure Follow these steps to prepare the module and evaluation board for testing. STEP1: Plug the EG-SR-7100A module into the sockets on the test board.
Krontek. KT2000 GPS SNTP Timeserver
Krontek KT2000 GPS SNTP Timeserver GPS Network Timeserver - 1 - Rev 1.3b 17-Jul-2008 Table of contents Communicating with the Controller... 3 Introduction... 4 Main Menu... 4 1 - Set device Address, Mask,
FRM301 SNMP Upgrade Procedure
The information within this document is intended for experienced service personnel with knowledge of TCP/IP networking, PC networking configuration, serial terminal configuration and operation. Failure
DE4 NetFPGA Packet Generator Design User Guide
DE4 NetFPGA Packet Generator Design User Guide Revision History Date Comment Author 01/30/2012 Initial draft Harikrishnan Contents 1. Introduction... 4 2. System Requirements... 4 3. Installing DE4 NetFPGA
Application Note Configuring the UGate 3000 for use with ClipMail Pro and ClipExpress
Application Note Configuring the UGate 3000 for use with Introduction This Application Note guides the ClipMail user through the UGate gateway configuration process by using a simple dial up connection
1 Serial RS232 to Ethernet Adapter Installation Guide
Installation Guide 10/100 Mbps LED (amber color ) Link/Activity LED (green color ) 1. Introduction Thank you for purchasing this 1-port RS232 to Ethernet Adapter (hereinafter referred to as Adapter ).
Volume. Instruction Manual
Volume 1 Instruction Manual Networking EVERFOCUS ELECTRONICS CORPORATION Networking Instruction Guide 2004 Everfocus Electronics Corp 2445 Huntington Drive Phone 626.844.8888 Fax 626.844.8838 All rights
T3 Mux M13 Multiplexer
T3 Mux M13 Multiplexer User Manual [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract
Getting started with ARM-Linux
Getting started with ARM-Linux www.embeddedarm.com (480)-837-5200 usa Connecting serial communications and power (JP2 must be installed to enable console) An ANSI terminal or a PC running a terminal emulator
7a. System-on-chip design and prototyping platforms
7a. System-on-chip design and prototyping platforms Labros Bisdounis, Ph.D. Department of Computer and Communication Engineering 1 What is System-on-Chip (SoC)? System-on-chip is an integrated circuit
Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface
Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Application te Programming Flash Microcontrollers through the Controller Area Network (CAN) Interface Abstract This
1 PC to WX64 direction connection with crossover cable or hub/switch
1 PC to WX64 direction connection with crossover cable or hub/switch If a network is not available, or if it is desired to keep the WX64 and PC(s) completely separated from other computers, a simple network
2. Scope of the DE0 Board and Supporting Material
1 Getting Started with Altera s DE0 Board This document describes the scope of Altera s DE0 Development and Education Board and the supporting materials provided by the Altera Corporation. It also explains
Getting Started with Embedded System Development using MicroBlaze processor & Spartan-3A FPGAs. MicroBlaze
Getting Started with Embedded System Development using MicroBlaze processor & Spartan-3A FPGAs This tutorial is an introduction to Embedded System development with the MicroBlaze soft processor and low
GV-Data Capture V3 Series User's Manual
GV-Data Capture V3 Series User's Manual Before attempting to connect or operate this product, please read these instructions carefully and save this manual for future use. 2006 GeoVision, Inc. All rights
Vantage RADIUS 50. Quick Start Guide Version 1.0 3/2005
Vantage RADIUS 50 Quick Start Guide Version 1.0 3/2005 1 Introducing Vantage RADIUS 50 The Vantage RADIUS (Remote Authentication Dial-In User Service) 50 (referred to in this guide as Vantage RADIUS)
Application Note: AN00141 xcore-xa - Application Development
Application Note: AN00141 xcore-xa - Application Development This application note shows how to create a simple example which targets the XMOS xcore-xa device and demonstrates how to build and run this
Table of Contents. ARM Evaluation Board (AEB-1) Welcome Guide ARM DGI 0005D. Proprietary Notice
Proprietary Notice ARM and the ARM Powered logo are registered trademarks of ARM Limited. Angel, EmbeddedICE, and Multi-ICE are unregistered trademarks of ARM Limited. All other products or services mentioned
Software User Guide UG-461
Software User Guide UG-461 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com ezlinx icoupler Isolated Interface Development Environment
Self Help Guide IMPORTANT! Configuring Your Router With Your Modem. Please read the following carefully; This Guide refers to the following Products:
IMPORTANT! This Guide refers to the following Products: Configuring Your Router With Your Modem Please read the following carefully; Synopsis: A standard (Wireless) Router does not come equipped with the
USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks
USER MANUAL GUIMGR Graphical User Interface Manager for FRM301/FRM401 Media Racks CTC Union Technologies Co., Ltd. Far Eastern Vienna Technology Center (Neihu Technology Park) 8F, No. 60 Zhouzi St. Neihu,
