3041056043
Taken from headers-src.tgz from ftp.be.com git-svn-id: file:///srv/svn/repos/haiku/trunk/current@692 a95241bf-73f2-0310-859d-f6bbb57e9c96
46 lines
911 B
C++
46 lines
911 B
C++
/********************************************************************************
|
|
/
|
|
/ File: D2A.h
|
|
/
|
|
/ Description: Digital-To-Analog converter class header.
|
|
/
|
|
/ Copyright 1996-98, Be Incorporated, All Rights Reserved.
|
|
/
|
|
********************************************************************************/
|
|
|
|
|
|
#ifndef _D2A_H
|
|
#define _D2A_H
|
|
|
|
#include <BeBuild.h>
|
|
#include <stddef.h>
|
|
#include <SupportDefs.h>
|
|
|
|
/* -----------------------------------------------------------------------*/
|
|
class BD2A {
|
|
|
|
public:
|
|
BD2A();
|
|
virtual ~BD2A();
|
|
|
|
status_t Open(const char *portName);
|
|
void Close(void);
|
|
bool IsOpen(void);
|
|
|
|
ssize_t Read(uint8 *buf);
|
|
ssize_t Write(uint8 value);
|
|
|
|
/* -----------------------------------------------------------------------*/
|
|
|
|
private:
|
|
|
|
virtual void _ReservedD2A1();
|
|
virtual void _ReservedD2A2();
|
|
virtual void _ReservedD2A3();
|
|
|
|
int ffd;
|
|
uint32 _fReserved[3];
|
|
};
|
|
|
|
#endif
|