Panasonic MN101C49Gの取扱説明書

19ページ 0.27 mb
ダウンロード

ページに移動 of 19

Summary
  • Panasonic MN101C49G - page 1

    MICROCOMPUTER MN101C MN101C49G/49H/49K/F49K/P49K LSI Application Notes Excerption Pub.No.3144911-031E ...

  • Panasonic MN101C49G - page 2

    Request for your special attention an d precau tions in using the technic al information and semiconductors described in this book (1) If any of the p roducts or technical info rmation described in this book is to be exported or prov ided to non-residents , the laws and regulations of the exporting countr y , especially , those w ith regard to secu ...

  • Panasonic MN101C49G - page 3

    About This Manual ■ Configuration of This Manual This LSI application note is c onsists of the following sections. Chapter 1 Overview This chapter describes the overview of this applic ation note. Chapter 2 Startup Program This chapter des cribes a startup p rocess necessary for executing a program . Chapter 3 Register Setup of Each Function This ...

  • Panasonic MN101C49G - page 4

    ■ Related Manuals Note that the following related docum ents are available. "MN101C49G/49H/49K/F49K/P49K LSI User's Manual" "MN101C Series C Compiler User's Manual: Language Description" <Describes the syntax of the C Compiler.> "MN101C Series C Compiler User's Manual: Libr ary Reference" <Des ...

  • Panasonic MN101C49G - page 5

    Chapter 1 Overview Chapter 2 Startup Program Chapter 3 Register Setup of Each Function Chapter 4 Sample Program 1 Chapter 5 Sample Program 2 Chapter 6 Appendix 1 Chapter 7 Appendix 2 1 2 3 6 7 4 5 ...

  • Panasonic MN101C49G - page 6

    Table of Contents Chapter 1 Overview ............................................................................................................. ........................................ 13 1.1 Over view ................................................................................................................................................. ...

  • Panasonic MN101C49G - page 7

    3.6 How to Inter rupt ................................................................................................................................................ 45 3.6.1 Interrupt vector table ................................................................................................... ............................... 45 3.6.2 Interrupt ...

  • Panasonic MN101C49G - page 8

    3.14.4 Setting co mmunica tion speed for UART .................................................................................... ........... 106 3.14.5 Notes and appl ications re lated to communi cation ch annel................................................................. .... 106 3.15 Data Transfer Funct ion, Initializing P eripherals ...... ...

  • Panasonic MN101C49G - page 9

    5.3 Sample Program Us ing Serial F unction....................................................................................... .................... 219 5.3.1 Serial prog ram........................................................................................................... ............................... 219 5.3.2 Serial prog ram 1....... ...

  • Panasonic MN101C49G - page 10

    Chapter 3 Register Setup of Each Function 62 3.9 8-bit Timer, Initializing Peripherals There are five 8-bit timers comprising timer 0 to 4. The timer comprises a bin ary counter, a com pare register and a mode register. You can combin e two 8-bit timers, timer 0 and 1 or 2 and 3, to use as a 16-bit timer. Binary counter This counter coun ts a clock ...

  • Panasonic MN101C49G - page 11

    Chapter 3 Register Setup of Each Function 63 BIT3: "0" Stop count "1" Count operation BIT2, 1, 0: Clock source selectio n 000: High speed crystal clock oscillatio n frequency 001: Timer 1, prescaler output signal 010: Low speed crystal clo c k oscillatio n frequency 011: Synchronous low speed crystal clock oscillation frequen cy ...

  • Panasonic MN101C49G - page 12

    Chapter 3 Register Setup of Each Function 64 001: Timer 3, prescaler output signal 010: Low speed crystal clock oscillation frequen cy 011: Synchronous low speed crysta l clock oscillation frequency 110: Timer 3, pin input external signal 111: Synchronous timer 3, pin in put external signal Timer 4: BIT7: Unused BIT6: Unused BIT5: "0" Nor ...

  • Panasonic MN101C49G - page 13

    Chapter 3 Register Setup of Each Function 65 20 MHz / 64 = 312500 312500 / 100 = 3125 This setting is not av ailable with the 8-bit timer. Setting by using low speed osci llation clock: 32.768 kHz/ 4 = 8192 8192 / 100 = 81.92 = approx. 82 If you set the formula 82 − 1 = 8 1, the interval timer with 10 milli seconds will be set. The following sect ...

  • Panasonic MN101C49G - page 14

    Chapter 3 Register Setup of Each Function 66 #define TM0BC (*(volatile unsigned cha r *)TM0BC_adr ) #define TM0O C_adr 0x3F52 #define TM0OC (*(volatile unsigned cha r *)TM0OC_adr ) #define TM0M D_adr 0x3F54 #define TM0MD (*(volatile unsigned cha r *)TM0MD_adr ) #define CK0M D_adr 0x3F56 #define CK0MD (*(volatile unsigned cha r *)CK0MD_adr ) /* Sett ...

  • Panasonic MN101C49G - page 15

    Chapter 3 Register Setup of Each Function 67 Figure 3 8-bit timer PWM operation timing chart The following section describes a sample program. /* Control da ta declaratio n */ #define TM4MOD 0x00 /* 0b000000 00 Pulse widt h measurement control ( normal timer operation)*/ #define TM4PWM 0x10 /* 0b000100 00 PWM operat ion */ #define TM4EN 0x08 /* 0b0 ...

  • Panasonic MN101C49G - page 16

    Chapter 3 Register Setup of Each Function 68 the interval outp ut for the interval tim er. Serial interface transfer cloc k generation You can use the ouput signal fro m a timer to generate a serial transfer clo ck. You can use the interva l timer and tim er output setting to set the tim er. The following timers are available for th e serial interf ...

  • Panasonic MN101C49G - page 17

    Chapter 3 Register Setup of Each Function 69 /* Register address decl aration */ #define TM2BC_adr 0x3F58 #define TM2BC (*(volatile unsigned cha r *)TM2BC_adr ) #define TM2OC_adr 0x3F5A #define TM2OC (*(volatile unsigned cha r *)TM2OC_adr ) #define TM2MD_adr 0x3F5C #define TM2MD (*(volatile unsigned cha r *)TM2MD_adr ) #define CK2MD_adr 0x3F5E #def ...

  • Panasonic MN101C49G - page 18

    Inquiries If you have questions re garding techni cal inform ation on this m anual, please visit the foll owing URL. User Support Team Semiconductor Company Matsushita Electric Industrial Co., Ltd. URL: http://panasonic.co.j p/semicon/e-micom/inquiry For inquiries regard ing Microcomputer, • Microcomputer W eb site We offer you technical informat ...

  • Panasonic MN101C49G - page 19

    SALES OFFICES NORTH AMERICA  U.S.A. Sales Office: Panasonic Industrial Company [PIC]  New Jersey Office: 2 Panasonic W ay Secaucus, New Jersey 07094, U.S.A. Tel:1-201-348-5257 Fax:1-201-392-4652  Chicago Office: 1707 N. Randall Road Elgin, Illinois 60123-7847, U.S.A. Tel:1-847-468-5720 Fax:1-847-468-5725  San Jose Office: 2033 Gateway P ...

メーカー Panasonic カテゴリー Laptop

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

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

関連する取扱説明書

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

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

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

Panasonic MN101C49Gについてご質問がありますか?

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

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

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

コメント (0)