B&B Electronics PCRTCの取扱説明書

17ページ 0.04 mb
ダウンロード

ページに移動 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 ...

メーカー B&B Electronics カテゴリー Clock

B&B Electronics PCRTCのメーカーから受け取ることができるドキュメントは、いくつかのグループに分けられます。その一部は次の通りです:
- #BRANDの図面#
- PCRTCの取扱説明書
- B&B Electronicsの製品カード
- パンフレット
- またはB&B Electronics PCRTCの消費電力シール
それらは全部重要ですが、デバイス使用の観点から最も重要な情報は、B&B Electronics PCRTCの取扱説明書に含まれています。

取扱説明書と呼ばれる文書のグループは、B&B Electronics PCRTCの取り付け説明書、サービスマニュアル、簡易説明書、またはB&B Electronics PCRTCのユーザーマニュアル等、より具体的なカテゴリーに分類されます。ご必要に応じてドキュメントを検索しましょう。私たちのウェブサイトでは、B&B Electronics PCRTCの製品を使用するにあたって最も人気のある説明書を閲覧できます。

関連する取扱説明書

B&B Electronics PCRTCデバイスの取扱説明書はどのようなものですか?
取扱説明書は、ユーザーマニュアル又は単に「マニュアル」とも呼ばれ、ユーザーがB&B Electronics PCRTCを使用するのを助ける技術的文書のことです。説明書は通常、全てのB&B Electronics PCRTCユーザーが容易に理解できる文章にて書かれており、その作成者はその分野の専門家です。

B&B Electronicsの取扱説明書には、基本的な要素が記載されているはずです。その一部は、カバー/タイトルページ、著作権ページ等、比較的重要度の低いものです。ですが、その他の部分には、ユーザーにとって重要な情報が記載されているはずです。

1. B&B Electronics PCRTCの説明書の概要と使用方法。説明書にはまず、その閲覧方法に関する手引きが書かれているはずです。そこにははB&B Electronics PCRTCの目次に関する情報やよくある質問、最も一般的な問題に関する情報を見つけられるはずです。つまり、それらはユーザーが取扱説明書に最も期待する情報なのです。
2. 目次。B&B Electronics PCRTCに関してこのドキュメントで見つけることができる全てのヒントの目次
3. B&B Electronics PCRTCデバイスの基本機能を使うにあたってのヒント。 B&B Electronics PCRTCのユーザーが使い始めるのを助けてくれるはずです。
4. トラブルシューティング。B&B Electronics PCRTCに関する最も重要な問題を診断し、解決するために役立つ体系化された手続き
5. FAQ。よくある質問
6. 連絡先。一人では問題を解決できない場合に、その国におけるB&B Electronics PCRTCのメーカー/サービスへの連絡先に関する情報。

B&B Electronics PCRTCについてご質問がありますか?

次のフォームを使用してください

見つけた説明書を読んでもB&B Electronics PCRTCの問題を解決できない場合、下記のフォームを使用して質問をしましょう。ユーザーのどなたかがB&B Electronics PCRTCで同様の問題を抱えていた場合、その解決方法を共有したいと考えるかもしれません。

画像のテキストを入力してください

コメント (0)