##// END OF EJS Templates
removed binary files
removed binary files

File last commit:

r27:c4af55b3c4a3 default
r31:a92cc573138c default
Show More
apb_dac_Driver.h
35 lines | 629 B | text/x-c | CLexer
#ifndef APB_CNA_DRIVER_H
#define APB_CNA_DRIVER_H
#define DAC_ready 3
#define DAC_enable 1
#define DAC_disable 0
/*===================================================
T Y P E S D E F
====================================================*/
struct DAC_Driver
{
int configReg;
int dataReg;
};
typedef struct DAC_Driver DAC_Device;
/*===================================================
F U N C T I O N S
====================================================*/
DAC_Device* DacOpen(int count);
//DAC_Device* DacClose(int count);
int DacTable();
int DacConst();
#endif