Manual B&B Electronics PCRTC

17 pages 0.04 mb
Download

Go to site of 17

Summary
  • B&B Electronics PCRTC - page 1

    Documentation Number PCRTC2095 Manual Cover Page B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Stable Real Time Clock for PCs Model PCRTC Documentation Number PCRTC2095 This product Designed and Manufactured In Ottawa, Illinois USA of domestic and imported parts by B&B Electronics Mfg. Co. Inc. 7 ...

  • B&B Electronics PCRTC - page 2

    Documentation Number PCRTC2095 Manual Table of Contents i B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Table of Contents CHAPTER 1. GENERAL INFORMATION .................................... 1 I NTRODUCTION ........................................................................................ 1 P AC ...

  • B&B Electronics PCRTC - page 3

    Documentation Number PCRTC2095 Manual 1 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Chapter 1. General Information Introduction The PCRTC is real time clock for PCs based on a highly stable oscillator circuit. Using the software driver provided, the PCRTC will update the DOS clock every minute, ens ...

  • B&B Electronics PCRTC - page 4

    2 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Chapter 2. Setup Hardware Setup The address switch on the PCRTC must be set to an address which doesn’t conflict with other devices in the host computer. The address settings are listed in Table 1, and are also pr ...

  • B&B Electronics PCRTC - page 5

    Documentation Number PCRTC2095 Manual 3 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Hardware Installation 1. Shut the host computer power off. 2. Remove the computer cover. 3. Remove the expansion slot cover of an unused slot. 4. Handle the PCRTC only by its edges. Avoid touching any conductors on ...

  • B&B Electronics PCRTC - page 6

    4 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Chapter 3. Operation Overview The most common application of the PCRTC is to simply maintain the correct time on the host computer. Loading the device driver in the CONFIG.SYS file will accomplish this function by s ...

  • B&B Electronics PCRTC - page 7

    Documentation Number PCRTC2095 Manual 5 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 PCRTC v1.00, (c) Copyright 1995, B&B Electronics Mfg. Co. PCRTC address: 200h Battery Status: Good If this message appears, the driver has been installed and is running. The DOS clock will be updated every minut ...

  • B&B Electronics PCRTC - page 8

    6 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 The best method of updating the PCRTC time is to use the shareware program Timeset. Note that although this program is included on the PCRTC diskette, it is shareware and should be registered with its author. Timese ...

  • B&B Electronics PCRTC - page 9

    Documentation Number PCRTC2095 Manual 7 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Start_RTC_API Purpose: Initializes API, must be the first PCRTC function called in the program. C: int Start_RTC_API(unsigned int address); Pascal: FUNCTION Start_RTC_API(address: WORD): WORD; BASIC: FUNCTION StartR ...

  • B&B Electronics PCRTC - page 10

    8 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Get_RTC_Time Purpose : Returns the RTC time within a structure. C: struct GetTime_T { unsigned int hours; unsigned int min; unsigned int seconds; unsigned int h_seconds; }; int Get_RTC_Time(GetTime_T far *gt); Pasca ...

  • B&B Electronics PCRTC - page 11

    Documentation Number PCRTC2095 Manual 9 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Last_Power_Down_RTC Purpose: Returns date and time of last power down within a structure. C: struct TimeSave_T { unsigned int month; unsigned int day; unsigned int hour; unsigned int minute; unsigned int second; }; ...

  • B&B Electronics PCRTC - page 12

    10 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 QuickBASIC Example: '$INCLUDE: 'RTC_API.BI' ‘Must be first executed statement in your program DIM timeS AS TimeSaveT ‘Define Variable Structure DIM time AS GetTimeT address% = StartRTCAPI(0) ‘I ...

  • B&B Electronics PCRTC - page 13

    Documentation Number PCRTC2095 Manual 11 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 C Programming Example #include <conio.h> #include "rtc_api.h" void main() { TimeSave_T *ts = (TimeSave_T *) malloc(sizeof(TimeSave_T)); GetTime_T *time = (GetTime_T *) malloc(sizeof(GetTime_T)); uns ...

  • B&B Electronics PCRTC - page 14

    12 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Chapter 4. Calculating Error PPM Terminology The unit ppm (parts per million) provides a number similar to error expressed with percentages, but reduces the number of decimal places required. For example, 0.001% co ...

  • B&B Electronics PCRTC - page 15

    Documentation Number PCRTC2095 Manual 13 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Aging All crystal oscillators have an aging characteristic. The crystal used in the PCRTC uses the coldweld manufacturing technique, which exhibits the lowest aging characteristic of 1 ppm/year. In practice, this a ...

  • B&B Electronics PCRTC - page 16

    14 Documentation Number PCRTC2095 Manual B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Appendix A. Hardware I/O Map I/O Map of XT Class Machines Hex Address Address Function in XT Class Machines 000-00F DMA controller (8237A) 020-021 interrupt controller (8259A) 040-043 timer (8253) 060-063 PPI(8255A ...

  • B&B Electronics PCRTC - page 17

    Documentation Number PCRTC2095 Manual 15 B&B Electronics -- PO Box 1040 -- Ottawa, IL 61350 PH (815) 433-5100 -- FAX (815) 433-5105 Hardware I/O Map of AT Class Machines Hex Address Address Function in AT Class Machines 000-01F DMA controller #1 (8237A-5) 020-03F interrupt controller #1 (8259A) 040-05F timer (8254) 060-06F keyboard (8042) 070-0 ...

Manufacturer B&B Electronics Category Clock

Documents that we receive from a manufacturer of a B&B Electronics PCRTC can be divided into several groups. They are, among others:
- B&B Electronics technical drawings
- PCRTC manuals
- B&B Electronics product data sheets
- information booklets
- or energy labels B&B Electronics PCRTC
All of them are important, but the most important information from the point of view of use of the device are in the user manual B&B Electronics PCRTC.

A group of documents referred to as user manuals is also divided into more specific types, such as: Installation manuals B&B Electronics PCRTC, service manual, brief instructions and user manuals B&B Electronics PCRTC. Depending on your needs, you should look for the document you need. In our website you can view the most popular manual of the product B&B Electronics PCRTC.

A complete manual for the device B&B Electronics PCRTC, how should it look like?
A manual, also referred to as a user manual, or simply "instructions" is a technical document designed to assist in the use B&B Electronics PCRTC by users. Manuals are usually written by a technical writer, but in a language understandable to all users of B&B Electronics PCRTC.

A complete B&B Electronics manual, should contain several basic components. Some of them are less important, such as: cover / title page or copyright page. However, the remaining part should provide us with information that is important from the point of view of the user.

1. Preface and tips on how to use the manual B&B Electronics PCRTC - At the beginning of each manual we should find clues about how to use the guidelines. It should include information about the location of the Contents of the B&B Electronics PCRTC, FAQ or common problems, i.e. places that are most often searched by users in each manual
2. Contents - index of all tips concerning the B&B Electronics PCRTC, that we can find in the current document
3. Tips how to use the basic functions of the device B&B Electronics PCRTC - which should help us in our first steps of using B&B Electronics PCRTC
4. Troubleshooting - systematic sequence of activities that will help us diagnose and subsequently solve the most important problems with B&B Electronics PCRTC
5. FAQ - Frequently Asked Questions
6. Contact detailsInformation about where to look for contact to the manufacturer/service of B&B Electronics PCRTC in a specific country, if it was not possible to solve the problem on our own.

Do you have a question concerning B&B Electronics PCRTC?

Use the form below

If you did not solve your problem by using a manual B&B Electronics PCRTC, ask a question using the form below. If a user had a similar problem with B&B Electronics PCRTC it is likely that he will want to share the way to solve it.

Copy the text from the picture

Comments (0)