1 /*""FILE COMMENT""******************************************************* 2 * System Name : MCU API for RX62Nxx 3 * File Name : r_pdl_mcu.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_H 24 #define R_PDL_MCU_H 25 26 #include "r_pdl_common_defs_RX62Nxx.h" 27 28 /* Function prototypes */ 29 bool R_MCU_Control( 30 uint8_t 31 ); 32 bool R_MCU_GetStatus( 33 uint16_t * 34 ); 35 36 /* On-chip ROM control */ 37 #define PDL_MCU_ROM_ENABLE 0x01u 38 #define PDL_MCU_ROM_DISABLE 0x02u 39 40 /* On-chip RAM control */ 41 #define PDL_MCU_RAM_ENABLE 0x04u 42 #define PDL_MCU_RAM_DISABLE 0x08u 43 44 #endif 45 /* End of file */ 46