Customization and Programming Guide Is Not the Work of One Person Or Even of Two People

Total Page:16

File Type:pdf, Size:1020Kb

Customization and Programming Guide Is Not the Work of One Person Or Even of Two People Customization & Programming Guide by Tony Woozley Revised for Nota Bene 8.0 by Mary Bernard This revised edition is dedicated to Tony Woozley, mentor and friend, and to the memory of Dorothy Day Preface to the Revised Edition i Preface to the Revised Edition of the CPG The Customization and Programming Guide is not the work of one person or even of two people. Some of it has been around since Nota Bene 1, such as the examples using ‘WEBER.DOC’ in Chapter 4. Some of it may have come from a XyWrite manual. XyWrite is the word-processing program from which Nota Bene derived. Like NB it crossed the DOS barrier and became a Windows program; unlike NB, it is no longer commercially available. (Nota Bene and XyWrite are extremely similar; they both use the XyWrite Programming Language—XPL. NB uses it less in Windows than in DOS versions, but there are current examples in the *.AUX files in the main NB program folder. All but a few XyWrite codes (mostly DOS-related) work in NBWin.) The first three versions of Nota Bene had a terse XPL programming section, the Customiza- tion and Programming Guide (CPG). NB 4, released in 1993, had a superb manual, the Big Black Book, but no programming guide. However, the company asked Tony Woozley, a retired professor of philosophy at the University of Virginia, to revise and update the old Guide. Tony rewrote and expanded it. In his hands it became lucid, elegant and informative, a true guide for the beginner as well as a work of reference for more advanced XPL program- mers. Nota Bene became a Windows program in 1998, with version 5.0 of the program. There was still no programming section in the manual, now called Help, and online rather than printed. XPL still worked (and works) in NBWin, though some user programs written for NB DOS needed minor revision. Tony’s version of the CPG needed revising, too. Almost all the information about XPL was still valid, but a few older codes weren’t, and it had whole chap- ters on NB DOS features that didn’t work in NBWin, such as function OV. Eight years late, here is a revision of the CPG manual for NBWin, up to date for version 8. It is still largely Tony’s Guide; I have tried to match the tone and spirit of his version, insofar as possible. I want to thank Carl Distefano for letting me include excerpts from his end of our email cor- respondence as Chapter 10, a ‘Miscellany of XPL Information,’ and Robert Holmgren for letting me include his ‘Compendium of XyWrite/NB Variables’ as Chapter 9. I owe them both thanks for their illuminating answers to my XPL questions over the past several years; and I especially want to thank Robert for debugging and hastily editing this file at the last moment. I am grateful to the many members of the Nota Bene Users’ list whose answers to my ques- tions have helped me to make the Guide as accurate as possible. Particular thanks are due to Jukka-Pekka Takala, Joel Lidov, Michael Norman Jannik Lindquist and Rick Penticoff; and ii Preface to the Revised Edition to Steve Siebert, creator and chief programmer of Nota Bene, who answered questions about codes while getting NB8 out of beta. I’d like to thank him and Anne Putnam, president of Nota Bene, for letting me add information about customization and programming, and links to this Guide and other XPL resources, to NB8 online Help. Printing the CPG The Guide is carefully formatted for printing on both European A4 and American 8½" x 11" paper. Each page therefore ends with a hard page break. If you change them, pages and tables may break in awkward places. If you have downloaded only the PDF version of the CPG, you may want to download CPG.NB as well. A few pages contain actual XPL code, which you can view in CPG.NB by changing to Codes View—which of course you can't do with the PDF. Notes on the text of the CPG I have not changed Tony Woozley’s prefatory note to the DOS version except to update his email address and add a footnote about files. Italicised notes in the text. These are brief supplements to information that has survived otherwise unchanged from the DOS version of the Guide. Faux program codes in the text Since the CPG is formatted to be printable, function codes are represented by uppercase character in boldface (e.g., BX) and command brackets by Euroquotes (e.g., «SV01,Y»). You cannot copy and paste these characters into a file and run the file as a program. You can copy/paste them, but you must then change to Show Codes View, eliminate the strings that look (for instance) like: «MB+BO»BX«MDNM», and enter a BX code by doing ‘pfunc bx’. You can then do a global change of all « and » characters to command brackets (on Ctrl+, [Ctrl + comma] and Ctrl+. [Ctrl + period/full stop]). It is actually much easier simply to rewrite the program in real code, using the pfunc key and the keys that enter true command brackets. Updates to the newGuide With luck, the information in this version will be valid for a good while. I maintain an unofficial list of all the keyboard and programming codes (or all that I can find) that are valid in Nota Bene for Windows. As of July 2006, the entire list is included in Chap- ter 8 of the CPG. I shall update the list whenever an update of NB includes a significant amount of new code, send it to Rick Penticoff for posting on his NB Users’ website, and notify the NB List (see below) that it is available. You will be able to download it from: http://www.penticoff.com/nb/programming/nb-codes.zip. I shall list new codes at the head of the file as well as incorporating them into the alphabetical ordering, so that you can quickly check what is new. Preface to the Revised Edition iii Troubleshooting Errors in the CPG Please send corrections to [email protected] Back Up Before Customizing Before you do any customization whatever, back up. Back up your data files before running programs on them; back up your keyboard file before editing it. This is of paramount impor- tance. It is very easy to make a slip while customizing a keyboard. NB may then load an ancient default keyboard with important keys in bewildering places. If you have a backup, you can open Windows Explorer and restore your original keyboard file to the c:\nbwin\users\default folder. It is even more important to back up your data files before running a user program, whether you’ve written it yourself or downloaded it from another user or the users’ website. Programs that work on one system don’t always work on another. Programs you write yourself almost always have mistakes at first. Usually they simply don’t run. But some mistakes can swallow data, such as the file on which you want the user program to work, or possibly some other file or files. And mistakes often cause NB to lock up. So save and back up before you begin trying out programs. Disclaimer These notes are provided by me, not by Nota Bene Associates, Inc. They have kindly allowed me to include them in the Help file, but Nota Bene Technical support cannot help with user programs or keyboard definitions that aren’t working. If you try your hand at programming, you should have enough experience with computers not to be too fazed by program and/or computer crashes. They will almost certainly happen as you write and test XPL programs—they happen to everyone who tinkers with programming. If you are stymied, ask for help on the users’ list (for how to join, see p. iv). If you ask for help It is hard to read someone else’s XPL program if it is not broken up into lines and commented—it is even hard to read one’s own programs a while after writing them. If you send a program to the NB user list in hopes of getting help with it, you must comment it—in the program, not just in your message. You need to include the purpose of the program, what is going wrong with it. You should break it up into lines, and precede each with a description of what you intend the line of code to do, e.g., ;*; Label 3. Move cursor Left one character. Backdelete previous character. Insert para- graph marker «lb3»«CL BD ¿ ;*; Go to Label E «glLE» See p 90 for information on how to comment a program. iv Preface to the Revised Edition Online Customization and Programming Resources Rick Penticoff’s NB Users’ website This is a major source of tips, manuals, user programs and useful links. It is at: http://www.penticoff.com/nb/index.htm NBKEY.KEY—the Keyboard Table This table shows the key assignments of all keys in all the shift states (Unshifted, Shift, Ctrl, etc.) in NB.KBD as delivered. You should print it out if you are doing keyboard customizing. It is in C:\NBWIN\DOCUMENT\SAMPLES. Greg Polly’s Tutorial Greg Polly has written a basic tutorial on how to write a program in Nota Bene for Windows. It’s at: http://www.penticoff.com/nb/help/howtorun.htm. You should use the codes lists in Chapters 2 and 8 rather than his appendix of command codes, which are taken from the DOS edition of the CPG.
Recommended publications
  • Application Description PROCONTROL P 87TS01-E/R1313 Coupling Module
    Application Description PROCONTROL P Communication Coupling Module Time Master Publication No. D KWL 6316 96 E, Edition 10/96 Replacing D KWL 6316 96 E, Edition 05/96 87TS01-E/R1313 Application Every 59th second, a DCF77 time receiver coupled to the 87TS01-E/ R1313 module through an RS232c interface, conĆ forming to the prescribed time data format and transfer protoĆ Within the PROCONTROL system, module 87TS01-E/R1313col, sends the complete time telegram of the following full minĆ functions as a master clock which is set by a radioute clock and, (over in the 60th second, sends a synchronization characĆ a serial interface; reception is from the DCF77 timeter. transmitĆ This synchronization character is evaluated, and the interĆ ter), and which needs to be synchronized. The timenal received clock in module 87TS01-E/R1313 is synchronized. from the radio clock is made available to the entire PROCONĆ TROL system and is used as system time. It isThe transmitted master clock follows a 5-msec-rhythm and is synchroĆ cyclically in the form of time telegrams. nized to the DCF77 time receiver every 60 sec. Disturbance signals are generated if the time receiver or the internal clock The time telegrams containing the system time mayshould be reĆ fail. If synchronization takes place every 60 sec, the ceived and processed by modules specifically designedmaster for clock tends to go slow by < 5 msec. In the event of a this purpose. failure of the time receiver, the typical inaccuracy of the internal master clock is 3.4 sec/24 hrs. If an inaccuracy of a maximum of ± 1 sec is detected, the master clock is immediately switched over to the time received from the DCF77 time receiver.
    [Show full text]
  • GPS170PEX User Manual
    Technical Information Operating Instructions GPS170PEX Contact Information Meinberg Funkuhren GmbH & Co. KG Lange Wand 9 D-31812 Bad Pyrmont Phone: ++49 52 81 - 9309-0 Fax: ++49 52 81 - 9309-30 Internet: http://www.meinberg.de Email: [email protected] September 16, 2009 Table of Contents Contact Information............................................................................. 2 Content of the USB stick ..................................................................... 5 General information............................................................................. 6 PCI Express (PCIe) .............................................................................. 7 Block diagram GPS170PEX ................................................................ 8 GPS170PEX features ........................................................................... 9 Time zone and daylight saving .................................................. 9 Asynchronous serial ports ........................................................ 10 Time capture inputs.................................................................. 10 Pulse and frequency outputs .................................................... 10 DCF77 emulation ..................................................................... 12 Connectors and LEDs in the rear slot cover ...................................... 13 Installing the GPS170PEX in your computer.................................... 14 Configuring the 9 pin connector .............................................. 14 Mounting the
    [Show full text]
  • 7502.9039-MANUAL-Montgomery-MIPROM-21.Pdf
    This is Your Software Security Access Key: DO NOT LOSE IT ! DO NOT PLUG THE SECURITY KEY INTO ANY ELEVATOR INTERFACE PORT This security device must be plugged into the notebook computer’s PRINTER port whenever the FREEDOM Tool Software is to be run. List of Trademarks Microsoft Windows, Windows 95, and MS-DOS are registered trademarks/products of Microsoft Corporation. Megatech and MIPROM 21 are trademarks of the Montgomery-Kone Elevator Corporation. IBM and PS/2 are registered trademarks of International Business Machines Corporation WORLD electronics, the WORLD electronics logo, FREEDOM Tool and FREEDOMWare are registered trademarks of WORLD electronics Sales and Service, Inc. All other trademarks mentioned in this manual are the sole property of their respective manufacturers. Copyright © 1998-2003 by WORLD electronics®. All rights reserved. Printed in the United States of America. Except as permitted under the United States Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a data base or retrieval system, without the prior written permission of WORLD electronics. Further, this publication and features described herein are subject to change without notice from the publisher. WORLD electronics Table of Contents Introduction ................................................................................................ 2 Features ................................................................................................................................
    [Show full text]
  • Conversion from Decimal There Is a Simple Method That Allows Conversions from the Decimal to a Target Number System
    APPENDICES A Number Systems This appendix introduces background material on various number systems and representations. We start the appendix with a discussion of various number systems, including the binary and hexadecimal systems. When we use multiple number systems, we need to convert numbers from system to another We present details on how such number conversions are done. We then give details on integer representations. We cover both unsigned and signed integer representations. We close the appendix with a discussion of the floating-point numbers. Positional Number Systems The number systems that we discuss here are based on positional number systems. The decimal number system that we are already familiar with is an example of a positional number system. In contrast, the Roman numeral system is not a positional number system. Every positional number system has a radix or base, and an alphabet. The base is a positive number. For example, the decimal system is a base-10 system. The number of symbols in the alphabet is equal to the base of the number system. The alphabet of the decimal system is 0 through 9, a total of 10 symbols or digits. In this appendix, we discuss four number systems that are relevant in the context of computer systems and programming. These are the decimal (base-10), binary (base-2), octal (base-8), and hexadecimal (base-16) number systems. Our intention in including the familiar decimal system is to use it to explain some fundamental concepts of positional number systems. Computers internally use the binary system. The remaining two number systems—octal and hexadecimal—are used mainly for convenience to write a binary number even though they are number systems on their own.
    [Show full text]
  • Agent Builder Troubleshooting Guide Chapter 1
    IBM Agent Builder Version 6.3.1 Troubleshooting Guide IBM Agent Builder Version 6.3.1 Troubleshooting Guide ii Agent Builder Troubleshooting Guide Chapter 1. Gathering product information for IBM Software Support Gather certain product information before you contact IBM® Software Support. About this task Gather the product information that is detailed in: Table 1. Procedure Gather the following information before you contact IBM Software Support: Table 1. Information to gather before you contact IBM Software Support Information type Description Log files Collect trace log files from failing systems. Most logs are in a logs subdirectory on the host computer. See Chapter 2, “Agent Builder Trace logging,” on page 3 for lists of all trace log files and their locations. Operating system Operating system version number and patch level Messages Messages and other information that is displayed on the screen Version numbers for an IBM Tivoli® Monitoring environment Version number of the following members of the monitoring environment v Tivoli Monitoring. Also, provide the patch level, if available. v Tivoli Monitoring: Windows OS Agent v Tivoli Monitoring: UNIX OS Agent v Tivoli Monitoring: Linux OS Agent Version numbers for an IBM Performance Management Version number of the following members of the environment monitoring environment v Operating System agent installed on the monitored system. v Monitoring Infrastructure Node (if installed on your premises). Tip: If you are using IBM Performance Management (SaaS), you do not install the Monitoring Infrastructure Node on your premises. Instead, a version hosted in the cloud is used. In this case, you do not need to provide the version number for this component.
    [Show full text]
  • Digital Alarm Communicator/Transmitters 411/411UD Manual
    Digital Alarm Communicator/Transmitters 411/411UD Manual Document LS10105-000GE-E 1/29/2014 Rev: A P/N LS10105-000GE-E:A ECN 13-875 Fire Alarm & Emergency Communication System Limitations While a life safety system may lower insurance rates, it is not a substitute for life and property insurance! An automatic fire alarm system—typically made up of smoke (caused by escaping gas, improper storage of flammable materi- detectors, heat detectors, manual pull stations, audible warning als, etc.). devices, and a fire alarm control panel (FACP) with remote notifi- Heat detectors do not sense particles of combustion and alarm cation capability—can provide early warning of a developing fire. only when heat on their sensors increases at a predetermined Such a system, however, does not assure protection against rate or reaches a predetermined level. Rate-of-rise heat detec- property damage or loss of life resulting from a fire. tors may be subject to reduced sensitivity over time. For this An emergency communication system—typically made up of reason, the rate-of-rise feature of each detector should be tested an automatic fire alarm system (as described above) and a life at least once per year by a qualified fire protection specialist. safety communication system that may include an autonomous Heat detectors are designed to protect property, not life. control unit (ACU), local operating console (LOC), voice commu- IMPORTANT! Smoke detectors must be installed in the same nication, and other various interoperable communication meth- room as the control panel and in rooms used by the system for ods—can broadcast a mass notification message.
    [Show full text]
  • Embedded Systems Programming with the Microchip PIC16F877 Microcontroller
    EMBEDDED SYSTEMS PROGRAMMING WITH THE PIC16F877 Second Edition By Timothy D. Green Copyright 2008 by Timothy D. Green All Rights Reserved. Table of Contents Preface …………………………………………………………………. 5 List of Figures …………………………………………………………. 6 Abbreviations and Acronyms …………………………………………. 7 Trademarks ……………………………………………………………. 10 Chapter 1 Introduction to ESP and the PIC …………………………. 11 Chapter 2 Microcontrollers and the PIC16F877 ……………………. 15 Section 2.0 Chapter Summary ……………………………….. 15 Section 2.1 Memory and Memory Organization ……………. 15 Section 2.2 The PIC16F877 …………………………………. 16 Section 2.3 Programming the PIC …………………………… 17 Chapter 3 Simple PIC Hardware & Software (“Hello World”) …….. 20 Section 3.0 Chapter Summary ……………………………….. 20 Section 3.1 A Simple Example System ……………………… 20 Section 3.2 Summary of Instructions and Concepts …………. 25 Chapter 4 The PIC Instruction Set (Part I) ………………………….. 27 Section 4.0 Chapter Summary ………………………………. 27 Section 4.1 The PIC16F877 Instruction Set ………………… 27 Section 4.2 Summary of Instructions and Concepts …………. 33 Chapter 5 The PIC Instruction Set (Part II) …………………………. 34 Section 5.0 Chapter Summary ……………………………….. 34 Section 5.1 Introduction ……………………………………… 34 Section 5.2 Keypad and Display Interface …………………… 35 Section 5.3 The STATUS Register and Flag Bits ……………. 39 Section 5.4 The Keypad Software ……………………………. 40 Section 5.5 The LED Display Software ……………………… 43 Section 5.6 Improved Display and Indirect Addressing ……… 46 Section 5.7 Odds & Ends …………………………………….. 50 Section 5.8 Using KEY_SCAN and DISPLAY Together ……. 54 Section 5.9 A Last Look at the Advanced Security System ….. 56 Section 5.10 Summary of Instructions and Concepts ………… 57 Chapter 6 Fundamental ESP Techniques ……………………………. 59 Section 6.0 Chapter Summary ………………………………… 59 Section 6.1 Introduction ………………………………………. 59 Section 6.2 Software Readability …………………………… 59 Section 6.3 Software Maintainability ………………………….
    [Show full text]
  • Technical Description 6036
    Technical Description Radio Clock for IBM PC XT/AT and Compatible 6036 version 04.02 30.08.99 Radio Clock 6036 KRSIBElektronik KRSIBElektronik Nottebohmstr. 41 58511 Lüdenscheid post box 1847 58468 Lüdenscheid fon: 02351 / 938686 fax: 02351 / 459590 Internet: http://www.hopf-time.com e-mail: [email protected] version 04.02 page 2 Radio Clock 6036 KRSIBElektronik CONTENS Page 1 General Information about the Circuit Board 6036 5 2 Starting the Radio Clock Circuit Board 6036 5 2.1 Hardware Setting Base Address and Mode 5 2.1.1 Mode 6030 = Limited Address Range of Hex 10 Addresses 6 2.1.2 Mode 6035/6036 = Extended Address Range of Hex 40 Addresses 6 2.1.3 UTC-Offset 6 3 Organisation of the Internal Clock Data 7 3.1 Example Reading of Time Data 8 3.2 Data Format 8 3.3 Setting the Clock with a New Time (in mode 6035/6036 only) 9 3.4 Millisecond 9 4 Status of the Clock and Reception Quality 10 4.1 Radio Operation 11 4.2 Quartz Operation 11 4.3 Reception Quality and Control Accuracy 11 5 Interrupt Possibilities 12 5.1 Activation of the Interrupt Output (only in mode 6035/6036) 12 5.2 Secondsynchronous Interrupts 13 5.3 Stopping the Interrupt Output 13 6 Reset of the Clock (only in Mode 6035/6036) 13 7 Master / Slave Operation of the Clock (in mode 6035/6036 only) 14 8 Antenna Installation 15 8.1 Usable Types of Antennas 15 8.2 Alignment of the antenna 15 8.3 Indirect Lightning Protection 18 9 Programming Help, Precautionary Measures and Source of Errors 19 10 Pulse Output 19 11 Description of the Front Panel of the Board 20 12 Technical Data 21 version 04.02 page 3 Radio Clock 6036 KRSIBElektronik second page for table of contents version 04.02 page 4 Radio Clock 6036 KRSIBElektronik 1 General Information about the Circuit Board 6036 • latest receiver design with faultless decoding of the signal even in difficult reception situations • plugging jumpers not necessary! All address and mode settings are carried out by the software included in the delivery.
    [Show full text]
  • Cobox Network Time Server
    CoBox Network Time Server Installation Guide CONTENTS 1 DESCRIPTION OF THE NETWORK TIME SERVER (NTS) 2 RELIABLE CLOCK SOURCES GLOBAL POSITIONING SATELLITE (GPS) SYSTEM .................................. 2-1 DCF-77 LF RADIO TRANSMITTER......................................................... 2-1 WWVB RADIO TRANSMITTER .............................................................. 2-1 3 HARDWARE INSTALLATION REQUIREMENTS CONTROLLER........................................................................................ 3-1 ANTENNA............................................................................................. 3-1 ANTENNA CABLE.................................................................................. 3-1 4 CONTROLLER SETUP NETWORK CONFIGURATION .................................................................. 4-1 FACTORY IP ADDRESS .......................................................................... 4-1 INITIAL IP ADDRESS SETTING ............................................................... 4-1 SERIAL CONFIGURATION....................................................................... 4-2 CONFIGURATION PARAMETERS ............................................................. 4-3 BASIC PARAMETERS ............................................................................. 4-3 Ethernet Interface ......................................................................... 4-3 Token Ring Interface .................................................................... 4-3 Locally Administered Hardware Address .....................................
    [Show full text]
  • Acclima TDR Sensor User Manual
    Acclima TDR Sensor User Manual Contents About the TDR Sensor ................................................................................................................................... 2 TDR Sensor Models ....................................................................................................................................... 2 TDR315x Description and Installation ....................................................................................................... 3 TDR315x Optimum Application ................................................................................................................ 3 TDR310x Description and Installation ....................................................................................................... 3 TDR310x Optimum Application ................................................................................................................ 4 TDR305x Description, Installation and Optimum Application .................................................................. 4 Sensor Connection and Setup ....................................................................................................................... 4 Sensor Connections .................................................................................................................................. 4 Setting the Sensor Address ....................................................................................................................... 5 Setting Addresses using the Acclima SDI-12 Reader ............................................................................
    [Show full text]
  • EASY204-DP, PROFIBUS-DP Slave Interface
    Rückenbreite bis 10 mm (1 Blatt = 0,106 mm für XBS) EASY204-DP Moeller GmbH PROFIBUS-DP Industrieautomation Hein-Moeller-Straße 7–11 D-53115 Bonn Slave Interface E-Mail: [email protected] Internet: www.moeller.net © 2002 by Moeller GmbH Änderungen vorbehalten AWB2528-1401GB xx/xx/XBS 03/05 Printed in the Federal Republic of Germany (0x/02) Article No.: xxxxxx 4 *patpks#nycmyn* Operating manual Operating manual 03/05 AWB2528-1401GB A A Think future. Switch to green. Think future. Switch to green. A Rückenbreite festlegen! (1 Blatt = 0,106 mm) All brand and product names are trademarks or registered trademarks of the owner concerned. 1st published 2001, edition date 04/01 2nd edition 05/2003 3rd edition 07/2004 See revision protocol in the “About this manual“ chapter © Moeller GmbH, 53105 Bonn Authors: Ronny Happ, Dieter Bauerfeind Editor: Thomas Kracht Translator: Terence Osborn All rights reserved, including those of the translation. No part of this manual may be reproduced in any form (printed, photocopy, microfilm or any other process) or processed, duplicated or distributed by means of electronic systems without written permission of Moeller GmbH, Bonn. Warning! Dangerous electrical voltage! Before commencing the installation • Disconnect the power supply of the device. • Suitable safety hardware and software • Ensure that devices cannot be accidentally measures should be implemented for the restarted. I/O interface so that a line or wire breakage on the signal side does not result in • Verify isolation from the supply. undefined states in the automation • Earth and short circuit. devices. • Cover or enclose neighbouring units that • Ensure a reliable electrical isolation of the are live.
    [Show full text]
  • Overview of ASCII/RS-485 Time Protocol
    TN-108 Sep-2017 TECHNICAL NOTE Overview of ASCII/RS-485 Time Protocol Introduction Summary ASCII/RS-485 is based on a simple time protocol originally defined by Arbiter Some power meters use an ASCII character string Systems called “ASCII + QUAL.” An ASCII string is communicated over RS-485 and transmitted over RS-485 for time synchronization. consists of an on-time mark (OTM) transmitted once per second, followed by an ASCII representation of the date/time and time quality. This document describes the protocol, and gives ex- amples of how Cyber Sciences products are used to This protocol is used by some power meters for time synchronization via a spare synchronize devices require this protocol, including RS-485 data communications port. Devices which support ASCII/RS-485 include: TM PM8000 and ION7550/7650 meters by Schneider PowerLogic PM8000 and ION7550/7650 meters by Schneider Electric and 9410 and Electric and 9410 and 9510/9610 meters by Siemens. 9510/9610 meters by Siemens. CyTimeTM SER-3200/2408 Sequence of Events Recorders can generate ASCII/RS-485 to synchronize these power meters, greatly simplifying time sync design. PROTOCOL DESCRIPTION ASCII Time Code ASCII/RS-485 is the name for an ASCII-based time protocol distributed over a stan- dard RS-485 2-wire network. The ASCII code (called “ASCII + QUAL”) consists of an on-time mark (OTM) once per second followed by ASCII representation of the date/ time and time quality as follows: <soh>ddd:hh:mm:ssQ<cr><lf> where: <soh> = hex 01 (start of header = OTM) ddd:hh:mm:ss = date/time (day of the year, hour, min, sec) Q = time quality flag (space = locked, ? = unknown) <cr> = hex 0d (carriage return code) <lf> = hex 0a (line feed code) Note: As shown above, the ASCII code includes an ambiguity of one year, and so the device must first be set to the correct year through other means.
    [Show full text]