1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*
****************************************************************************
PROJECT : GPIO driver
FILE : $Id: r_gpio_api.h 7640 2016-02-12 13:14:23Z florian.zimmermann $
============================================================================
DESCRIPTION
Driver for GPIO macro
============================================================================
C O P Y R I G H T
============================================================================
Copyright (c) 2013 - 2014
by
Renesas Electronics (Europe) GmbH.
Arcadiastrasse 10
D-40472 Duesseldorf
Germany
All rights reserved.
============================================================================
Purpose: only for testing, not for mass production
DISCLAIMER
LICENSEE has read, understood and accepted the terms and conditions defined in
the license agreement, especially the usage rights. In any case, it is
LICENSEE's responsibility to make sure that any user of the software complies
with the terms and conditions of the signed license agreement.
SAMPLE CODE is not part of the licensed software, as such it must not be used in
mass-production applications. It can only be used for evaluation and
demonstration purposes at customer's premises listed in the signed license
agreement.
****************************************************************************
Version Author Description
$Log: $
*/
#ifndef R_GPIO_API_H_
#define R_GPIO_API_H_
#ifdef __cplusplus
extern "C" {
#endif
/*******************************************************************************
Title: GPIO API
An application using general purpose ports
should include this header file.
It provides interface to write and read output pins
and external pin interrups
*/
/*******************************************************************************
Section: Global Types
*/
/*******************************************************************************
Enum: r_gpio_IntTrigger_t
Possible settings for external inerrupt detection
R_GPIO_INT_TRIGGER_OFF - detection disabled
R_GPIO_INT_RISING_EDGE - interrupt on rising edge
R_GPIO_INT_FALLING_EDGE - interrupt on falling edge
R_GPIO_INT_BOTH_EDGES - interrupt on both edges
R_GPIO_INT_LEVEL_HIGH - level generated interrupt (high level)
R_GPIO_INT_LEVEL_LOW - level generated interrupt (low level)
R_GPIO_INT_TRIGGER_NUM - delimiter
*/
typedef enum
{
R_GPIO_INT_TRIGGER_OFF = 0u,
R_GPIO_INT_RISING_EDGE ,
R_GPIO_INT_FALLING_EDGE ,
R_GPIO_INT_BOTH_EDGES ,
R_GPIO_INT_LEVEL_HIGH ,
R_GPIO_INT_LEVEL_LOW ,
R_GPIO_INT_TRIGGER_NUM
}r_gpio_IntTrigger_t;
/*******************************************************************************
Structure: r_gpio_IntConfig_t
Use this structure to configure external interrups
Pin assignment is done on device (global) level
Values:
Port - Port number
Pin - Pin number
Trigger - Trigger settings, see <r_gpio_IntTrigger_t>
Callback - Callback function
*/
typedef struct {
int32_t Port;
int32_t Pin;
r_gpio_IntTrigger_t Trigger;
void (*Callback)(void);
}r_gpio_IntConfig_t;
/*******************************************************************************
Section: Global API Functions
*/
/*******************************************************************************
Function: R_GPIO_PinRead
The function returns the physical level of the pin
Parameters:
Port - Port number (0,R_SYS_PORT_NUM)
Pin - Pin number (015)
Returns:
= 1 - Pin is HIGH
= 0 - Pin is LOW
*/
uint8_t R_GPIO_PinRead(int32_t Port, uint8_t Pin);
/*******************************************************************************
Function: R_GPIO_PortRead
The function returns the physical level of all pins
of the given Port.
Parameters:
Port - Port number (0,R_SYS_PORT_NUM)
Returns:
Port input register value
*/
uint16_t R_GPIO_PortRead(int32_t Port);
/*******************************************************************************
Function: R_GPIO_TogglePin
The function inverts the output level of the given pin
Parameters:
Port - Port number (0,R_SYS_PORT_NUM)
Pin - Pin number (0,15)
Returns:
void
*/
void R_GPIO_TogglePin(int32_t Port, uint8_t Pin);
/*******************************************************************************
Function: R_GPIO_TogglePort
The function inverts the output level of the all pins
(with mask set) of the given port
Parameters:
Port - Port number (0u,R_SYS_PORT_NUM)
Mask - Pin mask, only when a bit is set here
the corresponding pin will be changed
Returns:
void
*/
void R_GPIO_TogglePort(int32_t Port, uint16_t Mask);
/*******************************************************************************
Function: R_GPIO_PinDirection
The function sets the direction output or input) of the given pin
Parameters:
Port - Port number (0,R_SYS_PORT_NUM)
Pin - Pin number (0,15)
Dir - 0: Output, !=0 Input
Returns:
void
*/
void R_GPIO_PinDirection(int32_t Port, uint8_t Pin, uint8_t Dir);
/*******************************************************************************
Function: R_GPIO_WritePin
The function sets or resets the output of the given pin
Parameters:
Port - Port number (0,R_SYS_PORT_NUM)
Pin - Pin number (0,15)
Value - 1: Set output HIGH, 0: Set output LOW
Returns:
void
*/
void R_GPIO_WritePin(int32_t Port, uint8_t Pin, uint8_t Value);
/*******************************************************************************
Function: R_GPIO_WritePort
The function sets or resets the output of the all pins
of the given Port simultanously
Parameters:
Port - Port number (0-R_SYS_PORT_NUM)
Mask - Pin mask, only when a bit is set here
the corresponding pin will be changed
Value - Bit_x is 1 -> pin_x is HIGH,
Bit_x is 0 -> pin_x is LOW,
Returns:
void
*/
void R_GPIO_WritePort(int32_t Port, uint16_t Mask, uint16_t Value);
/*******************************************************************************
Function: R_GPIO_Init(void)
GPIO initialisation function
Parameters:
void
Returns:
void
*/
void R_GPIO_Init(void);
/*******************************************************************************
Function: R_GPIO_DeInit(void)
Clears all regs and sets all ports to (disabled) GPIO input
Parameters:
void
Returns:
void
*/
void R_GPIO_DeInit(void);
/*******************************************************************************
Function: R_GPIO_EnableInt
Enable the given external (pin) interrupt
Parameters:
Unit - the number of the external interrupt
Returns:
void
*/
void R_GPIO_EnableInt(uint32_t Unit);
/*******************************************************************************
Function: R_GPIO_DisableInt
Disable the given external (pin) interrupt
Parameters:
Unit - the number of the external interrupt
Returns:
void
*/
void R_GPIO_DisableInt(uint32_t Unit);
/*******************************************************************************
Function: R_GPIO_SetIntCallback
Assign callback function to an external interrupt ISR
Parameters:
Unit - the number of the external interrupt
Isr - Callback ISR
Returns:
== R_ERR_OK - success
!= R_ERR_OK - fail
*/
r_Error_t R_GPIO_SetIntCallback(uint32_t Unit, void (*Isr)(void)) ;
/*******************************************************************************
Function: R_GPIO_InitInt
Initilize the given external interrupt
Parameters:
Unit - the number of the external interrupt
Config - config data, see <r_gpio_IntConfig_t>
Returns:
== R_ERR_OK - success
!= R_ERR_OK - fail
*/
r_Error_t R_GPIO_InitInt(uint32_t Unit, r_gpio_IntConfig_t *Config);
/*******************************************************************************
Function: R_GPIO_DeInitInt
De-Initilize the given external interrupt
Parameters:
Unit - the number of the external interrupt
Config - config data, see <r_gpio_IntConfig_t>
Returns:
== R_ERR_OK - success
!= R_ERR_OK - fail
*/
r_Error_t R_GPIO_DeInitInt(uint32_t Unit);
/*******************************************************************************
Function: R_GPIO_ReadIntPin
Read the actual level of the external interrupt pin
Parameters:
Unit - the number of the external interrupt
Returns:
== 1 - Pin is HIGH
== 0 - Pin is LOW
*/
uint8_t R_GPIO_ReadIntPin(uint32_t Unit);
/*******************************************************************************
Function: R_GPIO_IntIsr
ISR for the external ionterrupts
Parameters:
Unit - the number of the external interrupt
Returns:
void
*/
void R_GPIO_IntIsr(uint32_t Unit);
/*******************************************************************************
Function: R_GPIO_IOReset
Enable/disable Reset state of IO Buffer.
Parameters:
SetRelease - 1 - activate reset state,
0 - release reset state,
Returns:
void
*/
void R_GPIO_IOReset(uint8_t SetRelease);
/* Add here handling of external interrupts */
#ifdef __cplusplus
}
#endif
#endif /* R_GPIO_API_H_ */