JP3257932B2 - Engine control method - Google Patents

Engine control method

Info

Publication number
JP3257932B2
JP3257932B2 JP19514195A JP19514195A JP3257932B2 JP 3257932 B2 JP3257932 B2 JP 3257932B2 JP 19514195 A JP19514195 A JP 19514195A JP 19514195 A JP19514195 A JP 19514195A JP 3257932 B2 JP3257932 B2 JP 3257932B2
Authority
JP
Japan
Prior art keywords
interrupt
job
processing
executed
time intervals
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.)
Expired - Fee Related
Application number
JP19514195A
Other languages
Japanese (ja)
Other versions
JPH0942042A (en
Inventor
田 和 也 池
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.)
Panasonic Corp
Panasonic Holdings Corp
Original Assignee
Panasonic Corp
Matsushita Electric Industrial Co Ltd
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 Panasonic Corp, Matsushita Electric Industrial Co Ltd filed Critical Panasonic Corp
Priority to JP19514195A priority Critical patent/JP3257932B2/en
Publication of JPH0942042A publication Critical patent/JPH0942042A/en
Application granted granted Critical
Publication of JP3257932B2 publication Critical patent/JP3257932B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Landscapes

  • Electrical Control Of Air Or Fuel Supplied To Internal-Combustion Engine (AREA)
  • Combined Controls Of Internal Combustion Engines (AREA)

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【産業上の利用分野】本発明は、マイクロプロセッサを
搭載したエンジン制御装置の制御方法に関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a control method for an engine control device equipped with a microprocessor.

【0002】[0002]

【従来の技術】今日のエンジン制御装置は、エンジンの
燃料噴射量を制御するとともに、その他の制御、特にオ
ートマチック車のミッション制御を行なうなどの統合化
が進んでいる。エンジンの燃料噴射量は、エンジンパル
スに同期して計算され、ミッション制御のパラメータ
は、一定時間毎に計算されている。これらの計算を行な
うジョブは、マイクロプロセッサにより実行される。エ
ンジンパルスに同期して行なわれるジョブ(以下、エン
ジンパルス同期ジョブという。)と、一定時間毎に行な
われるジョブ(以下、一定時間毎処理ジョブという。)
とは非同期であるため、処理要求が重なる場合が発生す
る。その際、スタック退避によるRAMの使用量を抑え
るため、またソフトウエアの設計を簡潔にするため、一
定時間毎処理ジョブは、図5に示すように、基本周期
(例えば10ms)毎に実行されるタイマ割り込みにお
いて、基本周期をカウントし、実行タイミングとなった
ジョブを実行することにより処理している。
2. Description of the Related Art Today's engine control devices are being integrated to control the fuel injection amount of an engine and to perform other controls, particularly, mission control of an automatic vehicle. The fuel injection amount of the engine is calculated in synchronization with the engine pulse, and the parameters of the mission control are calculated at regular intervals. Jobs for performing these calculations are executed by the microprocessor. A job performed in synchronization with an engine pulse (hereinafter, referred to as an engine pulse synchronous job) and a job performed at regular intervals (hereinafter, referred to as a processing job at regular intervals).
Are asynchronous with each other, there may be cases where processing requests overlap. At this time, in order to reduce the amount of RAM used due to stack saving and simplify the software design, the processing job is executed at regular intervals (for example, every 10 ms) as shown in FIG. In the timer interrupt, the basic cycle is counted, and processing is performed by executing the job that has reached the execution timing.

【0003】[0003]

【発明が解決しようとする課題】しかしながら、上記従
来のエンジン制御方法では、制御装置への要求性能が高
くなるに従い、計算量が増大し、マイクロプロセッサが
処理に要する時間が長くなっている。エンジンパルス同
期ジョブは、エンジンパルスによる割り込み要求からの
起動遅れが小さいことが望ましいが、一定時間毎処理ジ
ョブの処理時間が長い場合、このジョブの実行中にエン
ジンパルス同期ジョブの割り込み要求があった場合、起
動までの時間が長くなってしまい、制御性能が低下す
る。
However, in the above-described conventional engine control method, as the required performance of the control device increases, the amount of calculation increases, and the time required for processing by the microprocessor increases. An engine pulse synchronous job desirably has a small startup delay from an interrupt request due to an engine pulse. However, if the processing time of a processing job is fixed at regular time intervals, an engine pulse synchronous job interrupt request is issued during execution of this job. In this case, the time until the start is long, and the control performance is reduced.

【0004】具体的には、図5のフロー図に従って基本
周期割り込み中で直接ジョブを実行すると、図6のよう
に、10msジョブ、20msジョブ、40msジョ
ブ、80msジョブが連続して実行される場合があり、
この割り込み中にエンジンパルス同期割り込み要求が発
生した場合、割り込み遅れ時間Tdは最大で10ms〜
80msジョブの実行時間の合計となってしまう。
More specifically, when a job is directly executed during a basic cycle interrupt according to the flow chart of FIG. 5, as shown in FIG. 6, a 10 ms job, a 20 ms job, a 40 ms job, and an 80 ms job are successively executed. There is
If an engine pulse synchronous interrupt request occurs during this interrupt, the interrupt delay time Td is 10 ms or less at the maximum.
This is the total execution time of the 80 ms job.

【0005】これを避けるために、エンジンパルス同期
ジョブを実行する割り込みのレベルを、一定時間毎処理
ジョブを実行する割り込みのレベルより高く設定する
と、前述のように、RAMの使用量が増え、またソフト
ウエアの設計が煩雑となるという問題があった。
To avoid this, if the level of the interrupt for executing the engine pulse synchronous job is set higher than the level of the interrupt for executing the processing job at regular time intervals, as described above, the amount of use of the RAM increases, and There is a problem that software design becomes complicated.

【0006】本発明は、このような従来の問題を解決す
るものであり、エンジンパルスに対する割り込み遅れ時
間を少なくできるとともに、RAMの使用量を抑えるこ
とのできるエンジン制御方法を提供することを目的とす
る。
An object of the present invention is to solve such a conventional problem and to provide an engine control method capable of reducing an interrupt delay time for an engine pulse and suppressing an amount of RAM used. I do.

【0007】[0007]

【課題を解決するための手段】本発明は、上記目的を達
成するために、一定時間毎処理ジョブを一定時間毎処理
割り込みで行なわれるようにし、この割り込みの割り込
み要求は基本周期毎に行なわれるタイマ割り込みで発生
させ、基本周期毎に行なわれるタイマ割り込みは、それ
ぞれ周期の異なるジョブの発生周期を制御し、ジョブの
発生要求がある場合には対応するジョブ処理要求フラグ
をセットし、処理要求フラグが少なくとも1つ存在した
場合には、一定時間毎処理割り込みを発生させる。一定
時間毎処理割り込みにおいては、処理要求フラグをこれ
に対応するジョブの処理周期の短いものから順にチェッ
クし、処理要求フラグが存在すればこれに対応するジョ
ブを実行し、処理要求フラグをクリアしてその割り込み
を終了させる。この終了時に、他の処理要求フラグがあ
るかどうかを確認し、存在すれば再度一定時間毎処理割
り込みを起動する。また、エンジンパルス同期割り込み
と一定時間毎処理割り込みは同じレベルであり、同時に
発生した場合はエンジンパルス同期割り込みが優先して
行なわれるように設定されている。
According to the present invention, in order to achieve the above-mentioned object, a process job is executed at regular intervals by a process interrupt at regular intervals, and an interrupt request for this interrupt is issued at a basic cycle. Timer interrupts, which are generated by timer interrupts and are performed for each basic cycle, control the job generation cycle of each different cycle, and when there is a job generation request, set the corresponding job processing request flag, and set the processing request flag. If at least one exists, a processing interrupt is generated at regular time intervals. In the process interrupt at regular time intervals, the process request flag is checked in ascending order of the processing cycle of the corresponding job, and if the process request flag exists, the corresponding job is executed and the process request flag is cleared. To end the interrupt. At the end of the processing, it is checked whether or not there is another processing request flag, and if there is, a processing interrupt is activated again at regular intervals. Also, the engine pulse synchronous interrupt and the processing interrupt at regular intervals are at the same level, and if they occur simultaneously, the engine pulse synchronous interrupt is set to be performed with priority.

【0008】[0008]

【作用】本発明は、上記構成により、あるタイミングで
複数のそれぞれ処理周期の異なる一定時間毎処理ジョブ
を実行する必要がある場合、基本周期毎に行なわれるタ
イマ処理で複数の処理要求フラグをセットすると同時
に、一定時間毎処理割り込みを発生させる。例えば、複
数の処理要求ジョブが、それぞれ10ms、20ms、
40msであった場合、一定時間毎処理割り込みでは、
処理周期の短い順にチェックするため、まず10msジ
ョブを実行し、10msジョブ要求フラグをクリアし、
まだ他の要求ジョブが残っているので、再度一定時間毎
処理割り込みが起動され、同様に20msジョブ、40
msジョブの順に実行される。
According to the present invention, when it is necessary to execute a plurality of processing jobs each having a different processing cycle and at a certain time interval, at a certain timing, a plurality of processing request flags are set by timer processing performed for each basic cycle. At the same time, a processing interrupt is generated at regular time intervals. For example, a plurality of processing request jobs are respectively 10 ms, 20 ms,
In the case of 40 ms, in the processing interrupt every fixed time,
In order to check in the shortest processing cycle, first execute a 10 ms job, clear the 10 ms job request flag,
Since another requested job still remains, a processing interrupt is started again at regular intervals, and a 20 ms job, 40
ms jobs are executed in order.

【0009】ここで、最初の10msジョブ実行中にエ
ンジンパルス同期ジョブの割り込み要求があった場合、
エンジンパルス同期割り込み要求と次の20msジョブ
に応じた一定時間毎処理割り込み要求が同時に存在する
が、エンジンパルス同期割り込みは一定時間毎処理割り
込みより優先順位が高いので、10msジョブが終了す
ると、エンジンパルス同期ジョブが実行され、次に20
msジョブ、40msジョブが実行される。
Here, if an interrupt request for an engine pulse synchronous job is issued during the execution of the first 10 ms job,
Although the engine pulse synchronous interrupt request and the processing interrupt request at regular time intervals according to the next 20 ms job are present at the same time, the engine pulse synchronous interrupt has a higher priority than the processing interrupt at regular time intervals. A sync job is executed, then 20
An ms job and a 40 ms job are executed.

【0010】従来のエンジン制御方法では、10msジ
ョブ、20msジョブ、40msジョブが連続して行な
われ、これが終了してからエンジンパルス同期ジョブが
実行されるため、エンジンパルス同期割り込み要求から
実際にエンジンパルス同期ジョブが実行されるまでの時
間が長かったが、本発明では、待ち時間が10msジョ
ブの実行される時間だけとなり、制御性能が向上する。
すなわち、複数の一定時間毎処理ジョブがあった場合、
これを1回の割り込みで1つずつ実行するとともに、そ
の終了毎にエンジンパルス同期ジョブに対し実行機会を
与えることにより、レスポンスを向上させることができ
る。また、一定時間毎処理割り込みにおいて、ジョブ要
求フラグを処理周期の短い順からチェックすることによ
り、発生頻度の高い順にジョブの発生をチェックし、発
生頻度の高いジョブを優先して行なうことができる。
In the conventional engine control method, a 10 ms job, a 20 ms job, and a 40 ms job are continuously performed, and after the job is completed, the engine pulse synchronous job is executed. Although the time until the synchronous job is executed is long, in the present invention, the waiting time is only the time for executing the 10 ms job, and the control performance is improved.
In other words, if there are a plurality of processing jobs at regular time intervals,
The response can be improved by executing this one by one by one interruption and giving an execution opportunity to the engine pulse synchronous job each time the job is completed. In addition, by checking the job request flag in ascending order of processing cycle in the processing interrupt at regular time intervals, the occurrence of jobs can be checked in descending order of the occurrence frequency, and the job with the highest occurrence frequency can be preferentially performed.

【0011】[0011]

【実施例】図1は本発明の一実施例における基本周期タ
イマ割り込み処理のフロー図である。本実施例では、1
0ms、20ms、40ms、80msジョブの4つを
制御する。基本周期タイマの割込みは、10ms毎に実
行される。図1のフロー図においては、0〜7までカウ
ントするカウンタにより、まず10msジョブ要求フラ
グをセットすると(ステップ1)、カウンタがカウント
回数を計数する(ステップ2)。所定のタイミングで、
順次20msジョブ要求フラグ(ステップ3)、40m
sジョブ要求フラグ(ステップ4)、80msジョブ要
求フラグ(ステップ5)をセットする。その後、割り込
み発生判定処理(ステップ6)において、いずれかのジ
ョブ要求フラグがセットされているかをチェックし(ス
テップ7)、いずれかがセットされていれば一定時間毎
処理割り込みを発生させる(ステップ8)。
FIG. 1 is a flowchart of a basic cycle timer interrupt process according to one embodiment of the present invention. In this embodiment, 1
The four jobs of 0 ms, 20 ms, 40 ms, and 80 ms are controlled. The interruption of the basic cycle timer is executed every 10 ms. In the flowchart of FIG. 1, a 10 ms job request flag is first set by a counter that counts from 0 to 7 (step 1), and the counter counts the number of counts (step 2). At a predetermined timing,
20ms job request flag (step 3), 40m
The s job request flag (step 4) and the 80 ms job request flag (step 5) are set. Thereafter, in the interrupt occurrence judging process (Step 6), it is checked whether any job request flag is set (Step 7), and if any one is set, a process interrupt is generated at regular intervals (Step 8). ).

【0012】図2は一定時間毎処理割り込み処理のフロ
ー図である。ここでは、上記基本周期タイマ割り込み処
理でセットされた処理要求フラグを、10msジョブ要
求フラグ、20msジョブ要求フラグ、40msジョブ
要求フラグ、80msジョブ要求フラグの順にチェック
し(ステップ11〜14)、処理要求があった場合それ
に対応するジョブを実行し(ステップ15〜18)、そ
の処理要求フラグをクリアし(ステップ19〜22)、
他のジョブ処理要求フラグはチェックせずに終了判定処
理(ステップ23)を行なう。この終了判定処理では、
処理要求フラグのいずれかがセットされているかをチェ
ックし(ステップ24)、いずれかがセットされていれ
ば、再度一定時間毎処理割り込みを発生させる(ステッ
プ25)。
FIG. 2 is a flow chart of the interrupt processing for every fixed time. Here, the processing request flags set in the basic cycle timer interrupt processing are checked in the order of the 10 ms job request flag, the 20 ms job request flag, the 40 ms job request flag, and the 80 ms job request flag (steps 11 to 14). If there is, execute the corresponding job (steps 15-18), clear the processing request flag (steps 19-22),
The end determination processing (step 23) is performed without checking other job processing request flags. In this end determination process,
It is checked whether any of the processing request flags have been set (step 24). If any of the processing request flags have been set, a processing interrupt is generated again at regular intervals (step 25).

【0013】したがって、同時に10ms、20ms、
40ms、80msジョブが発生するタイミングとなっ
た場合、図3のように、基本周期タイマ割り込みで各ジ
ョブに応じた処理要求フラグをセットし、一定時間毎処
理割り込みが起動され、まず10msジョブが実行さ
れ、処理要求フラグがクリアされる。その後、終了判定
処理でフラグをチェックし、処理要求フラグがまだセッ
トされているため、一定時間毎処理割り込みが再起動さ
れる。ここで、一時的に割り込みが終了するが、再度一
定時間毎処理割り込みが発生するため、ここで20ms
ジョブが実行され、その後これを繰り返して40ms、
80msジョブが実行される。すなわち一定時間毎処理
割り込みが4回連続して実行されることになる。
Therefore, at the same time, 10 ms, 20 ms,
When it is time to generate a 40 ms or 80 ms job, as shown in FIG. 3, a processing request flag corresponding to each job is set by a basic cycle timer interrupt, and a processing interrupt is started at regular intervals, and first, a 10 ms job is executed. And the processing request flag is cleared. Thereafter, the flag is checked in the end determination processing, and since the processing request flag is still set, the processing interrupt is restarted at regular intervals. Here, the interrupt is temporarily terminated, but a processing interrupt occurs again at regular time intervals.
The job is executed, then repeat this for 40ms,
An 80 ms job is executed. That is, the processing interrupt is executed four times in a row at regular intervals.

【0014】ここで、図4のように、10msジョブ実
行中にエンジンパルス同期割り込み要求があった場合、
実行中の割り込みと割り込みレベルが同一なので、10
msジョブ終了まではエンジンパルス同期割り込みは待
たされ、10msジョブが終了した時点で、エンジンパ
ルス同期割り込み要求と、20msジョブに対応した一
定時間毎処理割り込み要求が存在するが、エンジンパル
ス同期割り込み要求が優先となるようにハードウエアが
構成されているため、エンジンパルス同期割り込みが先
に受け付けられ、エンジンパルス同期ジョブが実行され
る。その後、20ms、40ms、80msの各ジョブ
が実行されることになる。したがって、エンジンパルス
同期割り込み要求から対応するジョブが実行されるまで
の割り込み遅れ時間Tdは、図4のように、最大でも1
0msジョブの実行時間Tj以下となり、図6の従来例
に比べて大きく改善され、制御性能を向上させることが
できる。
Here, as shown in FIG. 4, when an engine pulse synchronous interrupt request is issued during execution of a 10 ms job,
Since the interrupt level being executed and the interrupt level are the same, 10
The engine pulse synchronization interrupt is kept waiting until the end of the ms job. When the 10 ms job is completed, there are an engine pulse synchronization interrupt request and a processing interrupt request at regular intervals corresponding to the 20 ms job. Since the hardware is configured to be prioritized, the engine pulse synchronization interrupt is received first, and the engine pulse synchronization job is executed. After that, each job of 20 ms, 40 ms, and 80 ms is executed. Therefore, as shown in FIG. 4, the interrupt delay time Td from the engine pulse synchronous interrupt request to the execution of the corresponding job is at most 1 as shown in FIG.
The execution time is equal to or shorter than the 0 ms job execution time Tj, which is greatly improved as compared with the conventional example shown in FIG. 6, and the control performance can be improved.

【0015】[0015]

【発明の効果】以上のように、本発明によれば、エンジ
ンパルス同期ジョブが一定時間毎処理ジョブの終了のタ
イミングで優先して実行されるため、エンジンパルスに
対する割り込み遅れ時間を少なくすることができ、エン
ジン制御性能を向上させることができる。また、割り込
みが順番に行なわれて多重に実行されないため、RAM
の使用量を抑えることができ、優れたエンジン制御方法
を実現することができる。
As described above, according to the present invention, the engine pulse synchronous job is executed preferentially at the end timing of the processing job at regular intervals, so that the interrupt delay time for the engine pulse can be reduced. As a result, engine control performance can be improved. Also, since interrupts are performed in order and are not executed in multiple
Can be suppressed, and an excellent engine control method can be realized.

【図面の簡単な説明】[Brief description of the drawings]

【図1】本発明の一実施例における基本タイマ割り込み
処理のフロー図
FIG. 1 is a flowchart of basic timer interrupt processing according to an embodiment of the present invention.

【図2】本発明の一実施例における一定時間毎処理割り
込み処理のフロー図
FIG. 2 is a flowchart of a process interrupt process performed at regular time intervals according to an embodiment of the present invention;

【図3】本発明の一実施例における割り込み処理タイミ
ング図
FIG. 3 is a timing chart of interrupt processing according to an embodiment of the present invention;

【図4】本発明の一実施例におけるエンジンパルス同期
割り込みがあった場合のタイミング図
FIG. 4 is a timing chart in a case where an engine pulse synchronous interrupt occurs in one embodiment of the present invention.

【図5】従来例における基本タイマ割り込み処理のフロ
ー図
FIG. 5 is a flowchart of basic timer interrupt processing in a conventional example.

【図6】従来例におけるエンジンパルス同期割り込みが
あった場合のタイミング図
FIG. 6 is a timing chart when an engine pulse synchronous interrupt occurs in a conventional example.

【符号の説明】[Explanation of symbols]

Td 割り込み遅れ時間 Tj 10msジョブ実行時間 Td Interrupt delay time Tj 10ms Job execution time

Claims (3)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】 エンジンパルスに同期して実行されるジ
ョブと、これとは非同期でそれぞれ周期の異なる一定時
間毎に行なわれる複数のジョブとを有し、エンジンパル
スに同期して行なわれるジョブは、エンジンパルスに同
期して起動される割り込みにおいて実行され、それぞれ
周期の異なる一定時間毎に行なわれる複数のジョブは、
一定時間毎処理割り込みにおいて実行され、一定時間毎
に行なわれるジョブが複数あった場合、これを1回の割
り込みで1つずつ実行するとともに、その終了毎に、エ
ンジンパルスに同期して行なわれるジョブに対し実行機
会を与えるようにしたエンジン制御方法。
1. A job which is executed in synchronization with an engine pulse and a plurality of jobs which are executed asynchronously and at predetermined time intervals different from each other, and which are executed in synchronization with the engine pulse, , A plurality of jobs that are executed at an interrupt that is started in synchronization with the engine pulse and that are performed at regular time intervals having different periods,
If there are a plurality of jobs that are executed in a processing interrupt at regular time intervals and are executed at regular time intervals, the jobs are executed one by one with one interrupt, and each time the job is ended, the jobs are executed in synchronization with the engine pulse. An engine control method that gives an opportunity to execute.
【請求項2】 一定時間毎処理割り込みは、基本周期毎
に実行されるタイマ割り込みにおいて、一定時間毎に行
なわれる複数のジョブの実行周期に応じてそれぞれセッ
トされるジョブ処理要求フラグのうち少なくとも1つが
セットされた場合に起動され、エンジンパルスに同期し
て起動される割り込みと一定時間毎処理割り込みとは同
じレベルの割り込みであり、同時に要求があった場合に
は、エンジンパルスに同期して起動される割り込みが優
先して行なわれるようにした請求項1記載のエンジン制
御方法。
2. The method according to claim 1, wherein the processing interrupt at predetermined time intervals is a timer interrupt executed at every basic cycle, wherein at least one of job processing request flags set according to an execution cycle of a plurality of jobs performed at fixed time intervals. When one is set, the interrupt that is started in synchronization with the engine pulse and the processing interrupt at fixed time intervals are the same level interrupt, and if there is a simultaneous request, it is started in synchronization with the engine pulse 2. The engine control method according to claim 1, wherein the interrupt to be performed is performed with priority.
【請求項3】 一定時間毎処理割り込みにおいて、基本
周期毎に実行されるタイマ割り込みでセットされたジョ
ブ処理要求フラグをジョブの実行周期の短い順にチェッ
クし、最初に見つかったフラグに対応するジョブを実行
し、処理要求フラグをクリアし、他の処理要求フラグが
あるかどうかをチェックして、存在した場合には一定時
間毎処理割り込みを再度起動するようにした請求項2記
載のエンジン制御方法。
3. In a processing interrupt at regular time intervals, a job processing request flag set by a timer interrupt executed every basic cycle is checked in ascending order of job execution cycle, and a job corresponding to a flag found first is determined. 3. The engine control method according to claim 2, further comprising: executing the processing request flag, checking whether there is another processing request flag, and restarting the processing interrupt every predetermined time if the processing request flag is present.
JP19514195A 1995-07-31 1995-07-31 Engine control method Expired - Fee Related JP3257932B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP19514195A JP3257932B2 (en) 1995-07-31 1995-07-31 Engine control method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP19514195A JP3257932B2 (en) 1995-07-31 1995-07-31 Engine control method

Publications (2)

Publication Number Publication Date
JPH0942042A JPH0942042A (en) 1997-02-10
JP3257932B2 true JP3257932B2 (en) 2002-02-18

Family

ID=16336135

Family Applications (1)

Application Number Title Priority Date Filing Date
JP19514195A Expired - Fee Related JP3257932B2 (en) 1995-07-31 1995-07-31 Engine control method

Country Status (1)

Country Link
JP (1) JP3257932B2 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE19851974B4 (en) * 1998-11-03 2011-04-28 Robert Bosch Gmbh Method and device for controlling operations in a vehicle

Also Published As

Publication number Publication date
JPH0942042A (en) 1997-02-10

Similar Documents

Publication Publication Date Title
KR101391907B1 (en) Interrupt Controller
JP2009282987A (en) Method of interrupt scheduling
JP3257932B2 (en) Engine control method
US5809335A (en) Data transfer apparatus capable of handling DMA block transfer interruptions
JP2001202258A (en) Rear time processor
JP7147615B2 (en) task management device
CN111158875B (en) Multi-module-based multi-task processing method, device and system
WO2005013130A1 (en) Real time control system
JP3005562B1 (en) Task management device and task scheduling method
JPH0877039A (en) Test method
JP2003345404A (en) Electronic control device and program
JPH07262022A (en) Interruption processing system
JPH08328615A (en) Controller for automobile
JP2021105368A (en) Engine control device
JP2726126B2 (en) Periodic task management method
JP3214557B2 (en) I / O control device and DMA transfer control method
JP3775868B2 (en) Engine control software timing management device
JP3169316B2 (en) Task scheduling method
JP2814956B2 (en) Dispatcher control method
JPH06149592A (en) Interruption processing system for microcomputer
JP2850691B2 (en) Engine digital control unit
JPH09288585A (en) Operation order control method for automatic machine
KR20190102748A (en) Method for scheduling partitions
CN113495781A (en) Task scheduling method, device, equipment and readable storage medium
WO2005085994A2 (en) Multi-tasking data processing system

Legal Events

Date Code Title Description
FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20071207

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20081207

Year of fee payment: 7

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20081207

Year of fee payment: 7

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20091207

Year of fee payment: 8

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20091207

Year of fee payment: 8

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20101207

Year of fee payment: 9

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20101207

Year of fee payment: 9

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20111207

Year of fee payment: 10

LAPS Cancellation because of no payment of annual fees