56 lines
1.1 KiB
C
56 lines
1.1 KiB
C
|
/*""FILE COMMENT""*******************************************************
|
||
|
* System Name : Independent Watchdog timer API for RX62Nxx
|
||
|
* File Name : r_pdl_iwdt_RX62Nxx.h
|
||
|
* Version : 1.02
|
||
|
* Contents : IWDT API header
|
||
|
* Customer :
|
||
|
* Model :
|
||
|
* Order :
|
||
|
* CPU : RX
|
||
|
* Compiler : RXC
|
||
|
* OS : Nothing
|
||
|
* Programmer :
|
||
|
* Note :
|
||
|
************************************************************************
|
||
|
* Copyright, 2011. Renesas Electronics Corporation
|
||
|
* and Renesas Solutions Corporation
|
||
|
************************************************************************
|
||
|
* History : 2011.04.08
|
||
|
* : Ver 1.02
|
||
|
* : CS-5 release.
|
||
|
*""FILE COMMENT END""**************************************************/
|
||
|
|
||
|
#ifndef R_PDL_IWDT_RX62Nxx_H
|
||
|
#define R_PDL_IWDT_RX62Nxx_H
|
||
|
|
||
|
/* Library prototypes */
|
||
|
bool R_IWDT_SetAll(
|
||
|
const uint16_t
|
||
|
);
|
||
|
bool R_IWDT_ControlAll(
|
||
|
const uint8_t
|
||
|
);
|
||
|
bool R_IWDT_ReadAll(
|
||
|
volatile uint16_t * const
|
||
|
);
|
||
|
|
||
|
/* Macro definitions */
|
||
|
|
||
|
#define R_IWDT_Set(a) \
|
||
|
( \
|
||
|
R_IWDT_SetAll( (a) ) \
|
||
|
)
|
||
|
|
||
|
#define R_IWDT_Control(a) \
|
||
|
( \
|
||
|
R_IWDT_ControlAll( (a) ) \
|
||
|
)
|
||
|
|
||
|
#define R_IWDT_Read(a) \
|
||
|
( \
|
||
|
R_IWDT_ReadAll( (a) ) \
|
||
|
)
|
||
|
|
||
|
#endif
|
||
|
/* End of file */
|