]> rtime.felk.cvut.cz Git - arc.git/blob - include/WdgM.h
Merged in old bugfix
[arc.git] / include / WdgM.h
1 /* -------------------------------- Arctic Core ------------------------------
2  * Arctic Core - the open source AUTOSAR platform http://arccore.com
3  *
4  * Copyright (C) 2009  ArcCore AB <contact@arccore.com>
5  *
6  * This source code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 as published by the
8  * Free Software Foundation; See <http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt>.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * for more details.
14  * -------------------------------- Arctic Core ------------------------------*/
15
16
17
18
19
20
21 #ifndef WDGM_H_
22 #define WDGM_H_
23
24 #include "Std_Types.h"
25 #include "WdgM_Cfg.h"
26
27 // API Service ID's
28 #define WDGM_INIT_ID                          0x00
29 #define WDGM_SETMODE_ID                       0x03
30 #define WDGM_UPDATEALIVECOUNTER_ID                        0x04
31 #define WDGM_ACTIVATEALIVESUPERVISION_ID      0x05
32 #define WDGM_DEACTIVATEALIVESUPERVISION_ID    0x06
33 #define WDGM_MAINFUNCTION_TRIGGER_ID          0x06
34 #define WDGM_MAINFUNCTION_ALIVESUPERVISION_ID 0x08
35 #define WDGM_GETMODE_ID                       0x0b
36 #define WDGM_GETALIVESUPERVISIONSTATUS_ID     0x0c
37 #define WDGM_GETGLOBALSTATUS_ID               0x0d
38
39
40 /** @req WDGM004 **/
41 #define WDGM_E_NO_INIT                          0x10
42 #define WDGM_E_PARAM_CONFIG                     0x11
43 #define WDGM_E_PARAM_MODE                           0x12
44 #define WDGM_E_PARAM_SEID                           0x13
45 #define WDGM_E_NULL_POINTER                         0x14
46 #define WDGM_E_DISABLE_NOT_ALLOWED          0x15
47 #define WDGM_E_DEACTIVATE_NOT_ALLOWED       0x16
48 //#define WDGM_E_ALIVE_SUPERVISION          DEM assigned
49 //#define WDGM_E_SET_MODE                   DEM assigned
50 \r
51 Std_ReturnType WdgM_UpdateAliveCounter (WdgM_SupervisedEntityIdType SEid);\r
52 Std_ReturnType WdgM_ActivateAliveSupervision (WdgM_SupervisedEntityIdType SEid);\r
53 Std_ReturnType WdgM_DeactivateAliveSupervision (WdgM_SupervisedEntityIdType SEid);
54 Std_ReturnType WdgM_GetGlobalStatus (WdgM_AliveSupervisionStatusType *Status);
55 Std_ReturnType WdgM_GetAliveSupervisionStatus (WdgM_SupervisedEntityIdType SEid, WdgM_AliveSupervisionStatusType *Status);\r
56 void WdgM_Init(const WdgM_ConfigType* ConfigPtr);
57 void WdgM_DeInit(void);
58 Std_ReturnType WdgM_SetMode(WdgM_ModeType Mode);\r
59 Std_ReturnType WdgM_GetMode(WdgM_ModeType *Mode);
60 void WdgM_MainFunction_AliveSupervision (void);\r
61 void WdgM_MainFunction_Trigger (void);\r
62
63 #endif /*WDGM_H_*/