r_pdl_mcu_rx62nxx.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. #ifndef R_PDL_MCU_RX62Nxx_H
  23. #define R_PDL_MCU_RX62Nxx_H
  24. /* Library prototypes */
  25. bool R_MCU_ControlAll(
  26. const uint8_t
  27. );
  28. bool R_MCU_GetStatusAll(
  29. volatile uint16_t * const
  30. );
  31. /* Macro definitions */
  32. #define R_MCU_Control(a) \
  33. ( \
  34. R_MCU_ControlAll( (a) ) \
  35. )
  36. #define R_MCU_GetStatus(a) \
  37. ( \
  38. R_MCU_GetStatusAll( (a) ) \
  39. )
  40. #endif
  41. /* End of file */