summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/indi/apogee/ApnSerial_USB.cpp
blob: 6effe6093d7070f37a26ad0bc24f336985d5a8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// ApnSerial_USB.cpp: implementation of the CApnSerial_USB class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "apogee.h"
#include "ApnSerial_USB.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CApnSerial_USB::CApnSerial_USB()
{

}

CApnSerial_USB::~CApnSerial_USB()
{

}

bool CApnSerial_USB::InitPort( unsigned long  CamIdA, 
							   unsigned short CamIdB,
							   unsigned short SerialId )
{
	return true;
}

bool CApnSerial_USB::ClosePort()
{
	return true;
}

bool CApnSerial_USB::GetBaudRate( unsigned long *BaudRate )
{
	return true;
}

bool CApnSerial_USB::SetBaudRate( unsigned long BaudRate )
{
	return true;
}

bool CApnSerial_USB::GetFlowControl( Apn_SerialFlowControl *FlowControl )
{
	return true;
}

bool CApnSerial_USB::SetFlowControl( Apn_SerialFlowControl FlowControl )
{
	return true;
}

bool CApnSerial_USB::GetParity( Apn_SerialParity *Parity )
{
	return true;
}

bool CApnSerial_USB::SetParity( Apn_SerialParity Parity )
{
	return true;
}

bool CApnSerial_USB::Read( char	*ReadBuffer, unsigned short *ReadCount )
{
	return true;
}

bool CApnSerial_USB::Write( char *WriteBuffer, unsigned short WriteCount )
{
	return true;
}