1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ウォッチドッグタイマの機能

Last updated at Posted at 2020-07-23

応用情報技術者令和元年秋期 午前問21

組込みシステムにおける,ウォッチドッグタイマの機能はどれか。

image.png

ウィッチドッグタイマで設定されていた時間以内でリセットされる
・正常の場合、定めていた時間内で0にリセット
・異常の場合、リセットができなく、タイマが増え続く

なので、「設定した時間内にリセットが行われなかったのは、システムに異常が起きている」という結果になります。
ノンマスカブル割込みを発生させ、システムに異常を通知するという仕組みです。

NMI(ノンマスカブル割り込み:Non-maskable interrupt)とは、その名の通りマスクできない割り込みです。通常の割り込みでは、割り込み要因が発生しても、その割り込みをマスクして受け付けない設定が可能です(マスカブル割り込み:Maskable interrupt 可屏蔽中断 と呼ばれる)。しかし、NMIの場合はマスクができず、NMIの割り込み要因が発生した場合には必ず割り込みを受け付けます。

参照:
https://www.ap-siken.com/kakomon/29_aki/q22.html#:~:text=%E7%B5%84%E8%BE%BC%E3%81%BF%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0%E3%81%AB%E3%81%8A%E3%81%91%E3%82%8B%EF%BC%8C%E3%82%A6%E3%82%A9%E3%83%83%E3%83%81%E3%83%89%E3%83%83%E3%82%B0,%E3%81%A6%E3%82%B7%E3%82%B9%E3%83%86%E3%83%A0%E3%81%AB%E9%80%9A%E7%9F%A5%E3%81%99%E3%82%8B%E3%80%82

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?