123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*""FILE COMMENT""*******************************************************
- * System Name : DTC API for RX62N
- * File Name : r_pdl_dtc_RX62Nxx.h
- * Version : 1.02
- * Contents : DTC 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_DTC_RX62Nxx_H
- #define R_PDL_DTC_RX62Nxx_H
- /* Library prototypes */
- bool R_DTC_SetAll(
- const uint8_t,
- uint32_t * const
- );
- bool R_DTC_CreateAll(
- const uint32_t,
- const uint8_t,
- uint32_t * const,
- volatile const void * const,
- volatile const void * const,
- const uint16_t,
- const uint8_t
- );
- bool R_DTC_DestroyAll(
- void
- );
- bool R_DTC_ControlAll(
- const uint32_t,
- const uint8_t,
- uint32_t * const,
- volatile const void * const,
- volatile const void * const,
- const uint16_t,
- const uint8_t
- );
- bool R_DTC_GetStatusAll(
- const uint32_t * const,
- volatile uint16_t * const,
- volatile uint32_t * const,
- volatile uint32_t * const,
- volatile uint16_t * const,
- volatile uint8_t * const
- );
- bool ReturnFalse(void);
- /* Macro definitions */
- #define R_DTC_Set(a, b) \
- ( \
- R_DTC_SetAll( (a), (b) ) \
- )
- #define R_DTC_Create(a, b, c, d, e, f) \
- ( \
- R_DTC_CreateAll( (a), (uint8_t)((a) >> 24), (b), (c), (d), (e), (f) ) \
- )
- #define R_DTC_Destroy() \
- ( \
- R_DTC_DestroyAll() \
- )
- #define R_DTC_Control(a, b, c, d, e, f) \
- ( \
- R_DTC_ControlAll( (a), (uint8_t)((a) >> 24), (b), (c), (d), (e), (f) ) \
- )
- #define R_DTC_GetStatus(a, b, c, d, e, f) \
- ( \
- R_DTC_GetStatusAll( (a), (b), (c), (d), (e), (f) ) \
- )
- #endif
- /* End of file */
|