1 /*""FILE COMMENT""******************************************************* 2 * System Name : MCU API for RX62Nxx 3 * File Name : r_pdl_mcu_RX62Nxx.h 4 * Version : 1.02 5 * Contents : MCU API header 6 * Customer : 7 * Model : 8 * Order : 9 * CPU : RX 10 * Compiler : RXC 11 * OS : Nothing 12 * Programmer : 13 * Note : 14 ************************************************************************ 15 * Copyright, 2011. Renesas Electronics Corporation 16 * and Renesas Solutions Corporation 17 ************************************************************************ 18 * History : 2011.04.08 19 * : Ver 1.02 20 * : CS-5 release. 21 *""FILE COMMENT END""**************************************************/ 22 23 #ifndef R_PDL_MCU_RX62Nxx_H 24 #define R_PDL_MCU_RX62Nxx_H 25 26 /* Library prototypes */ 27 bool R_MCU_ControlAll( 28 const uint8_t 29 ); 30 bool R_MCU_GetStatusAll( 31 volatile uint16_t * const 32 ); 33 34 /* Macro definitions */ 35 #define R_MCU_Control(a) \ 36 ( \ 37 R_MCU_ControlAll( (a) ) \ 38 ) 39 40 #define R_MCU_GetStatus(a) \ 41 ( \ 42 R_MCU_GetStatusAll( (a) ) \ 43 ) 44 45 #endif 46 /* End of file */ 47