550 lines
17 KiB
C++
550 lines
17 KiB
C++
#ifndef __cplusplus
|
|
#error "icsneolegacy.cpp must be compiled with a C++ compiler!"
|
|
#endif
|
|
|
|
#define NOMINMAX
|
|
|
|
#define ICSNEOC_MAKEDLL
|
|
#include "icsneo/icsneolegacy.h"
|
|
|
|
#undef ICSNEOC_MAKEDLL
|
|
#include "icsneo/icsneoc.h"
|
|
|
|
#include "icsneo/communication/network.h"
|
|
#include <map>
|
|
#include <algorithm>
|
|
|
|
#include <cstring>
|
|
#include <climits>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4100) // unreferenced formal parameter
|
|
#endif
|
|
|
|
using namespace icsneo;
|
|
|
|
typedef uint64_t legacymaphandle_t;
|
|
static std::map<legacymaphandle_t, neodevice_t> neodevices;
|
|
|
|
static NeoDevice OldNeoDeviceFromNew(const neodevice_t* newnd) {
|
|
NeoDevice oldnd = { 0 };
|
|
oldnd.DeviceType = newnd->type;
|
|
oldnd.SerialNumber = icsneo_serialStringToNum(newnd->serial);
|
|
oldnd.NumberOfClients = 0;
|
|
oldnd.MaxAllowedClients = 1;
|
|
static_assert(sizeof(neodevice_handle_t) == sizeof(oldnd.Handle), "neodevice_handle_t size must be sizeof(int) for compatibility reasons");
|
|
oldnd.Handle = newnd->handle;
|
|
return oldnd;
|
|
}
|
|
|
|
static void NeoMessageToSpyMessage(const neomessage_t& newmsg, icsSpyMessage& oldmsg) {
|
|
memset(&oldmsg, 0, sizeof(icsSpyMessage));
|
|
oldmsg.NumberBytesData = (uint8_t)std::min(newmsg.length, (size_t)255);
|
|
oldmsg.NumberBytesHeader = 4;
|
|
oldmsg.ExtraDataPtr = (void*)newmsg.data;
|
|
memcpy(oldmsg.Data, newmsg.data, std::min(newmsg.length, (size_t)8));
|
|
oldmsg.ArbIDOrHeader = *(uint32_t*)newmsg.header;
|
|
oldmsg.ExtraDataPtrEnabled = newmsg.length > 8;
|
|
oldmsg.NetworkID = (uint8_t)newmsg.netid; // Note: NetID remapping from the original API is not supported
|
|
oldmsg.StatusBitField = newmsg.status.statusBitfield[0];
|
|
oldmsg.StatusBitField2 = newmsg.status.statusBitfield[1];
|
|
oldmsg.StatusBitField3 = newmsg.status.statusBitfield[2];
|
|
oldmsg.StatusBitField4 = newmsg.status.statusBitfield[3];
|
|
switch(Network::Type(newmsg.type)) {
|
|
case Network::Type::CAN:
|
|
case Network::Type::SWCAN:
|
|
case Network::Type::LSFTCAN:
|
|
oldmsg.Protocol = newmsg.status.canfdFDF ? SPY_PROTOCOL_CANFD : SPY_PROTOCOL_CAN;
|
|
break;
|
|
case Network::Type::Ethernet:
|
|
oldmsg.Protocol = SPY_PROTOCOL_ETHERNET;
|
|
break;
|
|
}
|
|
}
|
|
|
|
//Basic Functions
|
|
int icsneoFindDevices(NeoDeviceEx* devs, int* devCount, unsigned int* devTypes, unsigned int devTypeCount, POptionsFindNeoEx*, unsigned int*) {
|
|
constexpr size_t MAX_DEVICES = 255;
|
|
if(devCount == nullptr)
|
|
return 0;
|
|
|
|
unsigned int devTypesDefault[] = { std::numeric_limits<unsigned int>::max() };
|
|
if(devTypes == nullptr || devTypeCount == 0) {
|
|
devTypes = devTypesDefault;
|
|
devTypeCount = 1;
|
|
}
|
|
|
|
size_t count = MAX_DEVICES;
|
|
if(devs == nullptr) { // Size query
|
|
icsneo_findAllDevices(nullptr, &count);
|
|
*devCount = (int)count;
|
|
return 1;
|
|
}
|
|
|
|
size_t bufferSize = (size_t)*devCount;
|
|
if(*devCount < 0 || bufferSize > MAX_DEVICES)
|
|
return 0;
|
|
|
|
neodevice_t devices[MAX_DEVICES];
|
|
icsneo_findAllDevices(devices, &count);
|
|
if(bufferSize < count)
|
|
count = bufferSize;
|
|
*devCount = (int)count;
|
|
|
|
for(size_t i = 0; i < count; i++) {
|
|
devs[i] = { OldNeoDeviceFromNew(&devices[i]) }; // Write out into user memory
|
|
neodevices[uint64_t(devices[i].handle) << 32 | icsneo_serialStringToNum(devices[i].serial)] = devices[i]; // Fill the look up table
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int icsneoFindNeoDevices(unsigned long DeviceTypes, NeoDevice* pNeoDevice, int* pNumDevices) {
|
|
constexpr size_t MAX_DEVICES = 255;
|
|
size_t count = MAX_DEVICES;
|
|
|
|
if(pNumDevices == nullptr)
|
|
return 0;
|
|
|
|
if(pNeoDevice == nullptr) {
|
|
icsneo_findAllDevices(nullptr, &count);
|
|
*pNumDevices = (int)count;
|
|
return 1;
|
|
}
|
|
|
|
size_t bufferSize = (size_t)*pNumDevices;
|
|
if(*pNumDevices < 0 || bufferSize > MAX_DEVICES)
|
|
return 0;
|
|
|
|
neodevice_t devices[MAX_DEVICES];
|
|
icsneo_findAllDevices(devices, &count);
|
|
if(bufferSize < count)
|
|
count = bufferSize;
|
|
*pNumDevices = (int)count;
|
|
|
|
for(size_t i = 0; i < count; i++) {
|
|
pNeoDevice[i] = OldNeoDeviceFromNew(&devices[i]); // Write out into user memory
|
|
neodevices[uint64_t(devices[i].handle) << 32 | icsneo_serialStringToNum(devices[i].serial)] = devices[i]; // Fill the look up table
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int icsneoOpenNeoDevice(NeoDevice* pNeoDevice, void** hObject, unsigned char* bNetworkIDs, int bConfigRead, int bSyncToPC) {
|
|
if(pNeoDevice == nullptr || hObject == nullptr)
|
|
return false;
|
|
|
|
neodevice_t* device;
|
|
try {
|
|
device = &neodevices.at(uint64_t(pNeoDevice->Handle) << 32 | pNeoDevice->SerialNumber);
|
|
} catch(std::out_of_range& e) {
|
|
(void)e; // Unused
|
|
return false;
|
|
}
|
|
|
|
*hObject = device;
|
|
if(!icsneo_openDevice(device))
|
|
return false;
|
|
icsneo_setPollingMessageLimit(device, 20000);
|
|
icsneo_enableMessagePolling(device);
|
|
return icsneo_goOnline(device);
|
|
}
|
|
|
|
int icsneoClosePort(void* hObject, int* pNumberOfErrors) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
|
|
return icsneo_closeDevice(device);
|
|
}
|
|
|
|
// Memory is now managed automatically, this function is unneeded
|
|
void icsneoFreeObject(void* hObject) { (void)hObject; return; }
|
|
|
|
int icsneoSerialNumberToString(unsigned long serial, char* data, unsigned long data_size) {
|
|
size_t length = (size_t)data_size;
|
|
return icsneo_serialNumToString((uint32_t)serial, data, &length);
|
|
}
|
|
|
|
//Message Functions
|
|
int icsneoGetMessages(void* hObject, icsSpyMessage* pMsg, int* pNumberOfMessages, int* pNumberOfErrors) {
|
|
static neomessage_t messages[20000];
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
|
|
size_t messageCount = 20000;
|
|
if(!icsneo_getMessages(device, messages, &messageCount, 0))
|
|
return false;
|
|
|
|
*pNumberOfMessages = (int)messageCount;
|
|
*pNumberOfErrors = 0;
|
|
|
|
for(size_t i = 0; i < messageCount; i++)
|
|
NeoMessageToSpyMessage(messages[i], pMsg[i]);
|
|
|
|
return true;
|
|
}
|
|
|
|
int icsneoTxMessages(void* hObject, icsSpyMessage* pMsg, int lNetworkID, int lNumMessages) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
std::vector<uint8_t> data;
|
|
neomessage_t newmsg = {};
|
|
newmsg.netid = (uint16_t)lNetworkID;
|
|
memcpy(newmsg.header, &pMsg[0].ArbIDOrHeader, sizeof(newmsg.header));
|
|
for(int i = 0; i < lNumMessages; i++)
|
|
data.insert(data.end(), pMsg[i].Data, pMsg[i].Data + pMsg[i].NumberBytesData);
|
|
newmsg.data = data.data();
|
|
newmsg.length = data.size();
|
|
newmsg.status.statusBitfield[0] = pMsg[0].StatusBitField;
|
|
newmsg.status.statusBitfield[1] = pMsg[0].StatusBitField2;
|
|
newmsg.status.statusBitfield[2] = pMsg[0].StatusBitField3;
|
|
newmsg.status.statusBitfield[3] = pMsg[0].StatusBitField4;
|
|
if(pMsg[0].Protocol == SPY_PROTOCOL_CANFD)
|
|
newmsg.status.canfdFDF = true;
|
|
return icsneo_transmit(device, &newmsg);
|
|
}
|
|
|
|
int icsneoTxMessagesEx(void* hObject, icsSpyMessage* pMsg, unsigned int lNetworkID, unsigned int lNumMessages, unsigned int* NumTxed, unsigned int zero2) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
neomessage_t newmsg;
|
|
*NumTxed = 0;
|
|
for(unsigned int i = 0; i < lNumMessages; i++) {
|
|
const icsSpyMessage& oldmsg = pMsg[i];
|
|
newmsg = {};
|
|
newmsg.netid = (uint16_t)lNetworkID;
|
|
memcpy(newmsg.header, &oldmsg.ArbIDOrHeader, sizeof(newmsg.header));
|
|
newmsg.length = oldmsg.NumberBytesData | (oldmsg.NodeID << 8);
|
|
if (oldmsg.ExtraDataPtrEnabled)
|
|
newmsg.data = reinterpret_cast<const uint8_t*>(oldmsg.ExtraDataPtr);
|
|
else
|
|
newmsg.data = oldmsg.Data;
|
|
newmsg.status.statusBitfield[0] = oldmsg.StatusBitField;
|
|
newmsg.status.statusBitfield[1] = oldmsg.StatusBitField2;
|
|
newmsg.status.statusBitfield[2] = oldmsg.StatusBitField3;
|
|
newmsg.status.statusBitfield[3] = oldmsg.StatusBitField4;
|
|
if(oldmsg.Protocol == SPY_PROTOCOL_CANFD)
|
|
newmsg.status.canfdFDF = true;
|
|
if(icsneo_transmit(device, &newmsg))
|
|
(*NumTxed)++;
|
|
}
|
|
return lNumMessages == *NumTxed;
|
|
}
|
|
|
|
int icsneoEnableNetworkRXQueue(void* hObject, int iEnable) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoGetTimeStampForMsg(void* hObject, icsSpyMessage* pMsg, double* pTimeStamp) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
void icsneoGetISO15765Status(void* hObject, int lNetwork, int lClearTxStatus, int lClearRxStatus, int*lTxStatus, int*lRxStatus) {
|
|
// TODO Implement
|
|
return;
|
|
}
|
|
|
|
void icsneoSetISO15765RxParameters(void* hObject, int lNetwork, int lEnable, spyFilterLong* pFF_CFMsgFilter, icsSpyMessage* pTxMsg,
|
|
int lCFTimeOutMs, int lFlowCBlockSize, int lUsesExtendedAddressing, int lUseHardwareIfPresent) {
|
|
// TODO Implement
|
|
return;
|
|
}
|
|
|
|
//Device Functions
|
|
int icsneoGetConfiguration(void* hObject, unsigned char* pData, int* lNumBytes) {
|
|
// 2G devices are not supported in the new API
|
|
return false;
|
|
}
|
|
|
|
int icsneoSendConfiguration(void* hObject, unsigned char* pData, int lNumBytes) {
|
|
// 2G devices are not supported in the new API
|
|
return false;
|
|
}
|
|
|
|
int icsneoGetFireSettings(void* hObject, SFireSettings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetFireSettings(void* hObject, SFireSettings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetVCAN3Settings(void* hObject, SVCAN3Settings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetVCAN3Settings(void* hObject, SVCAN3Settings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetFire2Settings(void* hObject, SFire2Settings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetFire2Settings(void* hObject, SFire2Settings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetVCANRFSettings(void* hObject, SVCANRFSettings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetVCANRFSettings(void* hObject, SVCANRFSettings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetVCAN412Settings(void* hObject, SVCAN412Settings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetVCAN412Settings(void* hObject, SVCAN412Settings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetRADGalaxySettings(void* hObject, SRADGalaxySettings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetRADGalaxySettings(void* hObject, SRADGalaxySettings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoGetRADStar2Settings(void* hObject, SRADStar2Settings* pSettings, int iNumBytes) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
return !!icsneo_settingsReadStructure(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetRADStar2Settings(void* hObject, SRADStar2Settings* pSettings, int iNumBytes, int bSaveToEEPROM) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(bSaveToEEPROM)
|
|
return icsneo_settingsApplyStructure(device, pSettings, iNumBytes);
|
|
return icsneo_settingsApplyStructureTemporary(device, pSettings, iNumBytes);
|
|
}
|
|
|
|
int icsneoSetBitRate(void* hObject, int BitRate, int NetworkID) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(!icsneo_setBaudrate(device, (uint16_t)NetworkID, BitRate))
|
|
return false;
|
|
return icsneo_settingsApply(device);
|
|
}
|
|
|
|
int icsneoGetDeviceParameters(void* hObject, char* pParameter, char* pValues, short ValuesLength) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoSetDeviceParameters(void* hObject, char* pParmValue, int* pErrorIndex, int bSaveToEEPROM) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
//Error Functions
|
|
int icsneoGetLastAPIError(void* hObject, unsigned long* pErrorNumber) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoGetErrorMessages(void* hObject, int* pErrorMsgs, int* pNumberOfErrors) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoGetErrorInfo(int lErrorNumber, TCHAR* szErrorDescriptionShort, TCHAR* szErrorDescriptionLong, int* lMaxLengthShort, int* lMaxLengthLong, int* lErrorSeverity, int* lRestartNeeded) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
//ISO15765-2 Functions
|
|
int icsneoISO15765_EnableNetworks(void* hObject, unsigned long ulNetworks) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoISO15765_DisableNetworks(void* hObject) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoISO15765_TransmitMessage(void* hObject, unsigned long ulNetworkID, stCM_ISO157652_TxMessage* pMsg, unsigned long ulBlockingTimeout) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoISO15765_ReceiveMessage(void* hObject, int ulNetworkID, stCM_ISO157652_RxMessage* pMsg) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
//General Utility Functions
|
|
int icsneoValidateHObject(void* hObject) {
|
|
for(auto it = neodevices.begin(); it != neodevices.end(); it++) {
|
|
if(&it->second == hObject) {
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
if(icsneo_isValidNeoDevice(device))
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
int icsneoGetDLLVersion(void) {
|
|
return 804;
|
|
}
|
|
|
|
int icsneoGetSerialNumber(void* hObject, unsigned int*iSerialNumber) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
*iSerialNumber = icsneo_serialStringToNum(device->serial);
|
|
return true;
|
|
}
|
|
|
|
int icsneoStartSockServer(void* hObject, int iPort) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoStopSockServer(void* hObject) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
//CoreMini Script functions
|
|
int icsneoScriptStart(void* hObject, int iLocation) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptStop(void* hObject) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptLoad(void* hObject, const unsigned char* bin, unsigned long len_bytes, int iLocation) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptClear(void* hObject, int iLocation) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptStartFBlock(void* hObject,unsigned int fb_index) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptGetFBlockStatus(void* hObject, unsigned int fb_index, int* piRunStatus) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptStopFBlock(void* hObject,unsigned int fb_index) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptGetScriptStatus(void* hObject, int* piStatus) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptReadAppSignal(void* hObject, unsigned int iIndex, double*dValue) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoScriptWriteAppSignal(void* hObject, unsigned int iIndex, double dValue) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
//Deprecated (but still suppored in the DLL)
|
|
int icsneoOpenPortEx(void* lPortNumber, int lPortType, int lDriverType, int lIPAddressMSB, int lIPAddressLSBOrBaudRate, int bConfigRead, unsigned char* bNetworkID, int* hObject) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoOpenPort(int lPortNumber, int lPortType, int lDriverType, unsigned char* bNetworkID, unsigned char* bSCPIDs, int* hObject) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|
|
|
|
int icsneoEnableNetworkCom(void* hObject, int Enable) {
|
|
if(!icsneoValidateHObject(hObject))
|
|
return false;
|
|
neodevice_t* device = (neodevice_t*)hObject;
|
|
|
|
if(Enable)
|
|
return icsneo_goOnline(device);
|
|
else
|
|
return icsneo_goOffline(device);
|
|
}
|
|
|
|
int icsneoFindAllCOMDevices(int lDriverType, int lGetSerialNumbers, int lStopAtFirst, int lUSBCommOnly, int* p_lDeviceTypes, int* p_lComPorts, int* p_lSerialNumbers, int*lNumDevices) {
|
|
// TODO Implement
|
|
return false;
|
|
}
|