]> rtime.felk.cvut.cz Git - arc.git/blob - include/Gpt.h
Initial commit.
[arc.git] / include / Gpt.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
22
23 #ifndef GPT_H_
24 #define GPT_H_
25
26 #include "Std_Types.h"
27 //#include "EcuM.h"  mahi: What for ???
28
29 /* ERROR CODES */
30 #define GPT_E_UNINIT                        0x0a
31 #define GPT_E_BUSY                                                0x0b
32 #define GPT_E_NOT_STARTED                                   0x0c
33 #define GPT_E_ALREADY_INITIALIZED           0x0d
34 #define GPT_E_PARAM_CHANNEL                 0x14
35 #define GPT_E_PARAM_VALUE                                   0x15
36 #define GPT_E_PARAM_MODE                                      0x1f
37 #define GPT_E_PARAM_CONFIG                  0x0e // TODO: Not in spec. Find real value
38
39 /* SERVICE_ID's */
40 #define GPT_INIT_SERVICE_ID                 0x01
41 #define GPT_DEINIT_SERVICE_ID               0x02
42 #define GPT_GETTIMEELAPSED_SERVICE_ID       0x03
43 #define GPT_GETTIMEREMAINING_SERVICE_ID     0x04
44 #define GPT_STARTTIMER_SERVICE_ID           0x05
45 #define GPT_STOPTIMER_SERVICE_ID            0x06
46 #define GPT_ENABLENOTIFICATION_SERVICE_ID   0x07
47 #define GPT_DISABLENOTIFICATION_SERVICE_ID  0x08
48 #define GPT_SETMODE_SERVIVCE_ID             0x09
49 #define GPT_DISABLEWAKEUP_SERVICE_ID        0x0a
50 #define GPT_ENABLEWAKEUP_SERVICE_ID         0x0b
51 #define GPT_CBK_CHECKWAKEUP_SERVICE_ID      0x0c
52
53 typedef uint8_t Gpt_ChannelType;
54
55 typedef uint32_t Gpt_ValueType;
56
57 typedef enum
58 {
59   GPT_MODE_ONESHOT=0,
60   GPT_MODE_CONTINUOUS
61 } Gpt_ChannelMode;
62
63 typedef enum
64 {
65   GPT_MODE_NORMAL=0,
66   GPT_MODE_SLEEP
67 } Gpt_ModeType;
68
69 #include "Gpt_Cfg.h"
70
71 #if (GPT_VERSION_INFO_API == STD_ON)
72
73 #define GPT_VENDOR_ID             1
74 #define GPT_MODULE_ID                    1
75 #define GPT_SW_MAJOR_VERSION            1
76 #define GPT_SW_MINOR_VERSION    0
77 #define GPT_SW_PATCH_VERSION            0
78 #define GPT_AR_MAJOR_VERSION     2
79 #define GPT_AR_MINOR_VERSION     2
80 #define GPT_AR_PATCH_VERSION     1
81
82 #define Gpt_GetVersionInfo(_vi) STD_GET_VERSION_INFO(_vi,GPT)
83 #endif
84
85 void Gpt_Init( const Gpt_ConfigType * );
86
87 #if GPT_DEINIT_API == STD_ON
88 void Gpt_DeInit( void );
89 #endif
90
91 #if ( GPT_TIME_ELAPSED_API == STD_ON )
92 Gpt_ValueType Gpt_GetTimeElapsed(Gpt_ChannelType channel);
93 #endif
94
95 #if ( GPT_TIME_REMAINING_API == STD_ON )
96 Gpt_ValueType Gpt_GetTimeRemaining( Gpt_ChannelType channel );
97 #endif
98
99 void Gpt_StartTimer(Gpt_ChannelType channel, Gpt_ValueType value);
100
101 void Gpt_StopTimer(Gpt_ChannelType channel);
102
103 #if ( GPT_ENABLE_DISABLE_NOTIFICATION_API == STD_ON )
104 void Gpt_EnableNotification( Gpt_ChannelType channel);
105
106 void Gpt_DisableNotification( Gpt_ChannelType channel);
107 #endif
108
109 #if ( GPT_WAKEUP_FUNCTIONALITY_API == STD_ON )
110 void Gpt_SetMode( Gpt_ModeType mode );
111
112 void Gpt_DisableWakeup( Gpt_ChannelType channel );
113
114 void Gpt_EnableWakeup( Gpt_ChannelType channel );
115
116 void Gpt_Cbk_CheckWakeup( EcuM_WakeupSourceType wakeupSource );
117 #endif
118
119 #endif /*GPT_H_*/