SDC C-Project CF Review 프로그램
kojingeun
2023-07-14 f77e8008cac062596058fca2aeddda62b80bedbf
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include "StdAfx.h"
#include "CHAfmControls/AFMControl_Simulation.h"
 
CAfmControl_Simulation::CAfmControl_Simulation(int nIndex) : CAfmControl(nIndex)
{
}
 
CAfmControl_Simulation::~CAfmControl_Simulation(void)
{
}
 
int    CAfmControl_Simulation::Connect(const CAfmControlInfo& controlInfo)
{
    m_ControlInfo = controlInfo;
 
    m_bConnected = TRUE;
 
    return 1;
}
 
void CAfmControl_Simulation::Disconnect()
{
 
}
 
BOOL CAfmControl_Simulation::GetConnected() const
{
    return m_bConnected;
}
 
BOOL CAfmControl_Simulation::GetTracking(int& nTracking) const
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::GetZoomIndex(int& nZoomIndex) const
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::GetRecipeIndex(int& nRecipeIdnex, int& nZoomIndex) const
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::GetRecipeName(CString& strRecipeName, int& nZoomIndex) const
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::SetTracking(int nTracking)
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::SetZoomIndex(int nZoomIndex)
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::SetRecipeIndex(int nRecipeIdnex, int nZoomIndex)
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::SetRecipeName(const CString& strRecipeName, int nZoomIndex)
{
    return TRUE;
}
 
int    CAfmControl_Simulation::RecipeJogSpeed(double dSpeed)
{
    return 1;
}
 
int    CAfmControl_Simulation::RecipeJogCommand(int nCmd)
{
    return 1;
}
 
int    CAfmControl_Simulation::RecipeTracking(int nTracking)
{
    return 1;
}
 
int        CAfmControl_Simulation::RecipeZoom(int nZoomIndex)
{
    return 1;
}
 
int        CAfmControl_Simulation::RecipeChange(int nRecipeIndex, int nZoomIndex)
{
    return 1;
}
 
int        CAfmControl_Simulation::RecipeChange(const CString& strRecipeName, int nZoomIndex)
{
    return 1;
}
 
BOOL CAfmControl_Simulation::MoveToTargetPosition( double dPos )
{
    return TRUE;
}
 
BOOL    CAfmControl_Simulation::MoveToLimitPlus()
{
    return TRUE;
}
 
BOOL    CAfmControl_Simulation::MoveToLimitMinus()
{
    return TRUE;
}
 
int CAfmControl_Simulation::MoveToHomePosition(int nHomePos)
{
    return TRUE;
}
 
 
BOOL CAfmControl_Simulation::MoveToBasePosition(int nZoomIndex)
{
    return TRUE;
}
 
int CAfmControl_Simulation::GetAFMHomePosition(bool &bHome) const
{
    bHome = TRUE;
    return TRUE;
}
BOOL CAfmControl_Simulation::GetInFocus( BOOL* pRtCheck )
{
    return TRUE;
}
 
BOOL CAfmControl_Simulation::SetSystemTime(SYSTEMTIME stCurrentTime)
{
    return TRUE;
}