r_pdl_mcu.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. #ifndef R_PDL_MCU_H
  23. #define R_PDL_MCU_H
  24. #include "r_pdl_common_defs_RX62Nxx.h"
  25. /* Function prototypes */
  26. bool R_MCU_Control(
  27. uint8_t
  28. );
  29. bool R_MCU_GetStatus(
  30. uint16_t *
  31. );
  32. /* On-chip ROM control */
  33. #define PDL_MCU_ROM_ENABLE 0x01u
  34. #define PDL_MCU_ROM_DISABLE 0x02u
  35. /* On-chip RAM control */
  36. #define PDL_MCU_RAM_ENABLE 0x04u
  37. #define PDL_MCU_RAM_DISABLE 0x08u
  38. #endif
  39. /* End of file */