So You Want to Be a Programmer?

Size: px
Start display at page:

Download "So You Want to Be a Programmer?"

Transcription

1 So You Want to Be a Programmer? A career-preparation guide from

2 We protect your network like your business depends on it TM

3 Last Revised June 17, 2014 Copyright 2014 DPS Telecom All rights reserved, including the right to reproduce this guide or portions thereof in any form without written permission from DPS Telecom. For Information, please write to DPS Telecom 4955 E. Yale Ave., Fresno, CA Call: Printed in the U.S.A.

4 Table of Contents So who is DPS Telecom and what do they do?... 5 Working for DPS Telecom... 6 Keil Programming Challenge: Overview... 7 Keil Programming Challenge: Start Up Guide... 8

5 So who is DPS Telecom and what do they do? DPS Telecom designs and manufactures and sells Network monitoring equipment for communications networks all over the world. The companies we serve include large and small cell phone and land line companies, power companies, government agencies, railroads, subways, and more. DPS was founded in Fresno CA in 1986 by 3 engineers who built the company from the ground up. DPS Telecom was designed to be a vertically integrated company, which means every product is designed, built, tested and documented here at DPS Telecom s Fresno campus. We do everything from designing the PC boards, writing the software, fabricating the equipment chassis, placing components on the PC Boards and marketing and selling our product. Working for a vertically integrated company means that you get to see the product you help develop be made into an actual product that ships out our door to our client! So How does Network Monitoring Equipment work? DPS products allow network operators to verify that all their equipment at a remote site is in good running order and if there is ever a failure or outage at a site our equipment will notify them of the problem. If anything goes wrong at a remote site (ie failure or outage), DPS Telecom s units will collect and send out an alarm signal to the network operator with a description of the problem. With that information the network operator can then make repair decision and act on it as quickly as possible. Overall, we help companies react to changing conditions in their networks to prevent outages. Below is a visual representation of how network monitoring works. A failure/ outage occurs at a remote Site. A DPS unit collects the alarm signal regarding the failure/ outage and sends it to the Network Operator. The Network Operator is notified of the alarm signal and makes repairs as necessary to restore service at the site.

6 Working for DPS Telecom If you want more from life than a 9-to-5 job, DPS Telecom will give you tough challenges, high expectations, and exceptional opportunities. We hire only potential leaders who want to excel from Day One. We can teach you basic leadership and trade skills we're looking for people with the drive and desire to succeed. DPS Telecom provides excellent career opportunities for new graduates and current students or qualified applicants looking for a long term career. Apply the knowledge and skills you acquired to a rewarding career at DPS Telecom. DPS Telecom is an equal opportunity employer and offers competitive salaries and first-class benefits, including health, vision, dental, life insurance, employee carwash program, and an employer 401(k) plan. This is your chance to join the team that protects the world s networks. DPS Telecom creates technology that supports essential modern communications the landline and cellular phone networks, the Internet, and 911 service. DPS Telecom products guarantee the reliability of telecommunications networks on all seven continents. Your work here will literally help millions of people. Join a world-class, career-building company without leaving Fresno. At DPS Telecom, you'll work for a highly respected, industry-leading company and solve problems for national and global clients. Why DPS is a Great Place to Work? We asked our staff and this is what they had to say: This is a great introductory position. As an office support employee, you will be introduced to a variety of jobs within all aspects of the company. This position offers a lot of opportunity for you to grow and expand your business skill set. -RAM, Office Support Manager My current position with DPS Telecom has given me the opportunity to grow as an engineering professional. The work environment here is exceptional. But what I enjoy the most is the diversity of the projects I work on, on a daily basis. - RM, Engineering Tech

7 Keil Programming Challenge: Overview Overview: You will create a simple program in C using the KEIL IDE and C51 compiler. 1. Download the Keil s C51 Eval software (Keil uvision2) from the following link if you do not already have it: 2. Install Keil C51 Eval software. Refer to the Keil Startup guide (on the following page) on how to create a new project and how to compile or use one of the included example programs as a template. (The startup guide and two example projects are included in the following archive Watch your code size. The demo has a 2000 byte limit. 3. Running in the uvision2 Debugger, the program receives a sentence from the user. a. Output a user prompt. b. User types in a free form sentence and presses ENTER. 4. When the user presses ENTER, the program performs the following: Note: Please do not use the strtok() function. a. Redisplay the sentence as typed. b. Reverse the order of each word in the sentence. i. Smart Label Printer will become Printer Label Smart c. Alphabetically sort each word in the sentence. i. Smart Label Printer will become amrst abell einprrt 5. Type a brief summary on how to run your program, and what to expect. Provide an example of what output you would expect from your program given certain input. 6. What parts of this project did you find easy? 7. What parts of this project did you find challenging? 8. How much time did you spend on this project? What were the most time consuming parts of the project? Knowing what you know now, how long would a similar assignment take you to complete? 9. Zip and your entire project directory to DPS Telecom for review. to: sergeydub@dpstele.com Cc: resume1@dpstele.com Subject: Keil Programming Assignment Part I ***Code must be able to compile and run within the provided KEIL IDE before we can evaluate. *** 10. If you have not heard back from us within 2 business days after submitting your project please contact Human Resources at

8 Keil Programming Challenge: Start Up Guide This will provide steps to creating a new project, compiling and running programs within the KEIL IDE. Install the KEIL IDE and C51 compiler if you don t already have it. The link for the executable of the demo is The link to the archive with this document and two example projects is Creating a new project 1. Click on Project - > New Project and type in the project name. 2. It will now ask to select a device for Target Target 1. Look for Generic and select 8051 (All Variants) 3. When asked to add STARTUP.A51, select yes. 4. Before going any further, we will need to setup the serial output. a. Go to the left panel. It should be titled Project Workspace and expand all folders.

9 b. Right click on Source Group 1 and click on Manage Components You should now be looking at a window with three panels. The furthest one to the right should contain STARTUP.A51. Click on Add Files on the bottom of the screen. c. Go to your Keil folder and find the LIB folder (C:\Keil\LIB). d. Select XBANKING.A51 5. Now start entering your source code by first creating a new file. a. Go to File -> New. This will create a new window called Text.

10 b. Enter your source code here. c. Be sure to include #include <reg51.h> at the top of your main code. This is used to get input and send output to the serial. d. Also insert the following code in your MAIN routine. This should always be in your source code: SCON = 0x52; // serial port configuration TMOD = 0x20; TCON = 0x40; TH1 = 0xf3; // 2403 This sets up the serial window #1 for input and output. e. Test with the following code (your text should only contain the following): #include<stdio.h> #include <reg51.h> void main (void) { SCON = 0x52; TMOD = 0x20; TCON = 0x40; TH1 = 0xf3; // serial port configuration // 2403 printf("hello World"); } f. Save the text file as a.c document (ex. Main.C) g. Add it to your project by Right clicking on Source Group 1 on the left panel and selecting Add Files To Group. h. Search for the file that you just saved (ex. main.c) and press ok. 6. Compile your code. a. Click on Project -> Rebuild All Target Files. b. The output window on the bottom of the screen should print out how many errors or warning your code contains. If errors is 0 then it will be ok to go ahead and run the code. Modify your source if you have any errors and rebuild again. Watch your code size. The demo has a 2000 byte limit.

11

12 c. Once you have rebuilt with 0 errors, click on Debug -> Start/Stop Debug Session.

13 d. Click on View -> Serial Window #1

14 e. Now find the Run button. It should be near the top left of the screen. f. Your serial window should now display your text. * Use the following projects as examples before starting your project: HelloWorld : This will echo Hello World to Serial Window #1. Echo : This will ask for a user input and will echo the character back to Serial Window #1. There are other examples that came with the KEIL IDE and can be found in the KEIL folder under C51/Examples.

15 DPS Telecom is Hiring Programmers! Apply online at: We protect your network like your business depends on it TM

PayPal Integration Guide

PayPal Integration Guide PayPal Integration Guide Table of Contents PayPal Integration Overview 2 Sage Accounts Setup 3 Obtaining API credentials from PayPal 4 Installing Tradebox Finance Manager 5 Creating a connection to PayPal

More information

Microsoft Visual Studio 2010 Instructions For C Programs

Microsoft Visual Studio 2010 Instructions For C Programs Microsoft Visual Studio 2010 Instructions For C Programs Creating a NEW C Project After you open Visual Studio 2010, 1. Select File > New > Project from the main menu. This will open the New Project dialog

More information

Click to begin. Maitre'D Full System Backup & Restore

Click to begin. Maitre'D Full System Backup & Restore Click to begin Maitre'D Full System Backup & Restore Full System Backup & Restore This document will guide you through the Backup of the Maitre D Database from a Source computer and the Restoration on

More information

Windows Live Mail Setup Guide

Windows Live Mail Setup Guide Versions Addressed: Windows Live Mail 2011 Document Updated: 11/24/2010 Copyright 2010 Purpose: This document will assist the end user in configuring Windows Live Mail to access a POP3 email account hosted

More information

Start A New Project with Keil Microcontroller Development Kit Version 5 and Freescale FRDM-KL25Z

Start A New Project with Keil Microcontroller Development Kit Version 5 and Freescale FRDM-KL25Z Start A New Project with Keil Microcontroller Development Kit Version 5 and Freescale FRDM-KL25Z This tutorial is intended for starting a new project to develop software with Freescale FRDM-KL25Z board

More information

PARTNER ACS R4.0 Remote Administration R4.0. Getting Started

PARTNER ACS R4.0 Remote Administration R4.0. Getting Started PARTNER ACS R.0 Remote Administration R.0 Getting Started 8-6-66 700080 Issue May 00 Copyright 00, Avaya Inc. Document 8-6-66 All Rights Reserved 700080 Printed in USA Issue May 00 Notice Every effort

More information

Building and Debugging a project using Keil MDK-ARM Eclipse plug-in

Building and Debugging a project using Keil MDK-ARM Eclipse plug-in Freescale Semiconductor Document Number: AN4913 Building and Debugging a project using Keil MDK-ARM Eclipse plug-in Processor Expert Microcontrollers Driver Suite 1. Introduction Processor Expert Microcontrollers

More information

CurveMaker v2.1 DYNAFS programmable ignition software

CurveMaker v2.1 DYNAFS programmable ignition software CurveMaker v2.1 DYNAFS programmable ignition software Dynatek 164 S Valencia St. Glendora CA 91741 phone (626)963-1669 fax (626)963-7399 Contents 1) Installation...1 2) Overview...1 3) Programming a Curve...4

More information

Registry Tuner. Software Manual

Registry Tuner. Software Manual Registry Tuner Software Manual Table of Contents Introduction 1 System Requirements 2 Frequently Asked Questions 3 Using the Lavasoft Registry Tuner 5 Scan and Fix Registry Errors 7 Optimize Registry

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start

CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start CodeWarrior Development Studio for Freescale S12(X) Microcontrollers Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel Pentum -compatible processor 512 MB of RAM

More information

EMBEDDED C USING CODEWARRIOR Getting Started Manual

EMBEDDED C USING CODEWARRIOR Getting Started Manual Embedded C using CodeWarrior 1 68HC12 FAMILY EMBEDDED C USING CODEWARRIOR Getting Started Manual TECHNOLOGICAL ARTS, INC. Toll-free: 1-877-963-8996 (USA and Canada) Phone: +(416) 963-8996 Fax: +(416) 963-9179

More information

Deposit Direct. Getting Started Guide

Deposit Direct. Getting Started Guide Deposit Direct Getting Started Guide Table of Contents Before You Start... 3 Installing the Deposit Direct application for use with Microsoft Windows Vista... 4 Running Programs in Microsoft Windows Vista...

More information

Backup and Restore User manual For version 5.0.0.8

Backup and Restore User manual For version 5.0.0.8 Backup and Restore User manual For version 5.0.0.8 All rights reserved 1989 2008 Microware Software - Rev. 1.0.5 October 2, 2008 Page 1 Table of Contents Backup and Restore 1.0 Overview... 3 1.1 Main features...4

More information

Lab 1 Course Guideline and Review

Lab 1 Course Guideline and Review Lab 1 Course Guideline and Review Overview Welcome to ECE 3567 Introduction to Microcontroller Lab. In this lab we are going to experimentally explore various useful peripherals of a modern microcontroller

More information

Model 288B Charge Plate Graphing Software Operators Guide

Model 288B Charge Plate Graphing Software Operators Guide Monroe Electronics, Inc. Model 288B Charge Plate Graphing Software Operators Guide P/N 0340175 288BGraph (80207) Software V2.01 100 Housel Ave PO Box 535 Lyndonville NY 14098 1-800-821-6001 585-765-2254

More information

Bluetooth Installation

Bluetooth Installation Overview Why Bluetooth? There were good reasons to use Bluetooth for this application. First, we've had customer requests for a way to locate the computer farther from the firearm, on the other side of

More information

Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076.

Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. Code::Block manual for CS101x course Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. April 9, 2014 Contents 1 Introduction 1 1.1 Code::Blocks...........................................

More information

1 Intel Smart Connect Technology Installation Guide:

1 Intel Smart Connect Technology Installation Guide: 1 Intel Smart Connect Technology Installation Guide: 1.1 System Requirements The following are required on a system: System BIOS supporting and enabled for Intel Smart Connect Technology Microsoft* Windows*

More information

CS106B Handout #5P Winter 07-08 January 14, 2008

CS106B Handout #5P Winter 07-08 January 14, 2008 CS106B Handout #5P Winter 07-08 January 14, 2008 Using Microsoft Visual Studio 2005 Many thanks to Matt Ginzton, Robert Plummer, Erik Neuenschwander, Nick Fang, Justin Manus, Andy Aymeloglu, Pat Burke,

More information

Bluetooth GPS with Navigation Software. Software Quick Start Guide (GBGPS201)

Bluetooth GPS with Navigation Software. Software Quick Start Guide (GBGPS201) Bluetooth GPS with Navigation Software Software Quick Start Guide (GBGPS201) 2004 IOGEAR. All Rights Reserved. PKG-M0129QS-SW IOGEAR, the IOGEAR logo, MiniView, VSE are trademarks or registered trademarks

More information

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board

Quick Start Tutorial. Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board Quick Start Tutorial Using the TASKING* Software Development Tools with the Intel 8x930 Family Evaluation Board This explains how to use the TASKING Microsoft* Windows*-based software development tools

More information

User's Guide DylosLogger Software Version 1.6

User's Guide DylosLogger Software Version 1.6 User's Guide DylosLogger Software Version 1.6 The DylosLogger software allows users of Dylos Air Quality Monitors equipped with PC interface to easily record, download, and graph data. The COM port is

More information

Using DAVE with MDK Version 5

Using DAVE with MDK Version 5 MDK Version 5 Tutorial AN258, Autumn 2015, V 2.0 christopher.seidl@arm.com Abstract This application note demonstrates how to use Infineon's DAVE and MDK Version 5 to accelerate the development cycle when

More information

USING USB FLASH DISK WITH TCMS V2

USING USB FLASH DISK WITH TCMS V2 1 USING USB FLASH DISK WITH TCMS V2 SUGGESTIONS & SOLUTIONS FOR TCMS V2 2 ADD REMOTE FINGERTEC TERMINAL(S) USING USB FLASH DISK FingerTec AC100 Plus and AC800 Plus both come with USB port. User may utilise

More information

Table of Contents. ARM Evaluation Board (AEB-1) Welcome Guide ARM DGI 0005D. Proprietary Notice

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

More information

Comdial Network Management System User Instructions

Comdial Network Management System User Instructions Comdial Network Management System User Instructions GCA40 237.01 8/00 printed in U.S.A. Microsoft and Windows 95 are registered trademarks of Microsoft Corporation, Redmond WA. pcanywhere is a registered

More information

ExpressShipper UK User Guide

ExpressShipper UK User Guide ExpressShipper Quick User Guide ExpressShipper Section 0 Page 1 of 63 Section 1: Structure of the User Guide In this section This section contains the following topics: Topic See Page What is the purpose

More information

10File Maintenance. Overview. File Maintenance CHAPTER. Note: Manual No. 016-0171-122 159

10File Maintenance. Overview. File Maintenance CHAPTER. Note: Manual No. 016-0171-122 159 CHAPTER 10 10File Maintenance Chapt er Overview File Maintenance can be defined as the process of archiving specific files from the Viper Pro and deleting files that are no longer needed. It is recommended

More information

Dell Statistica 13.0. Statistica Enterprise Installation Instructions

Dell Statistica 13.0. Statistica Enterprise Installation Instructions Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or

More information

SATA RAID Function (Only for chipset Sil3132 used) User s Manual

SATA RAID Function (Only for chipset Sil3132 used) User s Manual SATA RAID Function (Only for chipset Sil3132 used) User s Manual 12ME-SI3132-001 Table of Contents 1 WELCOME...4 1.1 SATARAID5 FEATURES...4 2 AN INTRODUCTION TO RAID...5 2.1 DISK STRIPING (RAID 0)...5

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

edgebooks Quick Start Guide 4

edgebooks Quick Start Guide 4 edgebooks Quick Start Guide 4 memories made easy SECTION 1: Installing FotoFusion Please follow the steps in this section to install FotoFusion to your computer. 1. Please close all open applications prior

More information

Users Manual. Super Silent Client. Super Silent Client Users Manual. 2008 Piravi Software Solutions. http://www.piravi.com. Document Revision 1.

Users Manual. Super Silent Client. Super Silent Client Users Manual. 2008 Piravi Software Solutions. http://www.piravi.com. Document Revision 1. Super Silent Client Users Manual Document Revision 1.0 2008 Piravi Software Solutions Copyright Piravi Tech Page 1 of 15 Table of Contents Chapter 1: Introduction 1.1 Copyright Information. 1.2 Legal Issues

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

Installing the Cygwin UNIX Emulator on Windows 7

Installing the Cygwin UNIX Emulator on Windows 7 Where to do Some Basic Background Reading Start here for all things Cygwin: http://cygwin.com/install.html Note that these instructions include the installation steps we use on the SM1094 (Computational

More information

Introduction 1-1 Installing FAS 500 Asset Accounting the First Time 2-1 Installing FAS 500 Asset Accounting: Upgrading from a Prior Version 3-1

Introduction 1-1 Installing FAS 500 Asset Accounting the First Time 2-1 Installing FAS 500 Asset Accounting: Upgrading from a Prior Version 3-1 Contents 1. Introduction 1-1 Supported Operating Environments................ 1-1 System Requirements............................. 1-2 Security Requirements........................ 1-3 Installing Server

More information

Programming with the Dev C++ IDE

Programming with the Dev C++ IDE Programming with the Dev C++ IDE 1 Introduction to the IDE Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. As similar IDEs, it offers to the programmer

More information

Meridian 1 Meridian 1 Attendant PC LAN Interface Installation Guide

Meridian 1 Meridian 1 Attendant PC LAN Interface Installation Guide Meridian 1 Meridian 1 Attendant PC LAN Interface Installation Guide Document Number: P0874391 Document Release: Standard 1.00 Date: November 1997 Year Publish FCC TM 1997 All rights reserved Printed in

More information

CREDENTIAL MANAGER IN WINDOWS 7

CREDENTIAL MANAGER IN WINDOWS 7 CREDENTIAL MANAGER IN WINDOWS 7 What is Credential Manager Whenever we try to access some resource, whether it is local or remote resource, Windows always validates our credentials to make sure we have

More information

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc.

SKP16C62P Tutorial 1 Software Development Process using HEW. Renesas Technology America Inc. SKP16C62P Tutorial 1 Software Development Process using HEW Renesas Technology America Inc. 1 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW (Highperformance

More information

DP-313 Wireless Print Server

DP-313 Wireless Print Server DP-313 Wireless Print Server Quick Installation Guide TCP/IP Printing (LPR for Windows 95/98/Me/2000) Rev. 03 (August, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may

More information

IPRO Viewer. Installation

IPRO Viewer. Installation IPRO Viewer Attention: This guide is intended to help those who are authorized to install content onto their computers with the installation of IPRO Premium Viewer software. Please contact your IT personnel

More information

SmartLink for Lotus Notes User Guide

SmartLink for Lotus Notes User Guide SmartLink for Lotus Notes User Guide Copyright 1998-2006 E-Z Data, Inc. All Rights Reserved No part of this documentation may be copied, reproduced, or translated in any form without the prior written

More information

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction User manual Getting started with STM32 Nucleo board software development tools Introduction The STM32 Nucleo board is a low-cost and easy-to-use development platform used to quickly evaluate and start

More information

Getting Started with IntelleView POS Administrator Software

Getting Started with IntelleView POS Administrator Software Getting Started with IntelleView POS Administrator Software Administrator s Guide for Software Version 1.2 About this Guide This administrator s guide explains how to start using your IntelleView POS (IntelleView)

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Using InstallAware 7. To Patch Software Products. August 2007

Using InstallAware 7. To Patch Software Products. August 2007 Using InstallAware 7 To Patch Software Products August 2007 The information contained in this document represents the current view of InstallAware Software Corporation on the issues discussed as of the

More information

EPSON USB/Parallel Adapter User s Guide

EPSON USB/Parallel Adapter User s Guide EPSON USB/Parallel Adapter User s Guide EPSON Stylus COLOR 440 EPSON Stylus COLOR 800 EPSON Stylus COLOR 600 EPSON Stylus COLOR 850 EPSON Stylus COLOR 640 EPSON Stylus COLOR 1520 EPSON Stylus Photo EX

More information

Installation Instructions for 9555 USB Driver

Installation Instructions for 9555 USB Driver Prior to using the data modem features of your 9555 handset; you must first install the VCOMPORT 9555 USB Driver. This driver is compatible with: Windows XP Service Pack 2, Windows 2000 Service Pack 4,

More information

DIRECT INTERNET DATA. User s Guide

DIRECT INTERNET DATA. User s Guide DIRECT INTERNET DATA User s Guide Iridium Satellite LLC Rev. 2; June 15, 2001 DIRECT INTERNET DATA ------------------------------------------------------------------------------------- TABLE OF CONTENTS

More information

Objectives. At the end of this chapter students should be able to:

Objectives. At the end of this chapter students should be able to: NTFS PERMISSIONS AND SECURITY SETTING.1 Introduction to NTFS Permissions.1.1 File Permissions and Folder Permission.2 Assigning NTFS Permissions and Special Permission.2.1 Planning NTFS Permissions.2.2

More information

SCADAPack E ISaGRAF 3 User Manual

SCADAPack E ISaGRAF 3 User Manual SCADAPack E ISaGRAF 3 User Manual 2 SCADAPack E ISaGRAF 3 User Manual Table of Contents Part I ISaGRAF 3 User Manual 3 1 Technical... Support 3 2 Safety... Information 4 3 Preface... 6 4 Overview... 8

More information

Welcome to Ipswitch Instant Messaging

Welcome to Ipswitch Instant Messaging Welcome to Ipswitch Instant Messaging What is Instant Messaging (IM), anyway? In a lot of ways, IM is like its cousin: e-mail. E-mail, while it's certainly much faster than the traditional post office

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

USER MANUAL Version 4

USER MANUAL Version 4 Workstation Options ("Options For this Computer Only") USER MANUAL Version 4 Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial

Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Building an Embedded Processor System on a Xilinx Zync FPGA (Profiling): A Tutorial Embedded Processor Hardware Design January 29 th 2015. VIVADO TUTORIAL 1 Table of Contents Requirements... 3 Part 1:

More information

Job Scheduler User Guide IGSS Version 11.0

Job Scheduler User Guide IGSS Version 11.0 Job Scheduler User Guide IGSS Version 11.0 The information provided in this documentation contains general descriptions and/or technical characteristics of the performance of the products contained therein.

More information

Hardware and Software Requirements

Hardware and Software Requirements C Compiler Real-Time OS Simulator Training Evaluation Boards Installing and Using the Keil Monitor-51 Application Note 152 May 31, 2000, Munich, Germany by Keil Support, Keil Elektronik GmbH support.intl@keil.com

More information

Administrator s Guide for NETZSCH Remote Access

Administrator s Guide for NETZSCH Remote Access Administrator s Guide for NETZSCH Remote Access Contents NETZSCH Remote Access Components... 2 Startup Order of the Remote Access service components... 2 Configuration... 3 Remote Access Setup Tool...

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide Document Revision Date: Nov. 13, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Introduction... 1 Exchange 2010 Outlook

More information

Download and Installation Instructions. Visual C# 2010 Help Library

Download and Installation Instructions. Visual C# 2010 Help Library Download and Installation Instructions for Visual C# 2010 Help Library Updated April, 2014 The Visual C# 2010 Help Library contains reference documentation and information that will provide you with extra

More information

Personal SES Software Security. Installing and Updating the Personal (Stand Alone) Software Security Key. Version15.1

Personal SES Software Security. Installing and Updating the Personal (Stand Alone) Software Security Key. Version15.1 Personal SES Software Security Installing and Updating the Personal (Stand Alone) Software Security Key Version15.1 1 SES ships its software packages with a hardware protection key. The key is to be plugged

More information

Wi-Fi Garage Door Openers

Wi-Fi Garage Door Openers Wi-Fi Garage Door Openers Frequently Asked Questions (FAQs) LiftMaster 845 Larch Ave. Elmhurst, IL 60126 LiftMaster.com How do I determine if my garage door opener is Wi-Fi compatible? There are three

More information

Administration guide. Host software WinCCU Installation. Complete gas volume and energy data management

Administration guide. Host software WinCCU Installation. Complete gas volume and energy data management Administration guide Host software WinCCU Installation Complete gas volume and energy data management Contents 1 Introduction... 1 Safety first... 1 Warning... 1 Typographic conventions... 1 Product versioning...

More information

Field Manager Mobile Worker User Guide for RIM BlackBerry 1

Field Manager Mobile Worker User Guide for RIM BlackBerry 1 Vodafone Field Manager Mobile Worker User Guide for RIM BlackBerry APPLICATION REQUIREMENTS Supported devices listed here o http://support.vodafonefieldmanager.com Application requires 600 KB of application

More information

EPIC 950 THERMAL TICKET PRINTER

EPIC 950 THERMAL TICKET PRINTER EPIC 950 THERMAL TICKET PRINTER Software Reference Guide www.transac-tech.com 2 Contacting Information / Serial Plate Info TransAct Technologies Incorporated is the manufacturer of Ithaca brand POS, Banking,

More information

Provider Electronic Solutions Software User s Guide

Provider Electronic Solutions Software User s Guide Vermont Title XIX Provider Electronic Solutions Software User s Guide HP ENTERPRISE SERVICES 312 HURRICANE LANE, STE 101 PO BOX 888 WILLISTON VT 05495 Table of Contents 1 Introduction... 2 1.1 Provider

More information

HomeSeer Technologies. HomeSeer Technologies LLC 35 Constitution Dr, Suite C Bedford NH, 03110 www.homeseer.com

HomeSeer Technologies. HomeSeer Technologies LLC 35 Constitution Dr, Suite C Bedford NH, 03110 www.homeseer.com HomeSeer Technologies HomeSeer Z-Troller Z-Wave Computer Interface Installation guide HomeSeer Technologies LLC 35 Constitution Dr, Suite C Bedford NH, 03110 www.homeseer.com Description Thank for your

More information

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2

Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2 Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working

More information

ON-GUARD. Guard Management System. Table of contents : Introduction Page 2. Programming Guide Page 5. Frequently asked questions Page 25 - 1 -

ON-GUARD. Guard Management System. Table of contents : Introduction Page 2. Programming Guide Page 5. Frequently asked questions Page 25 - 1 - ON-GUARD Guard Management System Table of contents : Introduction Page 2 Programming Guide Page 5 Frequently asked questions Page 25-1 - Introduction On Guard tm is designed to exceed all the requirements

More information

Intelli-M Access Quick Start Guide

Intelli-M Access Quick Start Guide Intelli-M Access Quick Start Guide Before You Begin The Intelli-M Access software can be used in conjunction with the eidc. Use Intelli-M Access to manage, view, and report activity through an eidc controlled

More information

Using a Remote SQL Server Best Practices

Using a Remote SQL Server Best Practices Using a Remote SQL Server Best Practices This article will show the steps to setting up an SQL based survey starting with a new project from scratch. 1. Creating a New SQL Project from scratch a. Creating

More information

SIM900 Eclipse environment install Application Note_V1.00

SIM900 Eclipse environment install Application Note_V1.00 SIM900 Eclipse environment install Application Note_V1.00 Document Title: Note Version: V1.00 Date: 2011-01-11 Status: Document Control ID: Edit SIM900_Eclipse_environment_install_Application_Note _V1.01

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

TimeValue Software Due Date Tracking and Task Management Software

TimeValue Software Due Date Tracking and Task Management Software User s Guide TM TimeValue Software Due Date Tracking and Task Management Software File In Time Software User s Guide Copyright TimeValue Software, Inc. (a California Corporation) 1992-2010. All rights

More information

RMFT Outlook Add-In User Guide

RMFT Outlook Add-In User Guide RMFT Outlook Add-In User Guide Software Version 2.5 November 23, 2011 RepliWeb, Inc., 6441 Lyons Road, Coconut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954) 337-6424 E-mail: info@repliweb.com, Support:

More information

Installation Guide. Your FedEx Ship Manager system number. Before you start

Installation Guide. Your FedEx Ship Manager system number. Before you start Installation Guide Your FedEx Ship Manager system number Installation Guide During registration, you receive a FedEx Ship Manager system number. Write the number here so you have it on hand whenever you

More information

How to setup a network printer using HP Universal Printer Driver

How to setup a network printer using HP Universal Printer Driver How to setup a network printer using HP Universal Printer Driver This patch is only usable on HP T5730 Thin Client and up. The Printer also has to be networked and be PCL6 driver compatible in order to

More information

CNC Transfer. Operating Manual

CNC Transfer. Operating Manual Rank Brothers Ltd CNC Transfer Operating Manual Manufactured by: Rank Brothers Ltd 56 High Street, Bottisham, Cambridge CB25 9DA, England Tel: +44 (0)1223 811369 Fax: +44 (0)1223 811441 Website: http://www.rankbrothers.co.uk/

More information

Microsoft Visual Studio Integration Guide

Microsoft Visual Studio Integration Guide Microsoft Visual Studio Integration Guide MKS provides a number of integrations for Integrated Development Environments (IDEs). IDE integrations allow you to access MKS Integrity s workflow and configuration

More information

ABUS WIRELESS ALARM SYSTEM

ABUS WIRELESS ALARM SYSTEM ABUS WIRELESS ALARM SYSTEM These installation instructions are published by Security-Center GmbH & Co. KG, Linker Kreuthweg 5, D-86444 Affing/Mühlhausen. All rights including translation reserved. Reproductions

More information

HP-1000 Powerline Ethernet Adapter

HP-1000 Powerline Ethernet Adapter HP-1000 Powerline Ethernet Adapter User s manual BEFORE INSTALLATION Plan ahead the installation of your powerline network. Note: You will need at least two powerline adapters to create a powerline network.

More information

Ipswitch Client Installation Guide

Ipswitch Client Installation Guide IPSWITCH TECHNICAL BRIEF Ipswitch Client Installation Guide In This Document Installing on a Single Computer... 1 Installing to Multiple End User Computers... 5 Silent Install... 5 Active Directory Group

More information

HP-1000 Powerline USB Adapter

HP-1000 Powerline USB Adapter HP-1000 Powerline USB Adapter User s manual BEFORE INSTALLATION Plan ahead the installation of your powerline network. Note: You will need at least two powerline adapters to create a powerline network.

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Tech Tips Helpful Tips for Pelco Products

Tech Tips Helpful Tips for Pelco Products DX4104 UPDATING FROM THE NETWORK SERVER October 29, 2009 DX4104 UPDATING FROM THE NETWORK SERVER The Operation/Configuration manual provides users an option for updating the server through the network

More information

Replacing a MealTime Point of Sale Computer

Replacing a MealTime Point of Sale Computer Meal service solutions that work! Replacing a MealTime Point of Sale Computer Overview Use these instructions only when you are replacing the MealTime Point of Sale computer that hosts the MealTime database

More information

RouteFinder SOHO. Quick Start Guide. SOHO Security Appliance. EDGE Models RF825-E, RF825-E-AP CDMA Models RF825-C-Nx, RF825-C-Nx-AP

RouteFinder SOHO. Quick Start Guide. SOHO Security Appliance. EDGE Models RF825-E, RF825-E-AP CDMA Models RF825-C-Nx, RF825-C-Nx-AP RouteFinder SOHO SOHO Security Appliance EDGE Models RF825-E, RF825-E-AP CDMA Models RF825-C-Nx, RF825-C-Nx-AP Quick Start Guide RouteFinder RF825 Series Quick Start Guide RouteFinder SOHO Security Appliance

More information

Compuprint 4247 Serial Matrix Printers

Compuprint 4247 Serial Matrix Printers Compuprint 4247 Serial Matrix Printers Remote Printer Management Utility for Serial Matrix Printers MAN10300-00.00 First edition (October 2011) This edition applies to the Compuprint 4247 printers and

More information

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual

USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual Copyright 2007 SofTec Microsystems DC01197 We want your feedback! SofTec Microsystems is always on

More information

Automated Inventory System

Automated Inventory System Automated Inventory System User Manual Developed by USDA Food and Nutrition Service June 2009 (Incomplete) Table of Contents Welcome Menu Client Services Report System Inventory System Operations Tailgate

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

Send Video Recordings from the DVR to a FTP Server on your PC

Send Video Recordings from the DVR to a FTP Server on your PC Send Video Recordings from the DVR to a FTP Server on your PC Introduction: The DVR has a useful feature that allows you to download recordings directly to a FTP server on your PC. This is just another

More information

System Integration Software

System Integration Software System Integration Software Release Notes for Version 6.0.5 1.0 Compatibility Currently, PC9000 is compatible with the following Radionics control/communicators: D7212, D7412, D7412G D9112, D9412 and D9412G

More information

TWR-KV31F120M Sample Code Guide for IAR Board configuration, software, and development tools Rev.0

TWR-KV31F120M Sample Code Guide for IAR Board configuration, software, and development tools Rev.0 TWR-KV31F120M Sample Code Guide for IAR Board configuration, software, and development tools Rev.0 Freescale TWR-KV31F120M Sample Code Guide for IAR KL25_LAB Contents 1 Purpose... 3 2 Getting to know the

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information