|
|
@ -2,7 +2,10 @@ |
|
|
|
#include <include/LowLevel/Utils/Utils.h> |
|
|
|
#include "include/LowLevel/HonaLowLevelAPI.h" |
|
|
|
#include "include/Wrapper/PlxWrapper.h" |
|
|
|
|
|
|
|
#include <QDebug> |
|
|
|
#include <QTimer> |
|
|
|
|
|
|
|
quint32 HonaLowLevelAPI::packetLenInt4; |
|
|
|
quint32 HonaLowLevelAPI::packetLenRes4; |
|
|
|
quint32 HonaLowLevelAPI::packetLenSinglePulse; |
|
|
@ -21,29 +24,6 @@ quint32 HonaLowLevelAPI::nextInt123C; |
|
|
|
quint32 HonaLowLevelAPI::nextRes123C; |
|
|
|
quint32 HonaLowLevelAPI::nextIntS; |
|
|
|
|
|
|
|
bool HonaLowLevelAPI::getHsruIsStarted() const |
|
|
|
{ |
|
|
|
return _hsruIsStarted; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::setHsruIsStarted(bool hsruIsStarted) |
|
|
|
{ |
|
|
|
_hsruIsStarted = hsruIsStarted; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
bool HonaLowLevelAPI::getHiruIsStarted() const |
|
|
|
{ |
|
|
|
return _hiruIsStarted; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::setHiruIsStarted(bool hiruIsStarted) |
|
|
|
{ |
|
|
|
_hiruIsStarted = hiruIsStarted; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
HonaLowLevelAPI::HonaLowLevelAPI(QObject* parent) : QObject(parent) |
|
|
|
{ |
|
|
@ -56,23 +36,11 @@ HonaLowLevelAPI::HonaLowLevelAPI(QObject* parent) : QObject(parent) |
|
|
|
packetLenResS = 7; |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
bool HonaLowLevelAPI::isHsruStarted() |
|
|
|
{ |
|
|
|
return getHsruIsStarted(); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
bool HonaLowLevelAPI::isHiruStarted() |
|
|
|
{ |
|
|
|
return getHiruIsStarted(); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::deviceReset() |
|
|
|
{ |
|
|
|
if(!plxWrapper.deviceReset()) |
|
|
|
throw HonaException("Reset Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
@ -80,18 +48,18 @@ void HonaLowLevelAPI::setConfig(HonaSettings& settings) |
|
|
|
{ |
|
|
|
if(!plxWrapper.deviceReadRegister(0x10000000, honaRegisterBuffer, 8)) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceReadRegister Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
_honaSetting = settings; |
|
|
|
writeSettingToRegisters(settings); |
|
|
|
if(!plxWrapper.deviceWriteRegister(0x10000000, honaRegisterBuffer)) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceWriteRegister Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
if(!plxWrapper.deviceReadRegister(0x10000000, honaRegisterBuffer, 8)) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceReadRegister Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -117,13 +85,13 @@ QString HonaLowLevelAPI::getDeviceId() |
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::hsruStart() |
|
|
|
{ |
|
|
|
if(HonaLowLevelAPI::isHsruStarted()) |
|
|
|
if(_hsruIsStarted) |
|
|
|
{ |
|
|
|
throw HonaAlreadyStartedException(" alreadyStarted"); |
|
|
|
throw HonaAlreadyStartedException(); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
setHsruIsStarted(true); |
|
|
|
_hsruIsStarted = true; |
|
|
|
QtConcurrent::run(this, &HonaLowLevelAPI::hsruMainThread); |
|
|
|
} |
|
|
|
} |
|
|
@ -131,17 +99,23 @@ void HonaLowLevelAPI::hsruStart() |
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::hiruStart() |
|
|
|
{ |
|
|
|
if(!isHiruStarted()) |
|
|
|
throw HonaException("HiruStarted doesn't started "); |
|
|
|
QtConcurrent::run(this, &HonaLowLevelAPI::hiruMainThread); |
|
|
|
setHiruIsStarted(true); |
|
|
|
|
|
|
|
if(_hiruIsStarted) |
|
|
|
{ |
|
|
|
throw HonaAlreadyStartedException(); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
_hiruIsStarted = true; |
|
|
|
QtConcurrent::run(this, &HonaLowLevelAPI::hiruMainThread); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void HonaLowLevelAPI::hsruStop() |
|
|
|
{ |
|
|
|
if(isHiruStarted()) |
|
|
|
setHsruIsStarted(false); |
|
|
|
if(_hsruIsStarted) |
|
|
|
_hsruIsStarted =false; |
|
|
|
_hsruStopEvent.wakeAll(); |
|
|
|
} |
|
|
|
|
|
|
@ -150,12 +124,12 @@ void HonaLowLevelAPI::init() |
|
|
|
{ |
|
|
|
if(!plxWrapper.deviceInit(0X9054)) |
|
|
|
{ |
|
|
|
throw HonaException("Init Doesn't Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
if(!plxWrapper.deviceOpen()) |
|
|
|
{ |
|
|
|
throw HonaException("deviceOpen Doesn't Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -181,9 +155,8 @@ void HonaLowLevelAPI::writeSettingToRegisters(HonaSettings& settings) |
|
|
|
honaRegisterBuffer.insert(0, 0xEFFFFFFF); |
|
|
|
/************************************************************************/ |
|
|
|
|
|
|
|
honaRegisterBuffer.insert(0, |
|
|
|
(honaRegisterBuffer.at(0) + |
|
|
|
(settings.hiruSettings.threshold & 0x00000FFF))); |
|
|
|
honaRegisterBuffer.insert(0,(honaRegisterBuffer.at(0) + |
|
|
|
(settings.hiruSettings.threshold & 0x00000FFF))); |
|
|
|
|
|
|
|
honaRegisterBuffer.insert(1, settings.hsruSettings.honaInt123CTHR); |
|
|
|
honaRegisterBuffer.insert(2, settings.hsruSettings.honaRes123CTHR); |
|
|
@ -208,7 +181,7 @@ void HonaLowLevelAPI::hsruMainThread() |
|
|
|
deviceReset(); |
|
|
|
if(!plxWrapper.deviceEnableInterrupt()) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceEnableInterrupt Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
QtConcurrent::run(this, &HonaLowLevelAPI::hsruReadThread); |
|
|
@ -222,7 +195,7 @@ void HonaLowLevelAPI::hsruMainThread() |
|
|
|
|
|
|
|
if(!plxWrapper.deviceDisableInterrupt()) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceEnableInterrupt Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -237,13 +210,13 @@ void HonaLowLevelAPI::hsruReadThread() |
|
|
|
|
|
|
|
if(!plxWrapper.deviceWaitForInterrupt(1000)) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceWaitForInterrupt Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
honaPacketList.clear(); |
|
|
|
_hsruLoss = 0; |
|
|
|
if(!plxWrapper.deviceOpenPCIChannel()) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceOpenPCIChannel Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
_hsruLoss += hsruParserInt123C(hsruReadHonaBuffer(honaReceivers::int123C), |
|
|
@ -258,11 +231,11 @@ void HonaLowLevelAPI::hsruReadThread() |
|
|
|
honaPacketList); |
|
|
|
if(!plxWrapper.deviceClosePCIChannel()) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceClosePCIChannel Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
if(!plxWrapper.deviceEnableInterrupt()) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceEnableInterrupt Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
_mutex.lock(); |
|
|
|
_hsruReadDone.wakeAll(); |
|
|
@ -317,7 +290,7 @@ quint32 HonaLowLevelAPI::hiruGetDOA() |
|
|
|
quint32 Doa = 0; |
|
|
|
if(!plxWrapper.deviceReadRegister(0x30000004, Doa)) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceReadRegister Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
Doa = Doa & 0x0000FFFF; |
|
|
|
return Doa; |
|
|
@ -908,17 +881,18 @@ QVector<quint32> HonaLowLevelAPI::hsruReadHonaBuffer(honaReceivers receiver) |
|
|
|
else if(receiver == honaReceivers::singlePulse) |
|
|
|
address = 0XB0000000; |
|
|
|
else |
|
|
|
throw HonaException("honaReceivers is Not Valid"); |
|
|
|
throw HonaException(); |
|
|
|
|
|
|
|
if(!plxWrapper.deviceReadMemory(address, honaData, honaData.size())) |
|
|
|
{ |
|
|
|
throw HonaException("DeviceReadMemory Doesnt Occur"); |
|
|
|
throw HonaException(); |
|
|
|
} |
|
|
|
|
|
|
|
// qDebug() << " hsruReadHonaBuffer receiver "<< receiver;
|
|
|
|
// for(auto i = 0 ; i < 10; i++)
|
|
|
|
// qDebug() << "[" << i << "] " << "0x" << QString::number(honaData[i], 16);
|
|
|
|
// qDebug() << "------------------------------------------------------------";
|
|
|
|
|
|
|
|
return honaData; |
|
|
|
} |
|
|
|
|
|
|
|