12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*""FILE COMMENT""*******************************************************
- * System Name : MCU API for RX62Nxx
- * File Name : r_pdl_mcu_RX62Nxx.h
- * Version : 1.02
- * Contents : MCU 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_MCU_RX62Nxx_H
- #define R_PDL_MCU_RX62Nxx_H
- /* Library prototypes */
- bool R_MCU_ControlAll(
- const uint8_t
- );
- bool R_MCU_GetStatusAll(
- volatile uint16_t * const
- );
- /* Macro definitions */
- #define R_MCU_Control(a) \
- ( \
- R_MCU_ControlAll( (a) ) \
- )
- #define R_MCU_GetStatus(a) \
- ( \
- R_MCU_GetStatusAll( (a) ) \
- )
- #endif
- /* End of file */
|