Machine Interface Utility:VER1.0
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// HAL_VideoProbe.cpp : interface for the Video Probe related functions
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include "HAL.h"
|
||||
#include "HSI.h"
|
||||
#include "HAL_Pendant.h"
|
||||
|
||||
extern CHALMicroVuExt g_HSIExt;
|
||||
|
||||
|
||||
HAL_STATUS HAL_VP_GetActiveProbe(int &/*nProbe*/)
|
||||
{
|
||||
HAL_STATUS Status = HAL_STATUS_NORMAL;
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
HAL_STATUS HAL_VP_SetActiveProbe(int nProbe)
|
||||
{
|
||||
HAL_STATUS Status = HAL_STATUS_NORMAL;
|
||||
|
||||
switch(nProbe)
|
||||
{
|
||||
case -1:
|
||||
break;
|
||||
|
||||
default:
|
||||
g_HSIExt.m_ActiveProbe = APT_VISION;
|
||||
SetupPendantSpeeds();
|
||||
break;
|
||||
}
|
||||
|
||||
return Status;
|
||||
}
|
||||
Reference in New Issue
Block a user