r_gpio_sys.h 6.8 KB
Newer Older
hu's avatar
hu committed
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
/*
****************************************************************************
PROJECT : GPIO driver
FILE ID : $Id: r_gpio_sys.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.

****************************************************************************

*/

#ifndef R_GPIO_SYS_H_
#define R_GPIO_SYS_H_

#ifdef __cplusplus
extern "C" {
#endif

/*******************************************************************************
  Title: GPIO Support Functions

  The generic GPIO driver uses these functions. They have
  to be implemented within the driver library for a concrete
  device.
*/

/*******************************************************************************
  Section: Global Functions
*/

/*******************************************************************************
  Function: R_SYS_GPIO_GetPin

  This is the device specific implemetation of the R_GPIO_PinRead
  function 

  Parameters:

    Port       - Port number 
    Pin        - Pin number  

  Returns:
    = 1      - Pin is HIGH
    = 0      - Pin is LOW
*/

 uint8_t R_SYS_GPIO_GetPin(int32_t Port, uint8_t Pin);

/*******************************************************************************
  Function: R_SYS_GPIO_SetPin

  This is the device specific implemetation of the R_GPIO_WritePin
  function 

  Parameters:

  Port       - Port number 
  Pin        - Pin  number 
  Value      - 1: Set output HIGH, 0: Set output LOW 
  
  Returns:
  void   
*/

void R_SYS_GPIO_SetPin(int32_t Port, uint8_t Pin, uint8_t Value);

/*******************************************************************************
  Function: R_SYS_GPIO_InvPin

  Inverts the level output on the given Port and Pin
  Parameters:

  Port       - Port number 
  Pin        - Pin  number 
  
  Returns:
  void   
*/

void R_SYS_GPIO_InvPin(int32_t Port, uint8_t Pin);


/*******************************************************************************
  Function: R_SYS_GPIO_InvPort

  Inverts the level output on the given Port (all pins are inverted)
  
  Parameters:

  Port       - Port number 
  
  Returns:
  void   
*/
void R_SYS_GPIO_InvPort(int32_t Port); 

/*******************************************************************************
  Function: R_SYS_GPIO_GetPort
  
  This is the device specific implemetation of the R_GPIO_PortRead
  function 
  
  Parameters:

    Port       - Port number 

  Returns:
  Port input register value 

*/

 uint16_t R_SYS_GPIO_GetPort(int32_t Port);
 
 /*******************************************************************************
  Function: R_SYS_GPIO_PinDirection
  
  This is the device specific implemetation of the R_GPIO_PinDirection function

  Parameters:

    Port       - Port number (0-R_SYS_PORT_NUM)
    Pin        - Pin number  (0-15)
    Dir        - 0: Output, !=0 Input 

  Returns:
  void 

*/

void R_SYS_GPIO_PinDirection(int32_t Port, uint8_t Pin, uint8_t Dir);


/*******************************************************************************
  Function: R_SYS_GPIO_WritePort

  This is the device specific implemetation of the R_GPIO_WritePort
  function 

  Port       - Port number 
  Mask       - Pin mask, only when a bit is set here 
               the corresponding pin will be changed 
  Val        - Bit_x is 1 -> pin_x is HIGH, 
               Bit_x is 0 -> pin_x is LOW,   
  
  Returns:
  void   
*/

void R_SYS_GPIO_WritePort(int32_t Port, uint16_t Mask, uint16_t Value); 

/*******************************************************************************
  Function: R_SYS_GPIO_EnableInt
  
  Enable the given external (pin) interrupt  
  
  Parameters:
  Unit        -  the number of the external interrupt 
                     
  Returns:              
  void
*/

void R_SYS_GPIO_EnableInt(uint32_t Unit);  

/*******************************************************************************
  Function: R_SYS_GPIO_DisableInt
  
  Disable the given external (pin) interrupt  
  
  Parameters:
  Unit        -  the number of the external interrupt 
                     
  Returns:              
  void
*/

void R_SYS_GPIO_DisableInt(uint32_t Unit);  


/*******************************************************************************
  Function: R_SYS_GPIO_SetIntPrio

  Configure interrupt priority.  

  Parameters:
  Unit       - number (Id) of external interrupt 
  Prio       - Interrupt priority 

  Returns:
  Returns:
  void
*/

void R_SYS_GPIO_SetIntPrio(uint32_t Unit, uint8_t Prio) ;

/*******************************************************************************
  Function: R_SYS_GPIO_SetIntFilter

  Configure the trigger (EDGE,level,off) for the given external interrupt.  

  Parameters:
  Unit       - number (Id) of external interrupt 
  Trigger    - activation trigger, see <r_gpio_IntTrigger_t>

  Returns:
  void
*/
void R_SYS_GPIO_SetIntFilter(uint32_t Unit, r_gpio_IntTrigger_t Trigger);
          
/*******************************************************************************
  Function: R_SYS_GPIO_ClearIntPendingFlag

  Clear the interrupt pending flag for the given external interrupt.  

  Parameters:
  Unit        - number (Id) of external interrupt 

  Returns:
  void
*/

void R_SYS_GPIO_ClearIntPendingFlag(uint32_t Unit); 

/*******************************************************************************
  Function: R_SYS_GPIO_IOReset
  
  This is the device specific implemetation of the R_GPIO_IOReset
  function 
  
  Parameters:
  SetRelease  - 1 - activate reset state, 
                0 - release reset state, 
              
  Returns:              
  void

*/

void R_SYS_GPIO_IOReset(uint8_t SetRelease); 

#ifdef __cplusplus
}
#endif


#endif /* R_GPIO_SYS_H_ */