123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*""FILE COMMENT""*******************************************************
- * System Name : External interrupt API for RX62Nxx
- * File Name : r_pdl_intc_RX62Nxx.h
- * Version : 1.02
- * Contents : INTC 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_INTC_RX62Nxx_H
- #define R_PDL_INTC_RX62Nxx_H
- /* Callback function storage */
- extern VoidCallBackFunc rpdl_INTC_callback_func[];
- /* Library prototypes */
- bool R_INTC_CreateExtInterruptAll(
- const uint8_t,
- const uint32_t,
- VoidCallBackFunc const,
- const uint8_t
- );
- bool R_INTC_CreateSoftwareInterruptAll(
- const uint8_t,
- VoidCallBackFunc const,
- const uint8_t
- );
- bool R_INTC_CreateFastInterruptAll(
- const uint8_t
- );
- bool R_INTC_CreateExceptionHandlersAll(
- VoidCallBackFunc const,
- VoidCallBackFunc const,
- VoidCallBackFunc const
- );
- bool R_INTC_ControlExtInterruptAll(
- const uint8_t,
- const uint32_t
- );
- bool R_INTC_GetExtInterruptStatusAll(
- const uint8_t,
- volatile uint8_t * const
- );
- bool R_INTC_ReadAll(
- const uint16_t,
- volatile uint8_t * const
- );
- bool R_INTC_WriteAll(
- const uint16_t,
- const uint8_t
- );
- bool R_INTC_ModifyAll(
- const uint16_t,
- const uint8_t,
- const uint8_t
- );
- bool ReturnFalse(void);
- /* Macro definitions */
- #define R_INTC_CreateExtInterrupt(a, b, c, d) \
- ( \
- ( ( (a) <= PDL_INTC_NMI ) && ((d) <= IPL_MAX) ) ? \
- R_INTC_CreateExtInterruptAll( (a), (b), (c), (d) ) : \
- ReturnFalse() \
- )
- #define R_INTC_CreateSoftwareInterrupt(a, b, c) \
- ( \
- ( (c) <= IPL_MAX ) ? \
- R_INTC_CreateSoftwareInterruptAll( (a), (b), (c) ) : \
- ReturnFalse() \
- )
- #define R_INTC_ControlExtInterrupt(a, b) \
- ( \
- ( (a) <= PDL_INTC_NMI ) ? \
- R_INTC_ControlExtInterruptAll( (a), (b) ) : \
- ReturnFalse() \
- )
- #define R_INTC_GetExtInterruptStatus(a, b) \
- ( \
- ( (a) <= PDL_INTC_NMI ) ? \
- R_INTC_GetExtInterruptStatusAll( (a), (b) ) : \
- ReturnFalse() \
- )
- #define R_INTC_CreateFastInterrupt(a) \
- ( R_INTC_CreateFastInterruptAll( (a) ) )
- #define R_INTC_CreateExceptionHandlers(a, b, c) \
- ( R_INTC_CreateExceptionHandlersAll( (a), (b), (c) ) )
- #define R_INTC_Read(a, b) \
- ( R_INTC_ReadAll( (a), (b) ) )
- #define R_INTC_Write(a, b) \
- ( R_INTC_WriteAll( (a), (b) ) )
- #define R_INTC_Modify(a, b, c) \
- ( R_INTC_ModifyAll( (a), (b), (c) ) )
- #endif
- /* End of file */
|