{{{ #!html
Watchdog Manager
}}} [[BR]] = 概要 = * ウォッチドッグタイマを使って、アプリケーションが正常に動作しているかの監視を行う * 監視方法は、アライブ監視、デッドライン監視、ロジカル監視の3種類 * すべての監視は、複数チェックポイントを設定し、各チェックポイントの通過状況によって行う * アライブ監視 * 設定した一定時間内に、設定した範囲の回数だけチェックポイントを通過するかを監視する * デッドライン監視 * 2つのチェックポイントを通過する間に要した時間が、設定した時間内であるかを監視する * ロジカル監視 * 複数のチェックポイントが事前に通過した順序で通過するか監視する * 時間管理は、[#WdgM_MainFunction WdgM_MainFunction]を周期的に呼び出すことにより実現する * [#WdgM_MainFunction WdgM_MainFunction]は、[wiki:SchM BSW Scheduler Module]によって周期的に呼び出される * [#WdgM_MainFunction WdgM_MainFunction]の呼出し間隔は、[#WdgMSupervisionCycle WdgMSupervisionCycle]に、秒単位で設定する * アライブ監視の一定時間は、[#WdgM_MainFunction WdgM_MainFunction]の呼出し回数によって設定する * つまり、[#WdgM_MainFunction WdgM_MainFunction]の呼出し間隔の倍数でしか設定できない * デッドライン監視の時間は、秒単位で設定し、OSのカウンタ等を使って監視する * R4.1系ではOSカウンタを使用することが明確化されている * 正しく動作している状態では、[#WdgM_MainFunction WdgM_MainFunction]から定期的に[wiki:WdgIf Watchdog Interface]へ、ウォッチドッグタイマがリセットされるタイムアウト値をリセットする * タイムアウト値はミリ秒単位で、[#WdgMTriggerConditionValue WdgMTriggerConditionValue]に設定する * 当然、[#WdgM_MainFunction WdgM_MainFunction]の呼出し間隔より短い時間をタイムアウト値に設定してしまうと、ウォッチドッグタイマがリセットされてしまう * API一覧 ||= API =||= ID[[BR]][Dec] =||= ID[[BR]][Hex] =||= R4.0.3 =||= R4.2.2 =||= R21-11 =|| || [#WdgM_Init WdgM_Init] || 0|| 0x00|| ○ || ○ || ○ || || [#WdgM_DeInit WdgM_DeInit] || 1|| 0x01|| ○ || ○ || ○ || || [#WdgM_GetVersionInfo WdgM_GetVersionInfo] || 2|| 0x02|| ○ || ○ || ○ || || [#WdgM_SetMode WdgM_SetMode] || 3|| 0x03|| ○ || ○ || ○ || || [#WdgM_GetMode WdgM_GetMode] || 11|| 0x0B|| ○ || ○ || ○ || || [#WdgM_CheckpointReached WdgM_CheckpointReached] || 14|| 0x0E|| ○ || ○ || ○ || || [#WdgM_UpdateAliveCounter WdgM_UpdateAliveCounter] || 4|| 0x04|| ○ || ○ || - || || [#WdgM_GetLocalStatus WdgM_GetLocalStatus] || 12|| 0x0C|| ○ || ○ || ○ || || [#WdgM_GetGlobalStatus WdgM_GetGlobalStatus] || 13|| 0x0D|| ○ || ○ || ○ || || [#WdgM_PerformReset WdgM_PerformReset] || 15|| 0x0F|| ○ || ○ || ○ || || [#WdgM_GetFirstExpiredSEID WdgM_GetFirstExpiredSEID] || 16|| 0x10|| ○ || ○ || ○ || || [#WdgM_MainFunction WdgM_MainFunction] || 8|| 0x08|| ○ || ○ || ○ || * コンフィギュレーション一覧 (R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11) * [#WdgMConfigSet WdgMConfigSet] (○/○/○/○/○/○/○/○) * [#WdgMDemEventParameterRefs WdgMDemEventParameterRefs] (○/○/○/○/○/○/○/○) * [#WDGM_E_IMPROPER_CALLER WDGM_E_IMPROPER_CALLER] (○/○/○/-/-/-/-/-) * [#WDGM_E_MONITORING WDGM_E_MONITORING] (○/○/○/-/-/-/-/-) * [#WDGM_E_SET_MODE WDGM_E_SET_MODE] (○/○/○/○/○/-/-/-) * [#WDGM_E_SUPERVISION WDGM_E_SUPERVISION] (-/-/○/○/○/○/○/○) * [#WdgMInitialMode WdgMInitialMode] (○/○/○/○/○/○/○/○) * [#WdgMMode WdgMMode] (○/○/○/○/○/○/○/○) * [#WdgMAliveSupervision WdgMAliveSupervision] (○/○/○/○/○/○/○/○) * [#WdgMAliveSupervisionCheckpointRef WdgMAliveSupervisionCheckpointRef] (○/○/○/○/○/○/○/○) * [#WdgMExpectedAliveIndications WdgMExpectedAliveIndications] (○/○/○/○/○/○/○/○) * [#WdgMMaxMargin WdgMMaxMargin] (○/○/○/○/○/○/○/○) * [#WdgMMinMargin WdgMMinMargin] (○/○/○/○/○/○/○/○) * [#WdgMSupervisionReferenceCycle WdgMSupervisionReferenceCycle] (○/○/○/○/○/○/○/○) * [#WdgMDeadlineSupervision WdgMDeadlineSupervision] (○/○/○/○/○/○/○/○) * [#WdgMDeadlineMax WdgMDeadlineMax] (○/○/○/○/○/○/○/○) * [#WdgMDeadlineMin WdgMDeadlineMin] (○/○/○/○/○/○/○/○) * [#WdgMDeadlineStartRef WdgMDeadlineStartRef] (○/○/○/○/○/○/○/○) * [#WdgMDeadlineStopRef WdgMDeadlineStopRef] (○/○/○/○/○/○/○/○) * [#WdgMExpiredSupervisionCycleTol WdgMExpiredSupervisionCycleTol] (○/○/○/○/○/○/○/○) * [#WdgMExternalLogicalSupervision WdgMExternalLogicalSupervision] (○/○/○/○/○/○/○/○) * [#WdgMCrossClusterTransition WdgMCrossClusterTransition] (-/-/-/-/-/-/-/○) * [#WdgMCrossClusterTransitionDestRef WdgMCrossClusterTransitionDestRef] (-/-/-/-/-/-/-/○) * [#WdgMCrossClusterTransitionSourceRef WdgMCrossClusterTransitionSourceRef] (-/-/-/-/-/-/-/○) * [#WdgMExternalCheckpointFinalRef WdgMExternalCheckpointFinalRef] (○/○/○/○/○/○/○/○) * [#WdgMExternalCheckpointInitialRef WdgMExternalCheckpointInitialRef] (○/○/○/○/○/○/○/○) * [#WdgMExternalTransition WdgMExternalTransition] (○/○/○/○/○/○/○/○) * [#WdgMExternalTransitionDestRef WdgMExternalTransitionDestRef] (○/○/○/○/○/○/○/○) * [#WdgMExternalTransitionSourceRef WdgMExternalTransitionSourceRef] (○/○/○/○/○/○/○/○) * [#WdgMTransitionProxy WdgMTransitionProxy] (-/-/-/-/-/-/-/○) * [#WdgMResourceRef WdgMResourceRef] (-/-/-/-/-/-/-/○) * [#WdgMLocalStatusParams WdgMLocalStatusParams] (○/○/○/○/○/○/○/○) * [#WdgMFailedAliveSupervisionRefCycleTol WdgMFailedAliveSupervisionRefCycleTol] (○/○/○/○/○/○/○/○) * [#WdgMLocalStatusSupervisedEntityRef WdgMLocalStatusSupervisedEntityRef] (○/○/○/○/○/○/○/○) * [#WdgMMainFunctionModeProps WdgMMainFunctionModeProps] (-/-/-/-/-/-/-/○) * [#WdgMMainFunctionModePropsMainFunctionRef WdgMMainFunctionModePropsMainFunctionRef] (-/-/-/-/-/-/-/○) * [#WdgMMainFunctionModePropsTimePeriod WdgMMainFunctionModePropsTimePeriod] (-/-/-/-/-/-/-/○) * [#WdgMModeId WdgMModeId] (○/○/○/○/○/○/○/○) * [#WdgMSupervisionCycle WdgMSupervisionCycle] (○/○/○/○/○/○/○/○) * [#WdgMTrigger WdgMTrigger] (○/○/○/○/○/○/○/○) * [#WdgMTriggerConditionValue WdgMTriggerConditionValue] (○/○/○/○/○/○/○/○) * [#WdgMTriggerWatchdogRef WdgMTriggerWatchdogRef] (○/○/○/○/○/○/○/○) * [#WdgMWatchdogMode WdgMWatchdogMode] (○/○/○/○/○/○/○/○) * [#WdgMGeneral WdgMGeneral] (○/○/○/○/○/○/○/○) * [#WdgMBaseSocket WdgMBaseSocket] (-/-/-/-/-/-/-/○) * [#WdgMResourceRef2 WdgMResourceRef] (-/-/-/-/-/-/-/○) * [#WdgMSocketEcucPartitionRef WdgMSocketEcucPartitionRef] (-/-/-/-/-/-/-/○) * [#WdgMCallerIds WdgMCallerIds] (○/○/○/-/-/-/-/-) * [#WdgMCallerId WdgMCallerId] (○/○/○/-/-/-/-/-) * [#WdgMDefensiveBehavior WdgMDefensiveBehavior] (○/○/○/-/-/-/-/-) * [#WdgMDemStoppedSupervisionReport WdgMDemStoppedSupervisionReport] (○/○/○/○/○/○/○/-) * [#WdgMDevErrorDetect WdgMDevErrorDetect] (○/○/○/○/○/○/○/○) * [#WdgMEnableTimeoutDetection WdgMEnableTimeoutDetection] (-/-/-/-/-/○/○/○) * [#WdgMImmediateReset WdgMImmediateReset] (○/○/○/○/○/○/○/○) * [#WdgMMainFunction WdgMMainFunction] (-/-/-/-/-/-/-/○) * [#WdgMMainFunctionPartitionRef WdgMMainFunctionPartitionRef] (-/-/-/-/-/-/-/○) * [#WdgMOffModeEnabled WdgMOffModeEnabled] (○/○/○/○/○/○/○/○) * [#WdgMSupervisedEntity WdgMSupervisedEntity] (○/○/○/○/○/○/○/○) * [#WdgMCheckpoint WdgMCheckpoint] (○/○/○/○/○/○/○/○) * [#WdgMCheckpointId WdgMCheckpointId] (○/○/○/○/○/○/○/○) * [#WdgMEcucPartitionRef WdgMEcucPartitionRef] (○/○/○/○/○/○/○/○) * [#WdgMInternalCheckpointInitialRef WdgMInternalCheckpointInitialRef] (○/○/○/○/○/○/○/○) * [#WdgMInternalTransition WdgMInternalTransition] (○/○/○/○/○/○/○/○) * [#WdgMInternalTransitionDestRef WdgMInternalTransitionDestRef] (○/○/○/○/○/○/○/○) * [#WdgMInternalTransitionSourceRef WdgMInternalTransitionSourceRef] (○/○/○/○/○/○/○/○) * [#WdgMInternallCheckpointFinalRef WdgMInternallCheckpointFinalRef] (○/○/○/○/○/○/○/○) * [#WdgMMainFunctionRef WdgMMainFunctionRef] (-/-/-/-/-/-/-/○) * [#WdgMOSCounter WdgMOSCounter] (-/○/○/○/○/○/○/○) * [#WdgMOsApplicationRef WdgMOsApplicationRef] (○/○/○/○/-/-/-/-) * [#WdgMSupervisedEntityId WdgMSupervisedEntityId] (○/○/○/○/○/○/○/○) * [#WdgMSwClusterSupport WdgMSwClusterSupport] (-/-/-/-/-/-/-/○) * [#WdgMVersionInfoApi WdgMVersionInfoApi] (○/○/○/○/○/○/○/○) * [#WdgMWatchdog WdgMWatchdog] (○/○/○/○/○/○/○/○) * [#WdgMWatchdogDeviceRef WdgMWatchdogDeviceRef] (○/○/○/○/○/○/○/○) * [#WdgMWatchdogName WdgMWatchdogName] (○/○/○/○/○/○/○/○) * エラーコード一覧 * "--"は[wiki:spec/Dem Dem]により決定される ||= エラーコード =||= Dec =||= Hex =||= R4.0.3 =||= R4.2.2 =||= R21-11 =|| || WDGM_E_UNINIT || 16|| 0x10|| - || - || ○ || || WDGM_E_NO_INIT || 16|| 0x10|| ○ || ○ || - || || WDGM_E_PARAM_CONFIG || 17|| 0x11|| ○ || ○ || ○ || || WDGM_E_PARAM_MODE || 18|| 0x12|| ○ || ○ || ○ || || WDGM_E_PARAM_SEID || 19|| 0x13|| ○ || ○ || ○ || || WDGM_E_INV_POINTER || 20|| 0x14|| ○ || ○ || ○ || || WDGM_E_DISABLE_NOT_ALLOWED || 21|| 0x15|| ○ || ○ || ○ || || WDGM_E_CPID || 22|| 0x16|| ○ || ○ || ○ || || WDGM_E_NO_DEINIT || 26|| 0x1A|| - || - || ○ || || WDGM_E_INIT_FAILED || 27|| 0x1B|| - || - || ○ || || WDGM_E_PARAM_POINTER || 28|| 0x1C|| - || - || ○ || || WDGM_E_DEPRECATED || 23|| 0x17|| ○ || ○ || - || || WDGM_E_AMBIGIOUS || 24|| 0x18|| ○ || ○ || - || || WDGM_E_SEDEACTIVATED || 25|| 0x19|| ○ || ○ || ○ || || WDGM_E_SUPERVISION || --|| --|| ○ || ○ || ○ || || WDGM_E_SET_MODE || --[[BR]]29|| --[[BR]]0x1D|| ○[[BR]]- || ○[[BR]]- || -[[BR]]○ || || WDGM_E_IMPROPER_CALLER || --|| --|| ○ || ○ || - || ---- = API仕様 = == WdgM_Init == {{{ void WdgM_Init(const WdgM_ConfigType* ConfigPtr) }}} == WdgM_DeInit == {{{ void WdgM_DeInit(void) }}} == WdgM_GetVersionInfo == {{{ void WdgM_GetVersionInfo(Std_VersionInfoType* VersionInfo) }}} == WdgM_SetMode == * R4.0.3 / R4.2.2 {{{ Std_ReturnType WdgM_SetMode(WdgM_ModeType Mode, uint16 CallerID) }}} * R21-11 {{{ Std_ReturnType WdgM_SetMode (WdgM_ModeType Mode) }}} == WdgM_GetMode == {{{ Std_ReturnType WdgM_GetMode(WdgM_ModeType* Mode) }}} == WdgM_CheckpointReached == {{{ Std_ReturnType WdgM_CheckpointReached(WdgM_SupervisedEntityIdType SEID, WdgM_CheckpointIdType CheckpointID) }}} == WdgM_UpdateAliveCounter == {{{ Std_ReturnType WdgM_UpdateAliveCounter(WdgM_SupervisedEntityIdType SEID) }}} == WdgM_GetLocalStatus == {{{ Std_ReturnType WdgM_GetLocalStatus(WdgM_SupervisedEntityIdType SEID, WdgM_LocalStatusType* Status) }}} == WdgM_GetGlobalStatus == {{{ Std_ReturnType WdgM_GetGlobalStatus(WdgM_GlobalStatusType* Status) }}} == WdgM_PerformReset == {{{ void WdgM_PerformReset(void) }}} == WdgM_GetFirstExpiredSEID == {{{ Std_ReturnType WdgM_GetFirstExpiredSEID(WdgM_SupervisedEntityIdType* SEID) }}} == WdgM_MainFunction == {{{ void WdgM_MainFunction(void) }}} ---- = コンフィギュレーション仕様 = == WdgMConfigSet == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00337 * タイプ: PARAM-CONF-CONTAINER * 多重度: 1 == WdgMDemEventParameterRefs == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMDemEventParameterRefs }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00353 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..1 == WDGM_E_IMPROPER_CALLER == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMDemEventParameterRefs/WDGM_E_IMPROPER_CALLER }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2 * SWSタグ: ECUC_WdgM_00357 * タイプ: SYMBOLIC-NAME-REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Dem#DemEventParameter /AUTOSAR/EcucDefs/Dem/DemConfigSet/DemEventParameter] == WDGM_E_MONITORING == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMDemEventParameterRefs/WDGM_E_MONITORING }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2 * SWSタグ: ECUC_WdgM_00354 * タイプ: SYMBOLIC-NAME-REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Dem#DemEventParameter /AUTOSAR/EcucDefs/Dem/DemConfigSet/DemEventParameter] == WDGM_E_SET_MODE == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMDemEventParameterRefs/WDGM_E_SET_MODE }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0 * SWSタグ: ECUC_WdgM_00355 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Dem#DemEventParameter /AUTOSAR/EcucDefs/Dem/DemConfigSet/DemEventParameter] == WDGM_E_SUPERVISION == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMDemEventParameterRefs/WDGM_E_SUPERVISION }}} * 対象リビジョン: R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00362 * タイプ: * R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Dem#DemEventParameter /AUTOSAR/EcucDefs/Dem/DemConfigSet/DemEventParameter] == WdgMInitialMode == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMInitialMode }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00336 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMMode /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode] == WdgMMode == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00335 * タイプ: PARAM-CONF-CONTAINER * 多重度: 1..255 == WdgMAliveSupervision == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00308 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMAliveSupervisionCheckpointRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision/WdgMAliveSupervisionCheckpointRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00309 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMExpectedAliveIndications == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision/WdgMExpectedAliveIndications }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00311 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 0 == WdgMMaxMargin == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision/WdgMMaxMargin }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00313 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 255 * 下限値: 0 == WdgMMinMargin == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision/WdgMMinMargin }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00312 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 255 * 下限値: 0 == WdgMSupervisionReferenceCycle == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMAliveSupervision/WdgMSupervisionReferenceCycle }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00310 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 1 == WdgMDeadlineSupervision == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMDeadlineSupervision }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00314 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMDeadlineMax == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMDeadlineSupervision/WdgMDeadlineMax }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00318 * タイプ: FLOAT-PARAM * 多重度: 1 * 上限値: INF * 下限値: 0 == WdgMDeadlineMin == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMDeadlineSupervision/WdgMDeadlineMin }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00317 * タイプ: FLOAT-PARAM * 多重度: 1 * 上限値: INF * 下限値: 0 == WdgMDeadlineStartRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMDeadlineSupervision/WdgMDeadlineStartRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00315 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMDeadlineStopRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMDeadlineSupervision/WdgMDeadlineStopRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00316 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMExpiredSupervisionCycleTol == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExpiredSupervisionCycleTol }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00329 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 0 == WdgMExternalLogicalSupervision == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00319 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMCrossClusterTransition == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMCrossClusterTransition }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00376 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMCrossClusterTransitionDestRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMCrossClusterTransition/WdgMCrossClusterTransitionDestRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00375 * タイプ: CHOICE-REFERENCE * 多重度: 1 * 参照先: * [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * [#WdgMTransitionProxy /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy] == WdgMCrossClusterTransitionSourceRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMCrossClusterTransition/WdgMCrossClusterTransitionSourceRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00374 * タイプ: CHOICE-REFERENCE * 多重度: 1 * 参照先: * [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * [#WdgMTransitionProxy /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy] == WdgMExternalCheckpointFinalRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMExternalCheckpointFinalRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00324 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11: REFERENCE * R21-11: CHOICE-REFERENCE * 多重度: 1..65535 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * 参照先: * [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * [#WdgMTransitionProxy /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy] == WdgMExternalCheckpointInitialRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMExternalCheckpointInitialRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00323 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11: REFERENCE * R21-11: CHOICE-REFERENCE * 多重度: 1..65535 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * 参照先: * [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] * [#WdgMTransitionProxy /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy] == WdgMExternalTransition == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMExternalTransition }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00320 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMExternalTransitionDestRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMExternalTransition/WdgMExternalTransitionDestRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00322 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMExternalTransitionSourceRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMExternalTransition/WdgMExternalTransitionSourceRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00321 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMTransitionProxy == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00364 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMResourceRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMExternalLogicalSupervision/WdgMTransitionProxy/WdgMResourceRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00367 * タイプ: FOREIGN-REFERENCE * 多重度: 1 * 参照先タイプ: CP-SOFTWARE-CLUSTER-SERVICE-RESOURCE == WdgMLocalStatusParams == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMLocalStatusParams }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00325 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMFailedAliveSupervisionRefCycleTol == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMLocalStatusParams/WdgMFailedAliveSupervisionRefCycleTol }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00327 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 255 * 下限値: 0 == WdgMLocalStatusSupervisedEntityRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMLocalStatusParams/WdgMLocalStatusSupervisedEntityRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00326 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMSupervisedEntity /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity] == WdgMMainFunctionModeProps == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMMainFunctionModeProps }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00372 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..* == WdgMMainFunctionModePropsMainFunctionRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMMainFunctionModeProps/WdgMMainFunctionModePropsMainFunctionRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00371 * タイプ: REFERENCE * 多重度: 1 * 参照先: [#WdgMMainFunction /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMMainFunction] == WdgMMainFunctionModePropsTimePeriod == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMMainFunctionModeProps/WdgMMainFunctionModePropsTimePeriod }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00370 * タイプ: FLOAT-PARAM * 多重度: 1 * 上限値: INF * 下限値: 0 == WdgMModeId == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMModeId }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00307 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 255 * 下限値: 0 == WdgMSupervisionCycle == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMSupervisionCycle }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00330 * タイプ: FLOAT-PARAM * 多重度: * R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11: 1 * R21-11: 0..1 * 上限値: INF * 下限値: 0 == WdgMTrigger == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMTrigger }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00331 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..255 == WdgMTriggerConditionValue == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMTrigger/WdgMTriggerConditionValue }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00333 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 1 == WdgMTriggerWatchdogRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMTrigger/WdgMTriggerWatchdogRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00334 * タイプ: * R4.0.3/R4.1.3/R4.2.2: SYMBOLIC-NAME-REFERENCE * R4.3.1/R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMWatchdog /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMWatchdog] == WdgMWatchdogMode == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMConfigSet/WdgMMode/WdgMTrigger/WdgMWatchdogMode }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00332 * タイプ: ENUMERATION-PARAM * 多重度: 1 * 選択肢: * WDGIF_FAST_MODE * WDGIF_OFF_MODE * WDGIF_SLOW_MODE == WdgMGeneral == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00300 * タイプ: PARAM-CONF-CONTAINER * 多重度: 1 == WdgMBaseSocket == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMBaseSocket }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00377 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..* == WdgMResourceRef(2) == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMBaseSocket/WdgMResourceRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00378 * タイプ: FOREIGN-REFERENCE * 多重度: 1 * 参照先タイプ: CP-SOFTWARE-CLUSTER-SERVICE-RESOURCE == WdgMSocketEcucPartitionRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMBaseSocket/WdgMSocketEcucPartitionRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00366 * タイプ: REFERENCE * 多重度: 0..* * 参照先: [wiki:spec/EcuC#EcucPartition /AUTOSAR/EcucDefs/EcuC/EcucPartitionCollection/EcucPartition] == WdgMCallerIds == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMCallerIds }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2 * SWSタグ: ECUC_WdgM_00358 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..1 == WdgMCallerId == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMCallerIds/WdgMCallerId }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2 * SWSタグ: ECUC_WdgM_00359 * タイプ: INTEGER-PARAM * 多重度: 0..255 * 上限値: 65535 * 下限値: 0 == WdgMDefensiveBehavior == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMDefensiveBehavior }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2 * SWSタグ: ECUC_WdgM_00352 * タイプ: BOOLEAN-PARAM * 多重度: 1 * デフォルト値: false == WdgMDemStoppedSupervisionReport == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMDemStoppedSupervisionReport }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11 * SWSタグ: ECUC_WdgM_00338 * タイプ: BOOLEAN-PARAM * 多重度: 1 == WdgMDevErrorDetect == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMDevErrorDetect }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00301 * タイプ: BOOLEAN-PARAM * 多重度: 1 * デフォルト値: * R4.3.1/R4.4.0/R19-11/R20-11/R21-11: false == WdgMEnableTimeoutDetection == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMEnableTimeoutDetection }}} * 対象リビジョン: R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00363 * タイプ: BOOLEAN-PARAM * 多重度: 1 * デフォルト値: false == WdgMImmediateReset == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMImmediateReset }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00339 * タイプ: BOOLEAN-PARAM * 多重度: * R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11: 1 * R21-11: 0..1 == WdgMMainFunction == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMMainFunction }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00373 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..* == WdgMMainFunctionPartitionRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMMainFunction/WdgMMainFunctionPartitionRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00369 * タイプ: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/EcuC#EcucPartition /AUTOSAR/EcucDefs/EcuC/EcucPartitionCollection/EcucPartition] == WdgMOffModeEnabled == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMOffModeEnabled }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00340 * タイプ: BOOLEAN-PARAM * 多重度: * R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11: 1 * R21-11: 0..1 == WdgMSupervisedEntity == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00303 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMCheckpoint == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00305 * タイプ: PARAM-CONF-CONTAINER * 多重度: 1..65535 == WdgMCheckpointId == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint/WdgMCheckpointId }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00306 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 0 == WdgMEcucPartitionRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMEcucPartitionRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00360 * タイプ: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/EcuC#EcucPartition /AUTOSAR/EcucDefs/EcuC/EcucPartitionCollection/EcucPartition] == WdgMInternalCheckpointInitialRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMInternalCheckpointInitialRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00343 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: * R4.0.3/R4.1.3/R4.2.2: 1 * R4.3.1/R4.4.0: 1..65535 * R19-11/R20-11/R21-11: 0..65535 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMInternalTransition == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMInternalTransition }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00345 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..65535 == WdgMInternalTransitionDestRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMInternalTransition/WdgMInternalTransitionDestRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00351 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMInternalTransitionSourceRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMInternalTransition/WdgMInternalTransitionSourceRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00350 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMInternallCheckpointFinalRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMInternallCheckpointFinalRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00344 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: * R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0: 1..65535 * R19-11/R20-11/R21-11: 0..65535 * 参照先: [#WdgMCheckpoint /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMCheckpoint] == WdgMMainFunctionRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMMainFunctionRef }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00368 * タイプ: REFERENCE * 多重度: 0..1 * 参照先: [#WdgMMainFunction /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMMainFunction] == WdgMOSCounter == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMOSCounter }}} * 対象リビジョン: R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00361 * タイプ: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Os#OsCounter /AUTOSAR/EcucDefs/Os/OsCounter] == WdgMOsApplicationRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMOsApplicationRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1 * SWSタグ: ECUC_WdgM_00346 * タイプ: REFERENCE * 多重度: 0..1 * 参照先: [wiki:spec/Os#OsApplication /AUTOSAR/EcucDefs/Os/OsApplication] == WdgMSupervisedEntityId == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSupervisedEntity/WdgMSupervisedEntityId }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00304 * タイプ: INTEGER-PARAM * 多重度: 1 * 上限値: 65535 * 下限値: 0 == WdgMSwClusterSupport == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMSwClusterSupport }}} * 対象リビジョン: R21-11 * SWSタグ: ECUC_WdgM_00365 * タイプ: ENUMERATION-PARAM * 多重度: 0..1 * 選択肢: * DISABLE_SW_CLUSTER_SUPPORT * ENABLE_SW_CLUSTER_SUPPORT * デフォルト値: DISABLE_SW_CLUSTER_SUPPORT == WdgMVersionInfoApi == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMVersionInfoApi }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00302 * タイプ: BOOLEAN-PARAM * 多重度: 1 * デフォルト値: * R4.3.1/R4.4.0/R19-11/R20-11/R21-11: false == WdgMWatchdog == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMWatchdog }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00347 * タイプ: PARAM-CONF-CONTAINER * 多重度: 0..255 == WdgMWatchdogDeviceRef == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMWatchdog/WdgMWatchdogDeviceRef }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00349 * タイプ: * R4.0.3/R4.1.3/R4.2.2/R4.3.1: SYMBOLIC-NAME-REFERENCE * R4.4.0/R19-11/R20-11/R21-11: REFERENCE * 多重度: 1 * 参照先: [wiki:spec/WdgIf#WdgIfDevice /AUTOSAR/EcucDefs/WdgIf/WdgIfDevice] == WdgMWatchdogName == {{{ /AUTOSAR/EcucDefs/WdgM/WdgMGeneral/WdgMWatchdog/WdgMWatchdogName }}} * 対象リビジョン: R4.0.3/R4.1.3/R4.2.2/R4.3.1/R4.4.0/R19-11/R20-11/R21-11 * SWSタグ: ECUC_WdgM_00348 * タイプ: STRING-PARAM * 多重度: 1