60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
|
/*""FILE COMMENT""*******************************************************
|
||
|
* System Name : DAC API for RX62Nxx
|
||
|
* File Name : r_pdl_dac_10_RX62Nxx.h
|
||
|
* Version : 1.02
|
||
|
* Contents : DAC 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_DAC_RX62Nxx_H
|
||
|
#define R_PDL_DAC_RX62Nxx_H
|
||
|
|
||
|
/* Library prototypes */
|
||
|
bool R_DAC_10_CreateAll(
|
||
|
const uint8_t,
|
||
|
const uint16_t,
|
||
|
const uint16_t
|
||
|
);
|
||
|
bool R_DAC_10_DestroyAll(
|
||
|
const uint8_t
|
||
|
);
|
||
|
bool R_DAC_10_WriteAll(
|
||
|
const uint8_t,
|
||
|
const uint16_t,
|
||
|
const uint16_t
|
||
|
);
|
||
|
|
||
|
/* Macro definitions */
|
||
|
|
||
|
#define R_DAC_10_Create(a, b, c) \
|
||
|
( \
|
||
|
R_DAC_10_CreateAll( (a), (b), (c) ) \
|
||
|
)
|
||
|
|
||
|
#define R_DAC_10_Destroy(a) \
|
||
|
( \
|
||
|
R_DAC_10_DestroyAll( (a) ) \
|
||
|
)
|
||
|
|
||
|
#define R_DAC_10_Write(a, b, c) \
|
||
|
( \
|
||
|
R_DAC_10_WriteAll( (a), (b), (c) ) \
|
||
|
)
|
||
|
|
||
|
#endif
|
||
|
/* End of file */
|