You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
// OutputController_9222.h: interface for the COutputController_9222 class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OUTPUTCONTROLLER_9222_H__39C52576_F9ED_466C_B411_0F141109A876__INCLUDED_)
|
|
#define AFX_OUTPUTCONTROLLER_9222_H__39C52576_F9ED_466C_B411_0F141109A876__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OutputControllerBase.h"
|
|
|
|
// NOTE: the Channel/Point number for analog output is 0 and 1 only
|
|
// However, MIT internal setting is 16 and 17.
|
|
class COutputController_9222 : public COutputControllerBase
|
|
{
|
|
public:
|
|
COutputController_9222();
|
|
virtual ~COutputController_9222();
|
|
|
|
// method to initialise the output controller card
|
|
int InitCard(int nHardwareIniTypeID, int nHardwareIniTypeCardNo, int *pPhysicalCardID) override;
|
|
|
|
// method to close the output controller card
|
|
int CloseCard(int nPhysicalCardID) override;
|
|
};
|
|
|
|
#endif // !defined(AFX_OUTPUTCONTROLLER_9222_H__39C52576_F9ED_466C_B411_0F141109A876__INCLUDED_)
|