12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*""FILE COMMENT""*******************************************************
- * System Name : A/D converter API for RX62Nxx
- * File Name : r_pdl_adc_10_RX62Nxx.h
- * Version : 1.02
- * Contents : ADC 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_ADC_10_RX62Nxx_H
- #define R_PDL_ADC_10_RX62Nxx_H
- #define ADC_10_UNITS 2
- extern VoidCallBackFunc rpdl_ADC_10_callback_func[];
- /* Library prototypes */
- bool R_ADC_10_CreateAll(
- const uint8_t,
- const uint32_t,
- const uint32_t,
- const float,
- VoidCallBackFunc const,
- const uint8_t
- );
- bool R_ADC_10_DestroyAll(
- const uint8_t
- );
- bool R_ADC_10_ControlAll(
- const uint16_t
- );
- bool R_ADC_10_ReadAll(
- const uint8_t,
- volatile uint16_t * const
- );
- bool ReturnFalse(void);
- /* Macro definitions */
- #define R_ADC_10_Create(a, b, c, d, e, f) \
- ( \
- ( ( ((a) < ADC_10_UNITS) && ((f) <= IPL_MAX) ) ) ? \
- R_ADC_10_CreateAll( (a), (b), (c), (d), (e), (f)): \
- ReturnFalse() \
- )
- #define R_ADC_10_Destroy(a) \
- ( \
- ( (a) < ADC_10_UNITS ) ? \
- R_ADC_10_DestroyAll( (a) ): \
- ReturnFalse() \
- )
- #define R_ADC_10_Control(a) \
- ( \
- ( ((a) & 0xFFu) != 0x00u ) ? \
- R_ADC_10_ControlAll( (a) ): \
- ReturnFalse() \
- )
- #define R_ADC_10_Read(a, b) \
- ( \
- ( (a) < ADC_10_UNITS ) ? \
- R_ADC_10_ReadAll( (a), (b) ): \
- ReturnFalse() \
- )
- #endif
- /* End of file */
|