Getting Started with RN42 Bluetooth Module

Total Page:16

File Type:pdf, Size:1020Kb

Getting Started with RN42 Bluetooth Module Getting Started with RN42 Bluetooth Module Purpose Purpose Quick Links Useful Documentation The RN42 is a Class 2 Hardware Description certified Bluetooth module Setting Up Your Terminal from Microchip. It RN42 UART Commands includes an embedded Connecting to Remote Devices Bluetooth stack that Authentication Setting supports SPP and DUN Automatic Connect Bluetooth profiles. A Manual Connect special version of Sending Wireless Data firmware also supports Manipulating GPIO HID Bluetooth profile. A Restoring Factory Settings PCB trace antenna was Hardware Restore included on the module to Software Restore eliminate the need for Contact the Author antenna design and castellated edges make the module simple to solder onto any baseboard. Any host device can interface with the module through a simple UART interface. The RN42 supports baud rates up to 3Mbps and SPP data rates up to 300kbps (master). This page is meant to help familiarize you with these modules. You will find some useful links and downloads below, as well as some tutorials and design considerations on various features of the module. The RN-42-EK board was used as a simple evaluation board for the module. Quick Links Useful Documentation RN42-I/RM - Class 2 certified Bluetooth module with PCB RN42 Datasheet trace antenna RN-42-SM Datasheet RN-42-EK - Eval board for RN42 module RN42 Command Reference Guide RN42 Landing Page - Microchip online product page Tera Term - Free terminal emulator software for serial communication with PC Hardware Description The RN-42-EK board was used to evaluate the RN42 module. If your computer has a built-in Bluetooth adapter, you can use that to communicate with a single RN42 module. If you don't have a built-in Bluetooth adapter in your computer, you can still experiment with the RN42...you'll just need two modules. You can connect the module(s) to your computer using a hard- wired connection. I would recommend using the RN-42-EK board to evaluate the module since it comes with an on-board USB interface. You don't need to worry about interfacing with any USB/UART bridge cable. The RN-42-EK comes with everything RN-42-EK Pin Assignments you need to start prototyping with the RN42. Here are some additional items you might find useful: Helpful Accessories 2mm, 1x12 male header: 951112- 8622-AR 2mm, 1x12 female R/A header: 95051 2-5002-AR 0.1", 1x6 male header: S1011EC-06- ND Setting Up Your Terminal Once you have your module hard-wired to your computer, you need to setup your terminal software with the proper settings to properly communicate over UART. There are many free terminal programs available like Tera Term or RealTerm. If you are running Windows XP, you will have HyperAccess installed by default. Tera Term is my terminal emulator of choice. It supports multiple serial communication protocols, file transfer protocols, and also has a built in scripting language. For the purposes of this page, we are just interested in simple UART communication, so I will show you how to configure Tera Term to communicate with these modules. 1. Download Tera Term (link) 2. Open a Tera Term window 3. Make sure the RN42 is properly connected to your computer and that it is powered on 4. Select the "Setup" dropdown from the Tera Term menu bar 5. Click on "Serial Port" 6. Select the port corresponding to whatever bridge device you are using. You may need to wait for the USB driver to finish installing. 7. Use the following serial settings: Baud: 115,200 (use 9600 if jumper 4 is set) Data Bits: 8 Parity: None Stop Bits: 1 Flow Control: None 8. You can leave transmit delay set to zero. 9. Press OK to apply your changes. You should be ready to communicate with your module over UART. To test it out, type the characters '$$$' and you should get 'CMD' as a response. If not, double check your connections and serial settings. Make sure all the Ground pins are connected! If you want to see every character that you type, you can turn on local echo by selecting "Setup" from the menu bar and clicking on "Terminal". The "Terminal Setup" dialog box has a check box for enabling/disabling local echo. Also, within the "Terminal Setup" dialog box, I like to set the New-line Receive setting to CR+LF. That way when you send a command to the RN42, it will send a newline before displaying a response. RN42 UART Commands I know you want to start wireless transmission right away without even having to think, but just tap the brakes for a minute. Let's take a quick look at some of the UART commands as they will be involved in later sections. There are four types of UART commands for the RN42: Get Commands: Used for reading configuration Set Commands: Used for setting configuration. Need to reboot or power-cycle the device for "Set" commands to take effect. Change/Action Commands: Used for temporarily changing settings or causing immediate actions GPIO Commands: Used for manipulating I/O pins The module must be put in Command Mode in order to properly receive commands. This is accomplished by sending '$$$' over UART. You should get 'CMD' as a response indicating the module is in Command Mode. Type 'X' and press <enter> to view all of the current settings for the module. To exit Command Mode, send three minus signs and press enter (- - -<enter>). The image shown to the right displays the serial readout after sending the 'X' command. We can see the firmware revision and date loaded at the top. Then we see the General Settings section which includes the module's Bluetooth address, name, UART baudrate, mode of operation, authentication setting, 4-digit pin code, whether or not bonding is enabled, and the remote address stored in memory. Next, we see the Advanced Settings which are specific to the Bluetooth standard and how you want your link setup. We won't mess with any Advanced settings on this page. At the bottom of the readout, we see the Other Settings section. This is where you can set the Bluetooth profile, CMD character, enable sniff mode, enable low power mode, change the TX power, set/read I/O pins, set/read the sleep timer, enable Debug mode, and switch roles. I recommend reading through all of the available commands in the Command Reference Guide. For now, let's just touch on a few important ones. Set Syntax: SA,<value><enter> Get Syntax: GA<enter> Factory default authentication setting is '1' which requires a host device to verify it wishes to connect to a remote device. For auto-connect feature to work, Authentication needs to be set to '0' or '4'. Example: Set Authentication Setting to Open Mode Set Syntax: SM,<value><enter> Get Syntax: GM<enter> Read or set the current mode of operation. By default, the RN42 is set as a slave device (0). Example: Set Module to Master Mode (1) Set Syntax: SN,<string><enter> Get Syntax: GN<enter> Read current name or set a unique name for the Bluetooth device. Example: Set module name to 'MyDevice' Set Syntax: SR,<value><enter> Get Syntax: GR<enter> Read or set the address of the remote device you intend to communicate with. Example: Set Remote Address to '00066663D0BF' Set Syntax: SU,<value><enter> Get Syntax: GU<enter> Change the UART baud rate Example: Change UART baud rate to 57,600 bps Set Syntax: SY,<value><enter> Get Syntax: GY<enter> Read or set the transmit power for the RN42 Need to reboot module for setting to take effect Example: Set Transmit Power to -5 dBm Set Syntax: SF,1<enter> Get Syntax: none Restores all settings to factory default values except for the module name Example: Restore Factory Settings Syntax: IN<value1>,<optional value2><enter> <value1> is the scan time in seconds <value2> is the desired COD you are scanning for and is an optional parameter Example: Perform a 10 Second Scan for Any Bluetooth Device Connect to Known Address Syntax: C,<address><enter> Connect to Remote Address Stored in Memory Syntax: C<enter> Displays "Trying" after sending the Connect command Can check connection status using GK command (see below) Example: Connect to Address 000666674655 Get Syntax: GK<enter> Returns 1,0,0 if connected Returns 0,0,0 if not connected Example: Check Connection Status Syntax: R,1<enter> Perform software reboot of the device Device needs to be rebooted after changing configuration for the changes to be applied. Example: Reboot the Device Set Syntax: S@,<hex value><enter> Get Syntax: G@<enter> <hex value> is a 2-byte value First byte of <hex value> contains the GPIO mask (only pins set to '1' will be written) Second byte of <hex value> contains the value to write to the pin (1=output, 0=input) This setting will be lost when power is removed Example: Set GPIO3 as input and GPIO4 as output Set Syntax: S&,<hex value><enter> Get Syntax: G& <hex value> is a 2-byte value First byte of <hex value> contains the GPIO mask (only pins set to '1' will be written) Second byte of <hex value> contains the value to write to the pin For outputs, a value of 1 will set the pin level high, a value of 0 will set the pin level low. For inputs, a value of 1 will set the pull-up resistor, a value of 0 will set the pull-down resistor. Example: Set GPIO2 high level (assuming GPIO2 is configured as output ahead of time) Set Syntax: S*,<hex value><enter> Get Syntax: G*<enter> <hex value> is a 2-byte value First byte of <hex value> has no effect Second byte of <hex value> contains the value to write to the pin (lsb corresponds to GPIO8) GPIO8~11 can only be used as outputs, but G* can still be used to read the current value A value of 1 will set the pin level high, a value of 0 will set the pin level low.
Recommended publications
  • C:\Andrzej\PDF\ABC Nagrywania P³yt CD\1 Strona.Cdr
    IDZ DO PRZYK£ADOWY ROZDZIA£ SPIS TREFCI Wielka encyklopedia komputerów KATALOG KSI¥¯EK Autor: Alan Freedman KATALOG ONLINE T³umaczenie: Micha³ Dadan, Pawe³ Gonera, Pawe³ Koronkiewicz, Rados³aw Meryk, Piotr Pilch ZAMÓW DRUKOWANY KATALOG ISBN: 83-7361-136-3 Tytu³ orygina³u: ComputerDesktop Encyclopedia Format: B5, stron: 1118 TWÓJ KOSZYK DODAJ DO KOSZYKA Wspó³czesna informatyka to nie tylko komputery i oprogramowanie. To setki technologii, narzêdzi i urz¹dzeñ umo¿liwiaj¹cych wykorzystywanie komputerów CENNIK I INFORMACJE w ró¿nych dziedzinach ¿ycia, jak: poligrafia, projektowanie, tworzenie aplikacji, sieci komputerowe, gry, kinowe efekty specjalne i wiele innych. Rozwój technologii ZAMÓW INFORMACJE komputerowych, trwaj¹cy stosunkowo krótko, wniós³ do naszego ¿ycia wiele nowych O NOWOFCIACH mo¿liwoYci. „Wielka encyklopedia komputerów” to kompletne kompendium wiedzy na temat ZAMÓW CENNIK wspó³czesnej informatyki. Jest lektur¹ obowi¹zkow¹ dla ka¿dego, kto chce rozumieæ dynamiczny rozwój elektroniki i technologii informatycznych. Opisuje wszystkie zagadnienia zwi¹zane ze wspó³czesn¹ informatyk¹; przedstawia zarówno jej historiê, CZYTELNIA jak i trendy rozwoju. Zawiera informacje o firmach, których produkty zrewolucjonizowa³y FRAGMENTY KSI¥¯EK ONLINE wspó³czesny Ywiat, oraz opisy technologii, sprzêtu i oprogramowania. Ka¿dy, niezale¿nie od stopnia zaawansowania swojej wiedzy, znajdzie w niej wyczerpuj¹ce wyjaYnienia interesuj¹cych go terminów z ró¿nych bran¿ dzisiejszej informatyki. • Komunikacja pomiêdzy systemami informatycznymi i sieci komputerowe • Grafika komputerowa i technologie multimedialne • Internet, WWW, poczta elektroniczna, grupy dyskusyjne • Komputery osobiste — PC i Macintosh • Komputery typu mainframe i stacje robocze • Tworzenie oprogramowania i systemów komputerowych • Poligrafia i reklama • Komputerowe wspomaganie projektowania • Wirusy komputerowe Wydawnictwo Helion JeYli szukasz ]ród³a informacji o technologiach informatycznych, chcesz poznaæ ul.
    [Show full text]
  • List of Versions Added in ARL #2547 Publisher Product Version
    List of Versions Added in ARL #2547 Publisher Product Version 2BrightSparks SyncBackLite 8.5 2BrightSparks SyncBackLite 8.6 2BrightSparks SyncBackLite 8.8 2BrightSparks SyncBackLite 8.9 2BrightSparks SyncBackPro 5.9 3Dconnexion 3DxWare 1.2 3Dconnexion 3DxWare Unspecified 3S-Smart Software Solutions CODESYS 3.4 3S-Smart Software Solutions CODESYS 3.5 3S-Smart Software Solutions CODESYS Automation Platform Unspecified 4Clicks Solutions License Service 2.6 4Clicks Solutions License Service Unspecified Acarda Sales Technologies VoxPlayer 1.2 Acro Software CutePDF Writer 4.0 Actian PSQL Client 8.0 Actian PSQL Client 8.1 Acuity Brands Lighting Version Analyzer Unspecified Acuity Brands Lighting Visual Lighting 2.0 Acuity Brands Lighting Visual Lighting Unspecified Adobe Creative Cloud Suite 2020 Adobe JetForm Unspecified Alastri Software Rapid Reserver 1.4 ALDYN Software SvCom Unspecified Alexey Kopytov sysbench 1.0 Alliance for Sustainable Energy OpenStudio 1.11 Alliance for Sustainable Energy OpenStudio 1.12 Alliance for Sustainable Energy OpenStudio 1.5 Alliance for Sustainable Energy OpenStudio 1.9 Alliance for Sustainable Energy OpenStudio 2.8 alta4 AG Voyager 1.2 alta4 AG Voyager 1.3 alta4 AG Voyager 1.4 ALTER WAY WampServer 3.2 Alteryx Alteryx Connect 2019.4 Alteryx Alteryx Platform 2019.2 Alteryx Alteryx Server 10.5 Alteryx Alteryx Server 2019.3 Amazon AWS Command Line Interface 1 Amazon AWS Command Line Interface 2 Amazon AWS SDK for Java 1.11 Amazon CloudWatch Agent 1.20 Amazon CloudWatch Agent 1.21 Amazon CloudWatch Agent 1.23 Amazon
    [Show full text]
  • Instant File Delivery Software Version 3.01
    Using DropChuteTM Instant file delivery software Version 3.01 Instructions for the DropChute family of software, including: l DropChute Pro l DropChute Enterprise The makers of HyperTerminal®, included l DropChute Lite with Microsoft Windows Information in this manual is subject to change without notice and does not represent a commitment on the part of Hilgraeve Inc. The software described in this manual is furnished under a license agreement. The software may be used or copied only in accordance with the terms of the agreement. It is against the law to copy the software on any medium except as specifically allowed in the agreement. No part of this manual may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without prior written permission of Hilgraeve Inc. RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure by the Government is subject to restrictions set forth in paragraph (b)(3)(B) of the Rights in Technical Data and Computer Software clause of DAR 7-104.9(a). Contractor/Manufacturer is Hilgraeve, Genesis Centre, 111 Conant Avenue, Suite A, Monroe, MI 48161. TRADEMARKS Microsoft, MS-DOS, and Windows are registered trademarks of Microsoft Corporation. DropChute, HyperGuard, and CommSense are trademarks of Hilgraeve Inc. Commercial names of products from other manufacturers or developers that appear in this manual are registered or unregistered trademarks of those respective manufacturers or developers, which have expressed neither approval nor disapproval of Hilgraeve products. DropChute Lite, DropChute Pro, and DropChute Enterprise are protected by US Patents 5,319,776 and 5,553,271. Document version 3.01 Copyright Hilgraeve Inc.
    [Show full text]
  • 20. CLI Command Summary
    SM8TAT2SA, SM16TAT2SA, SM24TAT2SA and SM8TAT2SA-DC Smart Managed Gigabit Ethernet PoE+ Switches 8-/16-/24-Port Gigabit PoE+, 2-Port 100/1000 SFP CLI Reference 33718 Rev. E 33718 Rev. E https://www.transition.com Page 1 of 270 Transition Networks SMxTAT2SA CLI Reference Trademarks All trademarks and registered trademarks are the property of their respective owners. Copyright Notice/Restrictions Copyright © 2017-2020 Transition Networks. All rights reserved. No part of this work may be reproduced or used in any form or by any means (graphic, electronic or mechanical) without written permission from Transition Networks. Printed in the U.S.A. SMxTAT2SA Smart Managed Switches CLI Reference, 33718 Rev. E Contact Information Transition Networks 10900 Red Circle Drive Minnetonka, MN 55343 USA tel: +1.952.941.7600 | toll free: 1.800.526.9267 | fax: 952.941.2322 [email protected] | [email protected] | [email protected] Revision History Rev Date Description Update for FW v1.01.1227 to support DMS on VLAN other than 1. FW v1.02.1261 updates SSL certificates. FW v1.02.1363: 802.1x supports assign VLAN attribute; C 11/9/18 DHCP server based on incoming port to assign IP address; add DHCP per Port, Link-Local Address binding interface, and NTP Time Sync Interval. Add Interface Config commands. Update for FW v1.02.1368 which adds non-stop PoE power on reboot. Update for FW v1.02.1398 which adds PoE Force mode. Update for FW v1.02.1409 HW v1.03, Mechanical D 8/26/19 v1.01, and PoE FW v 208-211: upgrade security, add Traffic Manager back in DMS, PoE force mode, PoE Auto Power Reset event in Event Notifications, add PoE Soft Reboot feature.
    [Show full text]
  • List of Applications Updated in ARL #2581
    List of Applications Updated in ARL #2581 Application Name Publisher .NET Core Runtime 3.0 Preview Microsoft .NET Core Toolset 3.1 Preview Microsoft .NET Framework 4.5 Microsoft .NET Framework 4.6 Microsoft .NET Framework Developer Pack 4.7 Microsoft .NET Framework Multi-Targeting Pack for Windows Store Apps 4.5 RC Microsoft .NET Framework SDK 4.8 Microsoft _connect.BRAIN 4.8 Bizerba 2200 TapeStation Software 3.1 Agilent Technologies 2200 TapeStation Software 3.2 Agilent Technologies 24x7 Automation Suite 3.6 SoftTree Technologies 3500 Rack Configuration Software 6.0 Bently Nevada 365 16.0 Microsoft 3D Sprint 2.10 3D Systems 3D Sprint 2.11 3D Systems 3D Sprint 2.12 3D Systems 3D Viewer Microsoft 3PAR Host Explorer VMware 4.0 HP 4059 Extended Edition Attendant Console 2.1 ALE International 4uKey 1.4 Tenorshare 4uKey 1.6 Tenorshare 4uKey 2.2 Tenorshare 50 Accounts 21.0 Sage Group 50 Accounts 25.1 Sage Group 793 Controller Software 5.8 MTS Systems 793 Controller Software 5.9 MTS Systems 793 Controller Software 6.1 MTS Systems 7-Zip 19.00 Igor Pavlov ABAQUS 2018 Student Dassault Systemes ABAQUS 2019 Student Dassault Systemes Abstract 73.0 Elastic Projects ABU Service 14.10 Teradata Access Client 3.5 Barracuda Networks Access Client 3.7 Barracuda Networks Access Client 4.1 Barracuda Networks Access Module for Azure 15.1 Teradata Access Security Gateway (ASG) Soft Key Avaya AccuNest 10.3 Gerber Technology AccuNest 11.0 Gerber Technology ACDSee 2.3 Free ACD Systems ACDSee 2.4 Free ACD Systems ACDSee Photo Studio 2019 Professional ACD Systems
    [Show full text]
  • Model 428T Operators Manual
    MODEL 428T DIRECT THERMAL PRINTER OPERATOR’S MANUAL PART NUMBER: 880037-0155 September 29, 2014 CPC Copyright © 2014 by Microcom Corporation, Lewis Center, Ohio – All rights reserved. Printed in the United States of America Proprietary Statement This manual contains information proprietary to Microcom Corporation. This information is intended solely for the use of parties operating and maintaining such equipment described herein. Product Enhancements Microcom Corporation is committed to the continual improvement of performance and quality in our products. For this reason, specifications are subject to change without notice. Liability Disclaimer Microcom Corporation makes every effort to assure that all information and specifications contained in this manual are accurate; however, mistakes are sometimes made. Microcom Corporation shall not be liable for any damages resulting in the use or misuse of this product. The exclusion or limitation involving consequential or incidental damage does not apply to all states; therefore limitation mentioned above may or may not apply. FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to Part 15 of the FCC rules. These limits are designed to provide reasonable protection against harmful interference when the equipment is operated in a commercial environment. This equipment generates, uses, and can radiate radio frequency energy, and if not installed and used in accordance with the instructions contained in this manual, may cause harmful interference to radio communications. HyperTerminal® and HyperAccess® are trademarks of Hilgraeve Inc. Centronics® is a registered trademark of Data Computer Corporation. HP® and LaserJet II® are trademarks of Hewlett-Packard Company.
    [Show full text]
  • 438M Programming Guide - 880043-0101 I
    438M PROGRAMMING GUIDE PART NUMBER 880043-0101 Revised: June 22, 2021 CPC © Copyright 2021 by Microcom Corporation, Lewis Center, Ohio – All rights reserved. Printed in the United States of America This Page Intentionally Left Blank This Page Intentionally Left Blank Proprietary Statement This manual contains information proprietary to Microcom Corporation. This information is intended solely for the use of parties operating and maintaining such equipment described herein. Product Enhancements Microcom Corporation is committed to the continual improvement of performance and quality in our products. For this reason, specifications are subject to change without notice. Liability Disclaimer Microcom Corporation makes every effort to assure that all information and specifications contained in this manual are accurate; however, mistakes are sometimes made. Microcom Corporation shall not be liable for any damages resulting in the use or misuse of this product. The exclusion or limitation involving consequential or incidental damage does not apply to all states; therefore limitation mentioned above may or may not apply. FCC Compliance Statement This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to Part 15 of the FCC rules. These limits are designed to provide reasonable protection against harmful interference when the equipment is operated in a commercial environment. This equipment generates, uses, and can radiate radio frequency energy, and if not installed and used in accordance with the instructions contained in this manual, may cause harmful interference to radio communications. SolarWinds® is a registered trademark of SolarWinds.Net, Inc. Tera Term Pro® is a registered trademark of T.
    [Show full text]
  • Virus Bulletin, November 1990
    November 1990 ISSN 0956-9979 THE AUTHORITATIVE INTERNATIONAL PUBLICATION ON COMPUTER VIRUS PREVENTION, RECOGNITION AND REMOVAL Editor: Edward Wilding Technical Editor: Fridrik Skulason, University of Iceland Editorial Advisors: Jim Bates, Bates Associates, UK, Phil Crewe, Fingerprint, UK, Dr. Jon David, USA, David Ferbrache, Information Systems Integrity & Security Ltd., UK, Ray Glath, RG Software Inc., USA, Hans Gliss, Datenschutz Berater, West Germany, Ross M. Greenberg, Software Concepts Design, USA, Dr. Harold Joseph Highland, Compulit Microcomputer Security Evaluation Laboratory, USA, Dr. Jan Hruska, Sophos, UK, Dr. Keith Jackson, Walsham Contracts, UK, Owen Keane, Barrister, UK, Yisrael Radai, Hebrew University, Israel, John Laws, RSRE, UK, David T. Lindsay, Digital Equipment Corporation, UK, Martin Samociuk, Network Security Management, UK, John Sherwood, Sherwood Associates, UK, Dr. Ken Wong, BIS Applied Systems, UK, Ken van Wyk, CERT, USA. CONTENTS FOR PROGRAMMERS Virus Encryption Techniques 13 EDITORIAL 2 VIRUS ANALYSIS TECHNICAL NOTES 3 WHALE MAC THREATS - A Dinosaur Heading for Extinction 17 MDEF C 4 ADDENDUM FROM THE FIELD Jonah’s Journey 4K - A Warning of Data - A Complementary Report 20 Corruption 5 FOR MANAGEMENT PRODUCT REVIEW PC Security Part I. Controlling the HyperACCESS/5 - A Virus Operating System 7 Filtering COMMS Package 21 END-NOTES & NEWS 24 KNOWN IBM PC VIRUSES 11 VIRUS BULLETIN ©1990 Virus Bulletin Ltd, 21 The Quadrant, Abingdon Science Park, Oxon, OX14 3YS, England. Tel (+44) 235 555139. /90/$0.00+2.50 This bulletin is available only to qualified subscribers. No part of this publication may be reproduced, stored in a retrieval system, or transmitted by any form or by any means, electronic, magnetic, optical or photocopying, without the prior written permission of the publishers.
    [Show full text]
  • Express XR/XRT 128 Kbps ISDN Modem
    Table of Contents Express XR/XRT 128 kbps ISDN Modem Quick Start Guide 1200153L1 Express XR, Data Only 1200153L2 Express XRT, Two Phone Ports 3360.9VU01 Express XR Power Supply, 9.0 V DC Output 336048VUR-2 Express XRT Power Supply, 48 V DC Output 61200.153L1-13E September 1996 Table of Contents Trademarks Express XR, Express XRT, and Express Configuration Wizard are trademarks of ADTRAN, Inc. Hayes is a registered trademark of Hayes Microcomputer Products, Inc. HyperACCESS is a registered trademark of Hilgraeve Inc. MicroPhone Pro is a trademark of Software Ventures Corporation. PROCOMM PLUS is a registered trademark of Datastorm Technologies, Inc. ReachOut is a registered trademark of Stac Electronics. Windows is a registered trademark and Windows NT is a trademark of Microsoft Corporation. pcANYWHERE is a trademark of Symantec Corporation. The Express XR and Express XRT incorporate Synchronous Data Compres- sion based on either IBM or Stac Electronics proprietary intellectual property depending on the time of manufacture. The following trademarks and copyrights are applicable: Stacker LZS Compression Copyright (c) 1989 Carnegie Mellon University. All rights reserved. Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materi- als related to such distribution and use acknowledge that the software was developed by Carnegie Mellon University. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. This software is provided "as is" and without any express or implied warranties, including, without limita- tion, the implied warranties of merchantability and fitness for a particular 901 Explorer Boulevard P.O.
    [Show full text]
  • Apprentice431 Usermanual V1
    © 2001 Autodesk, Inc. All rights reserved. Autodesk, the Autodesk logo, AutoCAD, Buzzsaw, Layered Document Format, LDF and Plans & Specs are either registered trademarks or trademarks of Buzzsaw, Inc. or Autodesk, Inc. in the U.S.A. or other countries. All other trademarks are the property of their respective owners. Ppir ! 8uhr D qpv :KDW,V$SSUHQWLFH" $SSUHQWLFH6HUYHU $SSUHQWLFH5HPRWH&OLHQW 7KH&RQFHSW *HWWLQJ+HOS 2QOLQHKHOS 7RROWLSV :HEVLWH 8uhr ! Dhyyhv ,QVWDOOLQJ$SSUHQWLFH 8uhr " UurTsh rDr shpr 6WDUWLQJ$SSUHQWLFH 7KH8VHU,QWHUIDFH 0HQXEDU 7RROEDUDQGTXLFNPHQXV ,QIRUPDWLRQEDU 3HQRYHUYLHZ :LQGRZ /RJR 9LHZHUWRROEDU 7LWOHEDU 6WDWXVEDU $FFHVVLQJPHQXVDQGRSWLRQV 6HWWLQJSUHIHUHQFHV 4XLWWLQJ$SSUHQWLFH 8uhr # 8svt hv &RQILJXULQJ0DMRU3URGXFWV *HQHUDOWDE &RPPXQLFDWLRQVWDE -RE'HIDXOW6HWWLQJVWDE 'LUHFWRULHVWDE 3RVW6FULSWWDE " $XWR&$'WDE 3DSHU6L]HVWDE ,QWURGXFWLRQWR&RQILJXUDWLRQ0DQDJHU 8VLQJWKH&RQILJXUDWLRQ0DQDJHU 8QGHUVWDQGLQJWKHVHWWLQJV /RFDWLQJVSHFLILFVHWWLQJV 8uhr $ X xP qr 8vr $FFHVVLQJWKH:RUN2UGHU&XVWRPL]HU 2UGHU5HFHLSW+HDGHU :RUN2UGHUILHOGV :RUN2UGHUFRORUVDQGIRQWV 3UHYLHZLQJWKH:RUN2UGHU&KDQJHV 'LVWULEXWLQJWKH&XVWRPL]HG:RUN2UGHU 8uhr % ChqyvtEi ,QWURGXFWLRQ &UHDWLQJQHZMREV $GGLQJILOHVWRMREV $GGLQJGUDZLQJVIURP3URMHFW3RLQWVLWHV ,QVHUWLQJ)LOHVLQWRD-RE $GGLQJILOHVIURPDWH[WILOH 6DYLQJMREV &ORVLQJMREV 2SHQLQJH[LVWLQJMREV 0HUJLQJMREV 5HPRYLQJGUDZLQJVIURPMREV 'HOHWLQJGUDZLQJV 5HQDPLQJMREV 2UJDQL]LQJ'UDZLQJV:LWKLQD-RE 6NLSSLQJGUDZLQJVZLWKLQDMRE 0RYLQJGUDZLQJVZLWKLQDMRE &RS\LQJGUDZLQJVZLWKLQDMRE
    [Show full text]
  • Auto-Configuration of Cisco Routers with Application Software
    Calhoun: The NPS Institutional Archive Theses and Dissertations Thesis Collection 2003-09 Auto-configuration of Cisco routers with application software Prado, Alexandre Barcellos Monterey, California. Naval Postgraduate School http://hdl.handle.net/10945/6285 MONTEREY, CALIFORNIA THESIS AUTO-CONFIGURATION OF CISCO ROUTERS WITH APPLICATION SOFTWARE by Alexandre Barcellos Prado September 2003 Thesis Advisor: Geoffrey Xie Second Reader: John Gibson Approved for public release; distribution is unlimited THIS PAGE INTENTIONALLY LEFT BLANK REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704- 0188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instruction, searching existing data sources, gathering and maintaining the data needed, and completing and reviewing the collection of information. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to Washington headquarters Services, Directorate for Information Operations and Reports, 1215 Jefferson Davis Highway, Suite 1204, Arlington, VA 22202-4302, and to the Office of Management and Budget, Paperwork Reduction Project (0704-0188) Washington DC 20503. 1. AGENCY USE ONLY (Leave blank) 2. REPORT DATE 3. REPORT TYPE AND DATES COVERED September 2003 Master’s Thesis 4. TITLE AND SUBTITLE: Auto-Configuration of Cisco 5. FUNDING NUMBERS Routers with Application Software 6. AUTHOR(S) Prado, Alexandre 7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) 8. PERFORMING ORGANIZATION Naval Postgraduate School REPORT NUMBER Monterey, CA 93943-5000 9. SPONSORING /MONITORING AGENCY NAME(S) AND ADDRESS(ES) 10. SPONSORING/MONITORING N/A AGENCY REPORT NUMBER 11. SUPPLEMENTARY NOTES The views expressed in this thesis are those of the author and do not reflect the official policy or position of the Department of Defense or the U.S.
    [Show full text]
  • Communications Manual
    TABLE OF CONTENTS Understanding GPNet 2 GPNet Submissions 2 Acceptable Asynchronous Communications Communications Packages 2 Technical Support 3 ANSI 837 Completion Information 4 Manual Version 5010 4 Payer ID Information 4 Using GPNet Asynchronous Transmission 5 Log In and User Validation 5 Messages 5 Main Menu 5 Upload a File 5 Download a File 6 List Files In Mailbox 7 Example of INV Message 8 NDM Response Examples 8 Informational Message 8 Invalid File Header 8 Rejected ID 8 System Accessibility 8 GPNet File Transfer Protocol (FTP) 9 FTP Instructions 9 Logging onto GPNet Using FTP 9 Uploading Files Using FTP 12 Downloading Files Using FTP 13 Network Data Mover (NDM) Specifications 14 NDM Node Connection 14 PLEASE NOTE: The GPNet Communications Manual is subject to change as we receive Report Retrieval 14 additional information regarding the transition 837 Claims Submission Dataset Names 15 to HIPAA-ready electronic formats. We will post updated versions of this and other ANSI v5010 Responses 16 HIPAA-related documents on our website. Please visit the CGS J15 Web page at TA1 16 http://www.cignagovernmentservices.com/J15. 999 16 277CA 16 Accepted 17 Rejected 18 835 18 GPNet Communications Manual UNDERSTANDING GPNET GPNet is the EDI gateway to CGS. The GPNet communication platform supports asynchronous telecommunications up to 56K bps. It will support numerous asynchronous telecommunication protocols, including Kermit, Xmodem (Check Sum), Ymodem (Batch), and Zmodem. Most off- the-shelf communication software will support one or all of these protocols. You may select any of the protocols indicated; however, Zmodem is recommended based on its speed and reliability.
    [Show full text]