19 lines
442 B
C++
19 lines
442 B
C++
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// HAL_ToolChanger.cpp : interface for the Tool Changer related functions
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "HAL.h"
|
|
#include "HSI.h"
|
|
|
|
HAL_STATUS HAL_TC_IsSupported(UINT &Type)
|
|
{
|
|
Type = 0;
|
|
|
|
HAL_SendDebug(_T("HAL_TC_IsSupported %X\n"), Type);
|
|
return HAL_STATUS_NOT_SUPPORTED;
|
|
}
|