JP2004086280A - Information processor, external device and driver installation program - Google Patents

Information processor, external device and driver installation program Download PDF

Info

Publication number
JP2004086280A
JP2004086280A JP2002243032A JP2002243032A JP2004086280A JP 2004086280 A JP2004086280 A JP 2004086280A JP 2002243032 A JP2002243032 A JP 2002243032A JP 2002243032 A JP2002243032 A JP 2002243032A JP 2004086280 A JP2004086280 A JP 2004086280A
Authority
JP
Japan
Prior art keywords
driver
program
information processing
external device
source program
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
JP2002243032A
Other languages
Japanese (ja)
Inventor
Akira Kotani
小谷 亮
Takenao Mizuguchi
水口 武尚
Daizo Kikko
橘高 大造
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Mitsubishi Electric Corp
Original Assignee
Mitsubishi Electric Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Mitsubishi Electric Corp filed Critical Mitsubishi Electric Corp
Priority to JP2002243032A priority Critical patent/JP2004086280A/en
Publication of JP2004086280A publication Critical patent/JP2004086280A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Stored Programmes (AREA)

Abstract

<P>PROBLEM TO BE SOLVED: To realize many types of information processors to be connected to external devices, and to provide an entity which can deal with a new type of information processor. <P>SOLUTION: The information processor has a driver source program acquisition means which when a new external device is connected, acquires a driver source program necessary for operating the external device; a compiling and linking means which compiles and links the driver source program; an installation means which installs the source program in a memory means; and a driver installation program which makes each of the above means execute. Accordingly, one type of prepared driver source program suffices. <P>COPYRIGHT: (C)2004,JPO

Description

【0001】
【発明の属する技術分野】
本発明は、命令メモリおよびCPUをもつ情報処理装置、特に携帯電話・PDA等の携帯情報機器に関わる。
【0002】
【従来の技術】
携帯電話等の情報処理装置の多くはCPUによって制御され、CPUを制御するためのプログラムやその他のデータを保持するための記憶装置を持つ。多くの場合には、外部デバイスとの通信をおこなうためのコネクタおよび外部I/F部を持つ。外部I/Fは通常専用のLSIその他の回路によって実現され、CPUによって制御される。コネクタや外部I/F部としては、通信方式に依存して専用のものを使用する。例えばEthernet(登録商標)を用いる場合には専用のコネクタ・外部I/F部を装備する必要がある。
【0003】
接続対象となる外部デバイスとしてはプリンタ・カメラ・ハードディスク等さまざまなデバイスがある。また、他の情報処理装置を接続し、通信により情報送受信をおこなう場合もある。
【0004】
このような構成において情報処理装置と外部デバイスが通信をおこなうためには、外部I/F部に対応したドライバプログラム(以下ではI/Fドライバプログラムと呼ぶ)と、外部デバイスに対応したドライバプログラム(以下ではデバイスドライバプログラムと呼ぶ)を両方使用する必要がある。I/Fドライバプログラムは、CPUのアドレス空間中のあるアドレスに割り当てられている外部I/F部の制御用レジスタに対してリード・ライトをおこなうことにより、外部I/F部の制御をおこなったり、タイマ処理により必要な時間待ち受けをおこなったり、外部I/F部からCPUへ割り込み信号がおこなわれることにより起動される割り込みハンドラを適切に処理する等により、外部I/F部およびコネクタを介した通信を可能とする。
【0005】
これに対して、デバイスドライバプログラムでは、I/Fドライバプログラムにより通信可能となった外部I/F部を介した通信系を用いて、外部デバイスに対する制御をおこなう。例えば外部デバイスがプリンタである場合には解像度の情報を設定したり、プリントすべきページのデータを送信したりする。
【0006】
情報処理装置にはさまざまな外部デバイスが接続される可能性があり、外部デバイスごとに異なるデバイスドライバプログラムが必要となる。これに対してI/Fドライバプログラムは常に同じものが使用される。外部デバイスと通信をおこなうためには、I/Fドライバプログラムとデバイスドライバプログラムは情報処理装置のCPUが利用可能な記憶手段上の適切な位置に配置されている必要がある。プログラムをCPUが利用可能な記憶手段上の適切な位置に配置する処理をインストールという。
【0007】
通常、デバイスドライバプログラムは情報処理装置の記憶装置中には存在しないことが多い。したがって新たな外部デバイスを接続した場合にはその外部デバイスに対応したデバイスドライバプログラムをインストールする必要がある。インストール処理の際に、デバイスドライバプログラムをどこから読み込むか、いろいろな方法がある。例えば、情報処理装置がフレキシブルディスク等の取り外し可能な外部記憶装置を備える場合には、デバイスドライバプログラムを格納したフレキシブルディスクから読み込んでインストールすることが可能である。
【0008】
また、特開平10−307711等により、外部デバイス中にデバイスドライバプログラムを埋め込んでおき、外部デバイスが情報処理装置に接続された際にデバイスドライバプログラムを情報処理装置に読み込んでインストールする方法が知られている。このようなデバイスドライバプログラムは、通常コンパイルリンク済みのオブジェクトコードとして配布される。
【0009】
【発明が解決しようとする課題】
ところで、情報処理装置の機種が複数ある場合、情報処理装置が同一形状のコネクタを備えているだけでは、特定の外部デバイスをそれぞれの情報処理装置の機種上で動作させるためには十分ではない。一般に実行形式のプログラムは、CPUの命令セット・採用されているオペレーションシステム等に依存し、これらの要素は情報処理装置の機種ごとに異なるため、異なる情報処理装置の機種間での互換性はない。したがって,外部デバイスを多くの情報処理装置の機種に対応させるためには、それぞれの機種に対するデバイスドライバプログラムを用意しなければならない。
【0010】
外部デバイスはデバイスドライバプログラムを記録したフレキシブルディスク等の記憶媒体とともに販売される場合が多いが、多くの情報処理装置の機種に対応させるためには、デバイスドライバプログラムを機種の数だけ別々に用意する必要があり、フレキシブルディスクの枚数がかさむ等の不都合が生ずる。
【0011】
また、前述のように外部デバイス中にデバイスドライバプログラムを埋め込んでおく方式でも、あらかじめ外部デバイスに想定される情報処理装置の機種に対応したデバイスドライバプログラムをすべて埋め込んでおく必要がある。このためには外部デバイス中にデバイスドライバプログラムを記憶させるための媒体(ROM等)の容量を十分にとる必要があり、外部デバイスのコストがかさむ等の不都合が生ずる。
【0012】
さらに、上記のような方法では、外部デバイスの開発終了後にあらかじめ想定していなかった情報処理装置が新規に出回った場合、その新規機種に対応したデバイスドライバプログラムを用意することができない。
【0013】
本発明は、上記のような問題点を解決し、多くの情報処理装置の機種に対して外部デバイスの接続を可能とし、また新規機種の情報処理装置にも対応できるものを供するものである。
【0014】
【課題を解決する手段】
この発明に係る情報処理装置は、
新規な外部デバイスが接続された時、当該外部デバイスを動作させるのに必要なドライバソースプログラムを取得するドライバソースプログラム取得手段、
ドライバソースプログラムをコンパイルリンクするコンパイルリンク手段、
コンパイルリンクされたドライバ中間コードプログラムを記憶手段にインストールするインストール手段、
上記各手段を実行させるドライバインストールプログラムを備える。
【0015】
また、この発明に係る外部デバイスは、
CPUを保持する情報処理装置に接続され、当該情報処理装置によって動作される外部デバイスであって、
情報処理装置との接続が自在にされる接続手段と、
情報処理装置が本外部デバイスを利用可能とするドライバソースプログラムを保持する記憶手段と、
情報処理装置の接続時に情報処理装置からの要求によりドライバソースプログラムを情報処理装置に転送する転送手段とを備える。
【0016】
また、この発明に係る外部デバイスは、
上記記憶手段はドライバソースプログラムの代わりに、ドライバソースプログラムから一次的にコンパイルリンクされたドライバ中間コードプログラムを保持し、上記転送手段はドライバ中間コードプログラムを上記情報処理装置に転送する。
【0017】
また、この発明に係るドライバインストールプログラムは、
外部デバイスに接続可能な情報処理装置に、
外部デバイスを動作させるのに必要なドライバソースプログラムを取得するドライバソースプログラム取得手順、
取得したドライバソースプログラムをコンパイルリンクするコンパイルリンク手順、
コンパイルリンクされたドライバ中間コードプログラムを情報処理装置にインストールするインストール手順
を実行させる。
【0018】
また、この発明に係るドライバインストールプログラムは、
ドライバソースプログラムに加えて、当該外部デバイスを動作させる別のプログラムを外部から受信、インストールする手順を情報処理装置に実行させる。
【0019】
また、この発明に係るドライバインストールプログラムは、
プログラムをインストール後、自動的にそのプログラムを情報処理装置に実行させる。
【0020】
また、この発明に係るドライバインストールプログラムは、
プログラムを実行した後、自動的にそのプログラムを情報処理装置にアンインストールさせる。
【0021】
また、この発明に係るドライバインストールプログラムは、
情報処理装置にドライバソースプログラムに加えて、外部デバイスを設定するために情報処理装置を設定する設定ファイルを外部デバイスから受信、解釈実行させる。
【0022】
また、この発明に係るドライバインストールプログラムは、
外部デバイスに接続可能な情報処理装置に、
外部デバイスを動作させるのに必要なドライバソースプログラムが格納されたサーバのアドレスを取得するドライバソースプログラムアドレス取得手順、
前記ドライバソースプログラムをネットワーク経由でサーバから取得するドライバソースプログラム取得手順、
ドライバソースプログラムをコンパイルリンクするコンパイルリンク手順、
コンパイルリンクされたドライバ中間コードプログラムを情報処理装置にインストールするインストール手順
を実行させる。
【0023】
【発明の実施の形態】
実施の形態1.
図1は本発明の実施の形態1による情報処理装置および外部デバイスにより構成される情報処理システムの構成図である。情報処理装置1内のCPU2は不揮発メモリ3、外部I/F部4、割り込み制御部5とCPUバス6で接続されている。外部I/F部4はさらに上記割り込み制御部5と割り込み信号線7を介してCPU2の割り込み端子に接続されている。外部I/F部4と接続されているコネクタ8は、外部通信ケーブル9を介して着脱可能な外部デバイス10と接続される。不揮発メモリ3上にはオペレーションシステム11を含むプログラムおよびデータが格納されており、この中には後で説明するドライバインストールプログラム12も含まれている。プログラム実行時に必要な作業領域もこの不揮発メモリ3上にとられるものとする。
【0024】
次に動作について説明する。
外部デバイス10が外部通信ケーブル9およびコネクタ8を介して情報処理装置1に接続されると、外部I/F部4は接続状態の変化を検知して割り込み制御部5経由でCPU2に割り込み信号を送る。CPU2上で動作しているオペレーションシステム11は外部デバイス10が接続されたことを検知し、ドライバインストールプログラム12を起動する。
【0025】
図2は外部デバイス10の構成例を示す図である。この例では外部デバイス10は撮影素子30を備えるカメラであるものとする。外部デバイス10は、CPU22、不揮発メモリ23、外部I/F部24、割り込み制御部25、CPUバス26、割り込み信号線27を備え、不揮発メモリ23上にはドライバソースプログラム29が格納されている。外部デバイス10は、ほぼ情報処理装置1と同様の構成をとっているが、撮影素子30を備える点が異なり、かつ、不揮発メモリ3(ROM)上には本外部デバイス10を駆動するために必要なプログラムおよび情報処理装置1に転送されるドライバソースプログラム29が格納されている。
【0026】
図3は情報処理装置1内で動作するドライバインストールプログラム12の処理を説明する図である。ドライバインストールプログラム12は、まず外部デバイス10に対してドライバソースプログラム29の転送を要求する(S31)。外部デバイス10がその要求を受けて内部の不揮発メモリ23に記憶されているドライバソースプログラム29を情報処理装置1に対して送信する。次にドライバインストールプログラム12はドライバソースプログラム29を外部デバイス10から受信し、不揮発メモリ3上の作業領域に格納する(S32)。受信が終了すると、ドライバインストールプログラム12はドライバソースプログラム29をコンパイルリンクしてオブジェクトコードを不揮発メモリ3上の作業領域に格納する(S33)。最後に、オブジェクトコードを情報処理装置1にインストールする(S34)。このインストール処理では、オブジェクトコードを不揮発メモリ3上の適切な位置に配置し、アドレス解決の処理をおこなう。このことにより、情報処理装置1上で外部デバイス10が使用可能となる。
【0027】
図4は外部デバイス10のCPU22の処理を説明する図である。外部デバイス10は情報処理装置1からの転送内容の受信待ち(S41)の状態から、CPU22が情報処理装置1からの転送内容を受信すると、転送内容がドライバソースプログラムの転送要求であるかどうかをチェックする(S42)。このチェックの処理の実現方法としては、情報処理装置1と外部デバイス10の間の送受信プロトコルに依存してさまざまな方法が考えられるが、転送内容の種別を容易に判別可能とするバイトを転送内容の先頭に設けておきこの先頭バイトを参照することにより判別する方法、送受信プロトコルをXML(Extensive Markup Language)等の構文解析可能なフォーマットで実現されている場合に構文解析をおこなうことにより判別する方法などがある。もしも転送内容がドライバソースプログラムの転送要求である場合には、CPU22は不揮発メモリ23に記憶されているドライバソースプログラム29を情報処理装置1に転送する(S43)。もしもそうでない場合には、その転送内容に対応した処理をおこなう(例えば撮像素子の電源オン要求である場合には撮像素子の電源オンをおこなう)(S44)。その後、CPU22は再び情報処理装置1からの受信待ち(S41)の状態となる。
【0028】
以上のようにこの実施の形態によれば、情報処理装置1はドライバプログラムのコンパイルリンク済みオブジェクトコードではなくソースプログラムからコンパイルリンクをおこなう。この際のコンパイルリンク処理は、当該情報処理装置のCPUの命令コードやオペレーティングシステムに対応したオブジェクトコードを出力する。したがって、情報処理装置の機種ごとに別々のプログラムを用意する必要はなく、1種類のドライバソースプログラムを外部デバイスの記憶手段に格納しておけばよい。
【0029】
なお、本実施の形態では、情報処理装置1は外部デバイス10が接続されると外部I/F4経由でCPU2に接続状態の変化が検知され、自動的にドライバインストールプログラム12が起動されたが、ドライバインストールプログラム12の起動は接続検知による自動処理ではなく、接続がおこなわれた後にユーザが起動するようにしてもよい。
【0030】
ここで、外部デバイス10に記憶されているドライバソースプログラム29は、C言語等で記述されたソースプログラムだけでなく、ソースプログラムを一次的にコンパイルリンクした中間コードでもよいことはいうまでもない。図5は、ドライバソースプログラム29の代わりにドライバ中間コードプログラム31を格納した場合の外部デバイス10の構成例を示す図である。ドライバ中間コードプログラム31を用いる場合、C言語等の高級言語から機械語に近い簡単な言語に翻訳されるので、情報処理装置1のコンパイラが簡易なもので済むという利点がある。
【0031】
なお、外部デバイス10に記憶されているドライバソースプログラム29は、通常のテキストファイル形式ではなくデータ圧縮された状態で不揮発メモリ23に保持しておき、転送する際にも圧縮された状態で転送するように構成してもよいことはいうまでもない。この場合、不揮発メモリ23の容量が削減できるとともに、転送データ量も小さくなり転送時間が短縮されるという利点がある。
【0032】
実施の形態2.
実施の形態1では外部デバイス10に記憶し、情報処理装置1へ転送するドライバプログラムは、1種類だけで説明したが、情報処理装置1へ転送するドライバプログラムは、1種類だけでなく複数種類のドライバプログラムを転送してもよいことはいうまでもない。例えば、C言語等で記述され情報処理装置1でコンパイルリンクして格納・実行するドライバソースプログラムと、Java(登録商標)言語等で記述されそのまま格納・インタプリタ実行されるドライバインタプリタコードを情報処理装置1へ転送するようにしてもよい。
【0033】
この場合の外部デバイス10の構成例を図6に示す。ドライバインタプリタコード32が不揮発メモリ23に格納されている。情報処理装置1の構成は図1と同様であるので省略する。図7はこの場合に情報処理装置1内で動作するドライバインストールプログラム12の処理を説明する図である。ドライバソースプログラム29の転送を要求し、インストールするまでの手順(S71)〜(S74)は図3の手順(S31)〜(S34)と同様であるので説明を省略する。
【0034】
その後、ドライバインストールプログラム12は、外部デバイス10に対してドライバインタプリタコード32の転送を要求する。外部デバイス10がその要求を受けて内部の記憶手段、不揮発メモリ23に記憶されているドライバインタプリタコード32を情報処理装置1に対して送信する。次にドライバインストールプログラム29はドライバインタプリタコード32を外部デバイス10から受信し、情報処理装置1にインストールする。ドライバインタプリタコード32は、その後情報処理装置1によって解釈実行される。
【0035】
このように、ドライバソースプログラム29とドライバインタプリタコード32の両方を情報処理装置1へ転送、インストールすることで、例えば処理速度の要求されるような処理をドライバソースプログラム29で開発し、それ以外の処理はドライバインタプリタコード32で開発するなどが可能になる。
【0036】
実施の形態3.
また、外部デバイスから情報処理装置1へドライバソースプログラム29を転送し、コンパイルリンク後インストールするとともに、試験用ソースプログラムを別途転送し実行するようにすることで、ドライバソースプログラム29から生成されたオブジェクトコードが正常に動作することを検査・確認することができる。
【0037】
この場合の外部デバイス10の構成例を図8に示し、試験用ソースプログラム33が不揮発メモリ23に格納されている。情報処理装置1の構成は図1と同様であるので省略する。図9はこの場合に情報処理装置1内で動作するドライバインストールプログラム12の処理を説明する図である。ドライバインストールプログラム12がドライバソースプログラム29の転送を要求し、インストールするまでの手順(S91)〜(S94)は図3の手順(S31)〜(S34)と同様であるので説明を省略する。その後、ドライバインストールプログラム12は、外部デバイス10に対して試験用ソースプログラム33の転送を要求する。外部デバイス10がその要求を受けて内部の不揮発メモリ23に記憶されている試験用ソースプログラム33を情報処理装置1に対して送信する。
【0038】
次にドライバインストールプログラム12は試験用ソースプログラム33を外部デバイス10から受信し、不揮発メモリ3上の作業領域に格納する。受信が終了すると、ドライバインストールプログラム12は試験用ソースプログラム33をコンパイルリンクして試験用オブジェクトコードを生成し、不揮発メモリ3上の作業領域に格納する。その後、試験用オブジェクトコードを情報処理装置にインストールする。次にドライバインストールプログラム12は、試験用オブジェクトコードを起動、実行する。実行された試験用オブジェクトコードはドライバのオブジェクトコードによって外部デバイスと通信するなどして、オブジェクトコードが正常に動作するか試験し、その結果を表示装置に表示するなどする。最後に、実行済みの試験用オブジェクトコードをアンインストールする。
【0039】
このように、試験用ソースプログラムを情報処理装置でコンパイルリンク、実行することでドライバソースプログラムから生成されたドライバオブジェクトコードが情報処理装置内で正常に動作するか確認することができる。また、試験用オブジェクトコードは実行後、自動的に削除されるため余分な記憶領域を必要としない。
【0040】
ここでは、試験用プログラムとして試験用ソースプログラム33から試験用オブジェクトプログラムを生成して実行する場合について説明したが、インタプリタとして実行されるような試験用インタプリタコードを外部デバイスから情報処理装置へ転送し実行してもよいのはいうまでもない。
またここでは試験用オブジェクトコードを実行後に削除すると説明したが、削除しなくてもかまわないのはいうまでもない。
【0041】
またここでは試験のために試験用オブジェクトコードを実行するとしたが、情報処理装置から外部デバイスを設定するための初期設定を実行してもよい。この初期設定は、オブジェクトコードのようなプログラムでなく、あらかじめ決められたフォーマットで記述された設定ファイルでもよく、それを情報処理装置で解釈、実行してもよい。
【0042】
実施の形態4.
なお、実施の形態1ではドライバソースプログラム29を外部デバイス10の記憶手段(不揮発メモリ23)に格納したが、これを別の場所から取得してもよいことはいうまでもない。例えば、情報処理装置1にフレキシブルディスクドライブが装備されている場合には、外部デバイス10の付属品として提供されるフレキシブルディスクにドライバソースプログラム29を格納しておき、ユーザがフレキシブルディスクドライブに当該フレキシブルディスクをあらかじめセットした後に外部デバイス10と情報処理装置1を接続すると、接続が検知され、フレキシブルディスクからドライバソースプログラム29が読み込まれるようにしてもよい。
【0043】
また、情報処理装置がインターネットなどのネットワークに接続されている場合には、ネットワーク上のサーバにドライバソースプログラムを格納しておき、外部デバイスと情報処理装置を接続すると、接続が検知され、サーバからドライバソースプログラムが読み込まれるようにしてもよい。 この場合のシステム構成の例を図10に示す。情報処理装置1はネットワーク41を介してサーバ42に接続されている。このサーバ42には、ドライバソースプログラム29が格納されている。また、外部デバイス10は情報処理装置1と接続される。
【0044】
図11は情報処理装置1内で動作するドライバインストールプログラム12の処理を説明する図である。ドライバインストールプログラム12は、外部デバイス10の接続を検出すると、まず外部デバイス10に対してドライバソースプログラム29が格納されているサーバ42を示すアドレスを要求する(S111)。外部デバイス10がその要求に対して、内部の記憶手段(不揮発メモリ)に記憶されているサーバアドレスを情報処理装置1に対して応答する(S112)。次にドライバインストールプログラム12はドライバソースプログラム29を前記サーバアドレスで示されるサーバ42へ要求する(S113)。サーバ42は要求されたドライバソースプログラム29を情報処理装置1へ送信する。ドライバインストールプログラム12は、サーバ42からドライバソースプログラム29を受信し、不揮発メモリ3上の作業領域に格納する(S114)。
【0045】
以降の処理は、実施の形態1の図3と同様である。
即ち、ドライバインストールプログラム12はドライバソースプログラム29をコンパイルリンクしてオブジェクトコードを不揮発メモリ3上の作業領域に格納する(S115)。最後に、オブジェクトコードを情報処理装置1にインストールする(S116)。このインストール処理では、オブジェクトコードを不揮発メモリ3上の適切な位置に配置し、アドレス解決の処理をおこなう。このことにより、情報処理装置1上で外部デバイス10が使用可能となる。
【0046】
【発明の効果】
以上のようにこの発明によれば、情報処理装置は接続された外部デバイスを動作させるドライバプログラムのソースプログラムを取得し、そのソースプログラムからコンパイルリンクをおこなう。この際のコンパイルリンク処理は、当該情報処理装置のCPUの命令コードやオペレーティングシステムに対応したオブジェクトコードを出力する。したがって、情報処理装置の機種ごとに別々のプログラムを用意する必要はなく、1種類のドライバソースプログラムを用意しておけばよい。
【図面の簡単な説明】
【図1】本発明の実施の形態1による情報処理装置および外部デバイスにより構成される情報処理システムの構成図である。
【図2】図1の外部デバイスの構成を示す図である
【図3】図1の情報処理装置の処理を説明する図である。
【図4】図1の外部デバイスの処理を説明する図である。
【図5】外部デバイスの他の構成例を示す図である。
【図6】実施の形態2による外部デバイスの構成例を示す図である。
【図7】図6の外部デバイスの場合における情報処理装置の処理を説明する図である。
【図8】実施の形態3による外部デバイスの構成例を示す図である。
【図9】図8の外部デバイスの場合における情報処理装置の処理を説明する図である。
【図10】実施の形態4のシステムによる構成の例を示す図である。
【図11】図10における情報処理装置の処理を説明する図である。
【符号の説明】
1:情報処理装置、2、22:CPU、3、23:不揮発メモリ、4、24:外部I/F部、5、25:割り込み制御部、6、26:CPUバス、7、27:割り込み信号線、8、28:コネクタ、9:外部通信ケーブル、10:外部デバイス、11:オペレーションシステム、12:ドライバインストールプログラム、29:ドライバソースプログラム、30:撮影素子、31:ドライバ中間コードプログラム、32:ドライバインタプリタコード、33:試験用ソースプログラム、41:ネットワーク、42:サーバ
[0001]
TECHNICAL FIELD OF THE INVENTION
The present invention relates to an information processing device having an instruction memory and a CPU, particularly to a portable information device such as a mobile phone and a PDA.
[0002]
[Prior art]
Many information processing devices such as mobile phones are controlled by a CPU, and have a storage device for storing a program for controlling the CPU and other data. In many cases, it has a connector and an external I / F for communicating with an external device. The external I / F is usually realized by a dedicated LSI or other circuit, and is controlled by the CPU. Dedicated connectors and external I / F units are used depending on the communication method. For example, when Ethernet (registered trademark) is used, it is necessary to provide a dedicated connector / external I / F unit.
[0003]
There are various devices such as a printer, a camera, and a hard disk as external devices to be connected. In some cases, another information processing apparatus is connected to perform information transmission and reception by communication.
[0004]
In order to perform communication between the information processing apparatus and the external device in such a configuration, a driver program corresponding to the external I / F unit (hereinafter referred to as an I / F driver program) and a driver program corresponding to the external device ( In the following, it is necessary to use both. The I / F driver program controls the external I / F unit by reading / writing the control register of the external I / F unit assigned to a certain address in the address space of the CPU. In this case, a necessary time is awaited by a timer process, an interrupt handler activated by an interrupt signal from the external I / F unit to the CPU is appropriately processed, and the like. Enable communication.
[0005]
On the other hand, the device driver program controls an external device using a communication system via an external I / F unit that can communicate with the I / F driver program. For example, when the external device is a printer, information of resolution is set, and data of a page to be printed is transmitted.
[0006]
Various external devices may be connected to the information processing apparatus, and a different device driver program is required for each external device. On the other hand, the same I / F driver program is always used. In order to communicate with an external device, the I / F driver program and the device driver program need to be arranged at appropriate positions on storage means that can be used by the CPU of the information processing apparatus. The process of arranging the program at an appropriate position on the storage means usable by the CPU is called installation.
[0007]
Usually, the device driver program often does not exist in the storage device of the information processing apparatus. Therefore, when a new external device is connected, it is necessary to install a device driver program corresponding to the new external device. There are various ways to load the device driver program from during the installation process. For example, when the information processing apparatus includes a removable external storage device such as a flexible disk, the information processing device can be installed by reading from a flexible disk storing a device driver program.
[0008]
Japanese Patent Application Laid-Open No. 10-307711 discloses a method in which a device driver program is embedded in an external device, and when the external device is connected to the information processing device, the device driver program is read into the information processing device and installed. ing. Such a device driver program is usually distributed as compiled and linked object code.
[0009]
[Problems to be solved by the invention]
By the way, when there are a plurality of types of information processing apparatuses, it is not enough for the information processing apparatuses to be provided with connectors having the same shape to operate a specific external device on each type of information processing apparatus. Generally, an executable program depends on an instruction set of a CPU, an adopted operating system, and the like. Since these elements are different for each information processing device model, there is no compatibility between different information processing device models. . Therefore, in order to make the external device compatible with many types of information processing apparatuses, a device driver program for each model must be prepared.
[0010]
External devices are often sold together with a storage medium such as a flexible disk on which a device driver program is recorded. However, in order to correspond to many types of information processing apparatuses, device driver programs are prepared separately for each model. And the number of flexible disks increases, which causes inconvenience.
[0011]
Further, as described above, even in the method of embedding the device driver program in the external device, it is necessary to embed all the device driver programs corresponding to the model of the information processing device assumed to be the external device in advance. For this purpose, it is necessary to secure a sufficient capacity of a medium (ROM or the like) for storing the device driver program in the external device, and disadvantages such as an increase in the cost of the external device occur.
[0012]
Furthermore, according to the above-described method, when an information processing device that has not been assumed in advance is newly available after the development of the external device is completed, a device driver program corresponding to the new model cannot be prepared.
[0013]
SUMMARY OF THE INVENTION The present invention solves the above-mentioned problems, provides an external device connection to many types of information processing apparatuses, and provides a new type of information processing apparatus.
[0014]
[Means to solve the problem]
An information processing device according to the present invention includes:
When a new external device is connected, a driver source program obtaining means for obtaining a driver source program necessary for operating the external device,
Compile link means for compiling and linking the driver source program,
Installation means for installing the compiled and linked driver intermediate code program in storage means;
A driver installation program for executing the above means is provided.
[0015]
Further, the external device according to the present invention includes:
An external device connected to the information processing device holding the CPU and operated by the information processing device,
Connection means for freely connecting to the information processing device;
Storage means for holding a driver source program that enables the information processing apparatus to use the external device;
Transfer means for transferring the driver source program to the information processing device in response to a request from the information processing device when the information processing device is connected.
[0016]
Further, the external device according to the present invention includes:
The storage unit holds a driver intermediate code program temporarily compiled and linked from the driver source program instead of the driver source program, and the transfer unit transfers the driver intermediate code program to the information processing device.
[0017]
The driver installation program according to the present invention includes:
Information processing devices that can be connected to external devices
A driver source program acquisition procedure for acquiring a driver source program required to operate an external device,
Compile link procedure for compiling and linking the obtained driver source program,
An installation procedure for installing the compiled and linked driver intermediate code program in the information processing apparatus is executed.
[0018]
The driver installation program according to the present invention includes:
In addition to the driver source program, the information processing apparatus is caused to execute a procedure for receiving and installing another program for operating the external device from the outside.
[0019]
The driver installation program according to the present invention includes:
After the program is installed, the information processing apparatus automatically executes the program.
[0020]
The driver installation program according to the present invention includes:
After executing the program, the program is automatically uninstalled from the information processing apparatus.
[0021]
The driver installation program according to the present invention includes:
In addition to the driver source program, the information processing apparatus receives, from the external device, a setting file for setting the information processing apparatus to set the external device, and causes the information processing apparatus to interpret and execute the setting file.
[0022]
The driver installation program according to the present invention includes:
Information processing devices that can be connected to external devices
A driver source program address obtaining procedure for obtaining an address of a server in which a driver source program necessary for operating an external device is stored,
A driver source program obtaining procedure for obtaining the driver source program from a server via a network,
Compile link procedure for compiling and linking the driver source program,
An installation procedure for installing the compiled and linked driver intermediate code program in the information processing apparatus is executed.
[0023]
BEST MODE FOR CARRYING OUT THE INVENTION
Embodiment 1 FIG.
FIG. 1 is a configuration diagram of an information processing system including an information processing apparatus and an external device according to Embodiment 1 of the present invention. The CPU 2 in the information processing device 1 is connected to the nonvolatile memory 3, the external I / F unit 4, the interrupt control unit 5, and the CPU bus 6. The external I / F unit 4 is further connected to the interrupt terminal of the CPU 2 via the interrupt control unit 5 and the interrupt signal line 7. The connector 8 connected to the external I / F unit 4 is connected to a detachable external device 10 via an external communication cable 9. The nonvolatile memory 3 stores programs and data including the operation system 11, and includes a driver installation program 12, which will be described later. It is assumed that a work area necessary for executing the program is also stored on the nonvolatile memory 3.
[0024]
Next, the operation will be described.
When the external device 10 is connected to the information processing device 1 via the external communication cable 9 and the connector 8, the external I / F unit 4 detects a change in the connection state and sends an interrupt signal to the CPU 2 via the interrupt control unit 5. send. The operation system 11 operating on the CPU 2 detects that the external device 10 is connected, and starts the driver installation program 12.
[0025]
FIG. 2 is a diagram illustrating a configuration example of the external device 10. In this example, it is assumed that the external device 10 is a camera including the imaging element 30. The external device 10 includes a CPU 22, a nonvolatile memory 23, an external I / F unit 24, an interrupt control unit 25, a CPU bus 26, and an interrupt signal line 27. A driver source program 29 is stored on the nonvolatile memory 23. The external device 10 has substantially the same configuration as that of the information processing apparatus 1, except that the external device 10 includes an image sensor 30. The external device 10 is required to drive the external device 10 on the nonvolatile memory 3 (ROM). And a driver source program 29 to be transferred to the information processing apparatus 1.
[0026]
FIG. 3 is a diagram for explaining the processing of the driver installation program 12 operating in the information processing apparatus 1. The driver installation program 12 first requests the external device 10 to transfer the driver source program 29 (S31). The external device 10 receives the request and transmits the driver source program 29 stored in the internal nonvolatile memory 23 to the information processing device 1. Next, the driver installation program 12 receives the driver source program 29 from the external device 10 and stores it in the work area on the nonvolatile memory 3 (S32). When the reception is completed, the driver installation program 12 compiles and links the driver source program 29 and stores the object code in the work area on the nonvolatile memory 3 (S33). Finally, the object code is installed in the information processing device 1 (S34). In this installation process, the object code is arranged at an appropriate position on the nonvolatile memory 3, and a process of address resolution is performed. Thus, the external device 10 can be used on the information processing apparatus 1.
[0027]
FIG. 4 is a view for explaining the processing of the CPU 22 of the external device 10. When the CPU 22 receives the transfer content from the information processing device 1 from the state of waiting for reception of the transfer content from the information processing device 1 (S41), the external device 10 determines whether the transfer content is a transfer request of the driver source program. Check (S42). As a method of implementing this check processing, various methods can be considered depending on the transmission / reception protocol between the information processing apparatus 1 and the external device 10. And a method of making a determination by referring to the first byte, and a method of making a determination by performing a syntax analysis when a transmission / reception protocol is realized in a format capable of parsing such as XML (Extensible Markup Language). and so on. If the transfer content is a transfer request of the driver source program, the CPU 22 transfers the driver source program 29 stored in the nonvolatile memory 23 to the information processing device 1 (S43). If not, a process corresponding to the transfer content is performed (for example, if a power-on request for the image sensor is issued, the power of the image sensor is turned on) (S44). Thereafter, the CPU 22 is again in a state of waiting for reception from the information processing apparatus 1 (S41).
[0028]
As described above, according to this embodiment, the information processing apparatus 1 performs a compile link from a source program instead of a compiled link object code of a driver program. The compile link process at this time outputs an instruction code of the CPU of the information processing apparatus and an object code corresponding to the operating system. Therefore, it is not necessary to prepare a separate program for each model of the information processing apparatus, and one type of driver source program may be stored in the storage unit of the external device.
[0029]
In this embodiment, when the external device 10 is connected, the information processing apparatus 1 detects a change in the connection state of the CPU 2 via the external I / F 4 and automatically starts the driver installation program 12. The activation of the driver installation program 12 may be performed by the user after the connection is made, instead of the automatic processing based on the connection detection.
[0030]
Here, it goes without saying that the driver source program 29 stored in the external device 10 may be not only a source program described in C language or the like but also an intermediate code obtained by temporarily compiling and linking the source program. FIG. 5 is a diagram showing a configuration example of the external device 10 when a driver intermediate code program 31 is stored instead of the driver source program 29. When the driver intermediate code program 31 is used, since a high-level language such as C is translated into a simple language close to a machine language, there is an advantage that a compiler of the information processing apparatus 1 can be simplified.
[0031]
The driver source program 29 stored in the external device 10 is stored in the non-volatile memory 23 in a data compressed state, not in a normal text file format, and is also transferred in a compressed state when transferring. Needless to say, such a configuration may be adopted. In this case, there is an advantage that the capacity of the nonvolatile memory 23 can be reduced, and the amount of transfer data is also reduced, thereby shortening the transfer time.
[0032]
Embodiment 2 FIG.
In the first embodiment, only one type of the driver program stored in the external device 10 and transferred to the information processing apparatus 1 has been described. It goes without saying that the driver program may be transferred. For example, a driver source program written in C language or the like and compiled and linked by the information processing apparatus 1 and stored / executed, and a driver interpreter code written in Java (registered trademark) language or the like and stored / interpreted as it is are stored in the information processing apparatus. 1 may be transferred.
[0033]
FIG. 6 shows a configuration example of the external device 10 in this case. The driver interpreter code 32 is stored in the nonvolatile memory 23. The configuration of the information processing apparatus 1 is the same as that of FIG. FIG. 7 is a diagram for explaining the processing of the driver installation program 12 operating in the information processing apparatus 1 in this case. Procedures (S71) to (S74) from requesting the transfer of the driver source program 29 to installation are the same as the procedures (S31) to (S34) in FIG.
[0034]
Thereafter, the driver installation program 12 requests the external device 10 to transfer the driver interpreter code 32. The external device 10 receives the request and transmits the driver interpreter code 32 stored in the internal storage means and the nonvolatile memory 23 to the information processing device 1. Next, the driver installation program 29 receives the driver interpreter code 32 from the external device 10 and installs it in the information processing apparatus 1. The driver interpreter code 32 is then interpreted and executed by the information processing device 1.
[0035]
In this manner, by transferring and installing both the driver source program 29 and the driver interpreter code 32 to the information processing apparatus 1, for example, processing requiring a processing speed is developed by the driver source program 29, and other processing is performed. The processing can be developed with the driver interpreter code 32, for example.
[0036]
Embodiment 3 FIG.
Further, by transferring the driver source program 29 from the external device to the information processing apparatus 1 and installing it after compiling and linking, and separately transferring and executing the test source program, the object generated from the driver source program 29 can be obtained. You can inspect and confirm that the code works properly.
[0037]
FIG. 8 shows a configuration example of the external device 10 in this case, and the test source program 33 is stored in the nonvolatile memory 23. The configuration of the information processing apparatus 1 is the same as that of FIG. FIG. 9 is a diagram for explaining the processing of the driver installation program 12 operating in the information processing apparatus 1 in this case. The procedures (S91) to (S94) until the driver installation program 12 requests the transfer of the driver source program 29 and installs the same are the same as the procedures (S31) to (S34) in FIG. Thereafter, the driver installation program 12 requests the external device 10 to transfer the test source program 33. The external device 10 receives the request and transmits the test source program 33 stored in the internal nonvolatile memory 23 to the information processing device 1.
[0038]
Next, the driver installation program 12 receives the test source program 33 from the external device 10 and stores it in the work area on the nonvolatile memory 3. When the reception is completed, the driver installation program 12 compiles and links the test source program 33 to generate a test object code, and stores it in a work area on the nonvolatile memory 3. Thereafter, the test object code is installed in the information processing device. Next, the driver installation program 12 starts and executes the test object code. The executed test object code communicates with an external device using the driver's object code, tests whether the object code operates normally, and displays the result on a display device. Finally, the executed test object code is uninstalled.
[0039]
Thus, by compiling and linking the test source program in the information processing device, it is possible to confirm whether the driver object code generated from the driver source program operates normally in the information processing device. Further, since the test object code is automatically deleted after execution, no extra storage area is required.
[0040]
Here, a case has been described in which a test object program is generated from the test source program 33 and executed as a test program. However, a test interpreter code that is executed as an interpreter is transferred from an external device to the information processing apparatus. Needless to say, it may be executed.
Also, here, it has been described that the test object code is deleted after execution, but it goes without saying that the test object code may not be deleted.
[0041]
Also, here, the test object code is executed for the test, but an initial setting for setting an external device from the information processing apparatus may be executed. This initial setting may be not a program such as an object code but a setting file described in a predetermined format, and may be interpreted and executed by the information processing apparatus.
[0042]
Embodiment 4 FIG.
In the first embodiment, the driver source program 29 is stored in the storage unit (the non-volatile memory 23) of the external device 10, but it goes without saying that the driver source program 29 may be obtained from another location. For example, when the information processing apparatus 1 is equipped with a flexible disk drive, the driver source program 29 is stored in a flexible disk provided as an accessory of the external device 10, and the user can store the driver source program 29 in the flexible disk drive. When the external device 10 and the information processing apparatus 1 are connected after setting the disk in advance, the connection may be detected and the driver source program 29 may be read from the flexible disk.
[0043]
When the information processing apparatus is connected to a network such as the Internet, a driver source program is stored in a server on the network, and when an external device is connected to the information processing apparatus, the connection is detected and the server detects the connection. A driver source program may be read. FIG. 10 shows an example of the system configuration in this case. The information processing device 1 is connected to a server 42 via a network 41. The server 42 stores the driver source program 29. Further, the external device 10 is connected to the information processing apparatus 1.
[0044]
FIG. 11 is a diagram illustrating the processing of the driver installation program 12 that operates in the information processing apparatus 1. When detecting the connection of the external device 10, the driver installation program 12 first requests the external device 10 for an address indicating the server 42 in which the driver source program 29 is stored (S111). The external device 10 responds to the request with the server address stored in the internal storage means (non-volatile memory) to the information processing apparatus 1 (S112). Next, the driver installation program 12 requests the driver source program 29 from the server 42 indicated by the server address (S113). The server 42 transmits the requested driver source program 29 to the information processing device 1. The driver installation program 12 receives the driver source program 29 from the server 42 and stores it in the work area on the nonvolatile memory 3 (S114).
[0045]
Subsequent processing is the same as in FIG. 3 of the first embodiment.
That is, the driver installation program 12 compiles and links the driver source program 29 and stores the object code in the work area on the nonvolatile memory 3 (S115). Finally, the object code is installed in the information processing device 1 (S116). In this installation process, the object code is arranged at an appropriate position on the nonvolatile memory 3, and a process of address resolution is performed. Thus, the external device 10 can be used on the information processing apparatus 1.
[0046]
【The invention's effect】
As described above, according to the present invention, the information processing apparatus acquires a source program of a driver program for operating a connected external device, and performs compile and link from the source program. The compile link process at this time outputs an instruction code of the CPU of the information processing apparatus and an object code corresponding to the operating system. Therefore, it is not necessary to prepare a separate program for each model of the information processing apparatus, and it is sufficient to prepare one type of driver source program.
[Brief description of the drawings]
FIG. 1 is a configuration diagram of an information processing system including an information processing apparatus and an external device according to a first embodiment of the present invention.
FIG. 2 is a diagram illustrating a configuration of an external device in FIG. 1; FIG. 3 is a diagram illustrating a process of the information processing apparatus in FIG. 1;
FIG. 4 is a view for explaining processing of the external device of FIG. 1;
FIG. 5 is a diagram illustrating another configuration example of the external device.
FIG. 6 is a diagram showing a configuration example of an external device according to a second embodiment.
FIG. 7 is a diagram illustrating processing of the information processing apparatus in the case of the external device in FIG. 6;
FIG. 8 is a diagram showing a configuration example of an external device according to a third embodiment.
FIG. 9 is a view for explaining processing of the information processing apparatus in the case of the external device of FIG. 8;
FIG. 10 is a diagram illustrating an example of a configuration of a system according to a fourth embodiment.
FIG. 11 is a diagram illustrating a process of the information processing apparatus in FIG. 10;
[Explanation of symbols]
1: information processing device, 2, 22: CPU, 3, 23: nonvolatile memory, 4, 24: external I / F unit, 5, 25: interrupt control unit, 6, 26: CPU bus, 7, 27: interrupt signal Line, 8, 28: connector, 9: external communication cable, 10: external device, 11: operation system, 12: driver installation program, 29: driver source program, 30: imaging device, 31: driver intermediate code program, 32: Driver interpreter code, 33: test source program, 41: network, 42: server

Claims (9)

外部デバイスに接続可能な情報処理装置において、
新規な外部デバイスが接続された時、当該外部デバイスを動作させるのに必要なドライバソースプログラムを取得するドライバソースプログラム取得手段、
ドライバソースプログラムをコンパイルリンクするコンパイルリンク手段、
コンパイルリンクされたドライバ中間コードプログラムを記憶手段にインストールするインストール手段、
上記各手段を実行させるドライバインストールプログラムを備えた
ことを特徴とする情報処理装置。
In an information processing device connectable to an external device,
When a new external device is connected, a driver source program obtaining means for obtaining a driver source program necessary for operating the external device,
Compile link means for compiling and linking the driver source program,
Installation means for installing the compiled and linked driver intermediate code program in storage means;
An information processing apparatus comprising a driver installation program for executing each of the above means.
CPUを保持する情報処理装置に接続され、当該情報処理装置によって動作される外部デバイスであって、
情報処理装置との接続が自在にされる接続手段と、
情報処理装置が本外部デバイスを利用可能とするドライバソースプログラムを保持する記憶手段と、
情報処理装置の接続時に情報処理装置からの要求によりドライバソースプログラムを情報処理装置に転送する転送手段とを備えることを特徴とする外部デバイス。
An external device connected to the information processing device holding the CPU and operated by the information processing device,
Connection means for freely connecting to the information processing device;
Storage means for holding a driver source program that enables the information processing apparatus to use the external device;
An external device comprising: transfer means for transferring a driver source program to an information processing device in response to a request from the information processing device when the information processing device is connected.
上記記憶手段はドライバソースプログラムの代わりに、ドライバソースプログラムから一次的にコンパイルリンクされたドライバ中間コードプログラムを保持し、上記転送手段はドライバ中間コードプログラムを上記情報処理装置に転送することを特徴とする請求項3記載の外部デバイス。The storage means holds a driver intermediate code program temporarily compiled and linked from the driver source program instead of the driver source program, and the transfer means transfers the driver intermediate code program to the information processing device. The external device according to claim 3, wherein 外部デバイスに接続可能な情報処理装置に、
外部デバイスを動作させるのに必要なドライバソースプログラムを取得するドライバソースプログラム取得手順、
取得したドライバソースプログラムをコンパイルリンクするコンパイルリンク手順、
コンパイルリンクされたドライバ中間コードプログラムを情報処理装置にインストールするインストール手順
を実行させるためのドライバインストールプログラム。
Information processing devices that can be connected to external devices
A driver source program acquisition procedure for acquiring a driver source program required to operate an external device,
Compile link procedure for compiling and linking the obtained driver source program,
A driver installation program for executing an installation procedure for installing a compiled and linked driver intermediate code program in an information processing apparatus.
ドライバソースプログラムに加えて、当該外部デバイスを動作させる別プログラムを外部から受信、インストールする手順を情報処理装置に実行させることを特徴とする請求項4記載のドライバインストールプログラム。The driver installation program according to claim 4, wherein the program causes the information processing apparatus to execute a procedure of receiving and installing another program for operating the external device from the outside in addition to the driver source program. プログラムをインストール後、自動的にそのプログラムを情報処理装置に実行させることを特徴とする請求項5記載のドライバインストールプログラム。6. The driver installation program according to claim 5, wherein, after the program is installed, the information processing apparatus automatically executes the program. プログラムを実行した後、自動的にそのプログラムを情報処理装置にアンインストールさせることを特徴とする請求項6記載のドライバインストールプログラム。7. The driver installation program according to claim 6, wherein after the program is executed, the program is automatically uninstalled from the information processing apparatus. 情報処理装置にドライバソースプログラムに加えて、外部デバイス設定用に情報処理装置を設定するための設定ファイルを外部デバイスから受信、解釈実行させることを特徴とする請求項5記載のドライバインストールプログラム。6. The driver installation program according to claim 5, wherein the information processing apparatus receives, from the external device, a setting file for setting the information processing apparatus for setting the external device in addition to the driver source program, and interprets and executes the setting file. 外部デバイスに接続可能な情報処理装置に、
外部デバイスを動作させるのに必要なドライバソースプログラムが格納されたサーバのアドレスを取得するドライバソースプログラムアドレス取得手順、
前記ドライバソースプログラムをネットワーク経由でサーバから取得するドライバソースプログラム取得手順、
ドライバソースプログラムをコンパイルリンクするコンパイルリンク手順、
コンパイルリンクされたドライバ中間コードプログラムを情報処理装置にインストールするインストール手順
を実行させるためのドライバインストールプログラム。
Information processing devices that can be connected to external devices
A driver source program address obtaining procedure for obtaining an address of a server in which a driver source program necessary for operating an external device is stored,
A driver source program obtaining procedure for obtaining the driver source program from a server via a network,
Compile link procedure for compiling and linking the driver source program,
A driver installation program for executing an installation procedure for installing a compiled and linked driver intermediate code program in an information processing apparatus.
JP2002243032A 2002-08-23 2002-08-23 Information processor, external device and driver installation program Pending JP2004086280A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2002243032A JP2004086280A (en) 2002-08-23 2002-08-23 Information processor, external device and driver installation program

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2002243032A JP2004086280A (en) 2002-08-23 2002-08-23 Information processor, external device and driver installation program

Publications (1)

Publication Number Publication Date
JP2004086280A true JP2004086280A (en) 2004-03-18

Family

ID=32051904

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2002243032A Pending JP2004086280A (en) 2002-08-23 2002-08-23 Information processor, external device and driver installation program

Country Status (1)

Country Link
JP (1) JP2004086280A (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2007119527A1 (en) * 2006-03-29 2007-10-25 Sharp Kabushiki Kaisha Storage device, device control device, device control program, broadcast receiver, device control method
JP2007328811A (en) * 2007-08-06 2007-12-20 Sharp Corp Receiver
JP2010140165A (en) * 2008-12-10 2010-06-24 Tokyo Electric Power Co Inc:The Information processing device, method, and program as filter driver for monitoring
JP2012155515A (en) * 2011-01-26 2012-08-16 Renesas Electronics Corp Source device driver and method for creating execution module
JP2019168931A (en) * 2018-03-23 2019-10-03 日本電気株式会社 Flow management server, flow management system, flow management method and flow management program

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2007119527A1 (en) * 2006-03-29 2007-10-25 Sharp Kabushiki Kaisha Storage device, device control device, device control program, broadcast receiver, device control method
JP2007328811A (en) * 2007-08-06 2007-12-20 Sharp Corp Receiver
JP4571171B2 (en) * 2007-08-06 2010-10-27 シャープ株式会社 Receiver
JP2010140165A (en) * 2008-12-10 2010-06-24 Tokyo Electric Power Co Inc:The Information processing device, method, and program as filter driver for monitoring
JP2012155515A (en) * 2011-01-26 2012-08-16 Renesas Electronics Corp Source device driver and method for creating execution module
JP2019168931A (en) * 2018-03-23 2019-10-03 日本電気株式会社 Flow management server, flow management system, flow management method and flow management program

Similar Documents

Publication Publication Date Title
US6311322B1 (en) Program rewriting apparatus
TWI421765B (en) Display control device with automatic firmware update and update method thereof
CN101110039B (en) Terminal unit self-installing and self-starting system and method thereof
US8949205B2 (en) Information processing apparatus for processing application software and a patch file
US20130067462A1 (en) Installation method, information processing apparatus and device driver
EP1508854A2 (en) Driver installation and peripheral device
US8666263B2 (en) Information input method, apparatus and system for associated apparatus of imaging device
CN107077435B (en) Device driver registration apparatus and device driver registration method using the same
JP2004086280A (en) Information processor, external device and driver installation program
JP2008511050A (en) Error response by data processing system and peripheral devices
US20040239713A1 (en) Error-processing system and method for printers
JP2007172391A (en) Control method for electronic equipment, control program for electronic equipment, electronic equipment and recording device
JP2005182812A (en) System and method for storing image file in computer system
JP2003316603A (en) Program verification system
JP3308920B2 (en) Information processing device
JP4076113B2 (en) Electronic control unit
FI120430B (en) Customizable frequency converter
CN101562007A (en) Display control device capable of automatically updating firmware and update method thereof
JP2007011799A (en) Device apparatus
JP5216624B2 (en) Software development system and software development method
JP4164473B2 (en) Functional memory access control system, functional memory device, control method therefor, and program
JP2009258882A (en) Operation part control unit, version control method, and image forming apparatus
JP2009080592A (en) Firmware rewriting method
JP2005028728A (en) Printer
US20040066528A1 (en) Methods and systems for gathering device data using the internet

Legal Events

Date Code Title Description
RD01 Notification of change of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7421

Effective date: 20040707

A621 Written request for application examination

Free format text: JAPANESE INTERMEDIATE CODE: A621

Effective date: 20040727

A871 Explanation of circumstances concerning accelerated examination

Free format text: JAPANESE INTERMEDIATE CODE: A871

Effective date: 20040727

A975 Report on accelerated examination

Free format text: JAPANESE INTERMEDIATE CODE: A971005

Effective date: 20040826

A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20041109

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20041116

A521 Request for written amendment filed

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20050112

A02 Decision of refusal

Free format text: JAPANESE INTERMEDIATE CODE: A02

Effective date: 20050208