Browse Source

Quantization fixed.

Hardware Exception deployed rather than Sono Exception.
Scenario player start/stop quick change placed temporary.
Arash Aletayeb 4 months ago
parent
commit
5dcd05082b
  1. 4
      developHw.pro.user
  2. 1
      include/model/hardware/core/lowLevelApi/register/Register.h
  3. 2
      include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h
  4. 4
      include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h
  5. 4
      include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h
  6. 1
      include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h
  7. 1
      include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h
  8. 20
      include/model/hardware/exception/HardwareException.h
  9. 49
      include/model/hardware/exception/HardwareExceptionTypes.h
  10. 2
      main.cpp
  11. 423
      mainwindow.cpp
  12. 42
      mainwindow.h
  13. 20
      mainwindow.ui
  14. 2
      src/model/hardware/Hardware.cpp
  15. 212
      src/model/hardware/core/lowLevelApi/TrxBoard.cpp
  16. 39
      src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp
  17. 10
      src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp
  18. 2
      src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp
  19. 2
      src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp
  20. 7
      src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp
  21. 6
      src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp

4
developHw.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2024-10-30T16:49:35. -->
<!-- Written by QtCreator 4.10.0, 2024-12-07T11:17:45. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
@ -100,7 +100,7 @@
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">true</value>
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">true</value>
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">false</value>
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">false</value>
</valuemap>

1
include/model/hardware/core/lowLevelApi/register/Register.h

@ -3,6 +3,7 @@
#include "model/hardware/core/lowLevelApi/register/Field.h"
#include "model/hardware/device/SonoDevice.h"
#include "model/hardware/exception/HardwareException.h"
#include "QDebug"
class Register

2
include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h

@ -35,7 +35,7 @@ public:
{
QVector<float> temp;
temp.append(params->winOpenStepVal);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 16, 23, 0, true);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 8, 18, 0, true);
_winOpenStepValQ = tempQ.at(0);
_minApertureSizeQ = params->minApertureSize;

4
include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h

@ -35,12 +35,12 @@ public:
{
QVector<float> temp;
temp.append(params->rxActiveElementStep1);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 16, 19, 0, true);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 16, 18, 0, true);
_rxActiveElementStep1Q = tempQ.at(0);
temp.clear();
temp.append(params->rxActiveElementStep2);
tempQ = Calculation::qntzr(temp, 0, 16, 19, 0, true);
tempQ = Calculation::qntzr(temp, 0, 16, 18, 0, true);
_rxActiveElementStep2Q = tempQ.at(0);
}

4
include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h

@ -35,12 +35,12 @@ public:
{
QVector<float> temp;
temp.append(params->winOpenStartVal);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 16, 12, 0, true);
QVector<quint32> tempQ = Calculation::qntzr(temp, 0, 8, 8, 0, true);
_winOpenStartValQ = tempQ.at(0);
temp.clear();
temp.append(params->winOpenStopVal);
tempQ = Calculation::qntzr(temp, 0, 16, 12, 0, true);
tempQ = Calculation::qntzr(temp, 0, 8, 8, 0, true);
_winOpenStopValQ = tempQ.at(0);
}

1
include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h

@ -2,6 +2,7 @@
#define BPIFLASH_H
#include "model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h"
#include "model/hardware/exception/HardwareException.h"
#include "model/hardware/device/SonoDevice.h"
#include <QDataStream>
#include <QTimer>

1
include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h

@ -2,6 +2,7 @@
#define SPIFLASH_H
#include "model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h"
#include "model/hardware/exception/HardwareException.h"
#include "model/hardware/device/SonoDevice.h"
#include <QDataStream>
#include <QTimer>

20
include/model/hardware/exception/HardwareException.h

@ -2,9 +2,9 @@
#define HARDWAREEXCEPTION_H
#include <exception>
#include <QString>
//#include "logger/ESeverityLevel.h"
#include "model/hardware/exception/HwExceptionDef.h"
#include "model/hardware/exception/HardwareExceptionTypes.h"
class HardwareException : public std::exception
{
@ -26,17 +26,7 @@ public:
const char* what() const noexcept override
{
return HwErrors::getErrorMessage(_errId).toStdString().c_str();
}
//ESeverityLevel::eSeverityLevel getSeverityLevel() const
//{
//return HwErrors::getSeverityLevel(_errId);
//}
quint32 errId() const
{
return _errId;
return _innerMessage.toUtf8();
}
QString getInnerMessage() const
@ -44,9 +34,9 @@ public:
return _innerMessage;
}
QString getMessage() const
quint32 errId() const
{
return HwErrors::getErrorMessage(_errId);
return _errId;
}
};

49
include/model/hardware/exception/HardwareExceptionTypes.h

@ -0,0 +1,49 @@
#ifndef HARDWAREEXCEPTIONTYPES_H
#define HARDWAREEXCEPTIONTYPES_H
#define HW_NOT_FOUND 0
#define TRX_INIT_FAILED 1
#define TRX_READ_FAILED 2
#define SLAVE_PROG_FAILED 3
#define HW_PG_BAD 4
#define MPS_READ_FAILED 5
#define INVAL_TRX_ID 6
#define INVAL_MPS_ID 7
#define PROBE_SEL_FAILED 8
#define PROBE_READ_FAILED 9
#define FAN_FAULT_DETECTED 10
#define RELAY_READ_FAILED 11
#define INVAL_RELAY_ID 12
#define BITE_FAILED 13
#define THSD_ERROR 14
#define THERMAL_ERROR 15
#define AO_ERROR 16
#define LINE_FILT_ERROR 17
#define DTGC_ERROR 18
#define AFE_ERROR 19
#define SCN_ERROR 20
#define MPS_CURR_ERROR 21
#define MPS_VOLT_ERROR 22
#define STB_ERROR 23
#define PROBE_DISCONNECT 24 //Just For Log
#define SRAM1_PARITY_ERROR 25
#define SRAM2_PARITY_ERROR 26
#define SCEN_PRI_ERROR 27
#define SCEN_GT_ERROR 28
#define SCEN_SRAM_ERROR 29
#define SYNC_FIFO_ERROR 30
#define SYNC_POINT_ERROR 31
#define DINT_FIFO_ERROR 32
#define DINT_POINT_ERROR 33
#define EMU_DMA_ERROR 34
#define DMA_XFER_ERROR 35
#define MPS_HVA_HVB_CWD_ERROR 36
#define MPS_4D_ERROR 37
#define SCEN_START_ERROR 38
#define SCEN_STOP_ERROR 39
#define SRAM_CMP_ERROR 40
#define NOT_SUPPORTED_PROBE 41
#define UNKNOWN_PROBE 42
#define PROBE_CRC_ERROR 43
#endif //HARDWAREEXCEPTIONTYPES_H

2
main.cpp

@ -20,7 +20,7 @@ int main(int argc, char *argv[])
w.show();
return a.exec();
}
catch(SonoException& e)
catch(HardwareException& e)
{
qDebug() << e.what();
}

423
mainwindow.cpp

File diff suppressed because it is too large

42
mainwindow.h

@ -71,7 +71,7 @@
#define ENABLE "Enable"
#define DISABLE "Disable"
#define LOG_COUNT_FROM_FIRST 50U
#define LOG_COUNT_FROM_FIRST 100U
#define TRANSFER_LENGTH 128 * 1024
#define TRANSFER_RATE 30.0f
@ -246,25 +246,25 @@ private:
void dynamicContrastCsvRead(const QString &path);
quint32 frameDataCalc(QByteArray frame, qint32 index);
QString _fpgaProgramFolder = "/home/hasis/Desktop/hardware/hwCode";
QString _mcsProgramFolder = "/home/hasis/Desktop/hardware/hwCode";
QString _mcsVerifyFolder = "/home/hasis/Desktop/hardware/hwCode";
QString _scenarioFolder = "/home/hasis/Desktop/hardware/Scenarios";
QString _scenFolder = "/home/hasis/Desktop/hardware/Log/ScenariosFolder";
QString _emulFolder = "/home/hasis/Desktop/hardware/emulator";
QString _BITeScenFolder = "/home/hasis/Desktop/hardware/BITe_IQ";
QString _BITeIqFolder = "/home/hasis/Desktop/hardware/BITe_IQ";
QString _frameLogFolder = "/home/hasis/Desktop/hardware/Log/DMA";
QString _biteLogFolder = "/home/hasis/Desktop/hardware/Log/BITe";
QString _adcLoggerFolder = "/home/hasis/Desktop/hardware/Log/ADC";
QString _probeLoggerFolder = "/home/hasis/Desktop/hardware/Log/ProbeElements";
QString _statusVectorPSPath = "/home/hasis/Desktop/hardware/Log/statusVectorPS";
QString _headerLogPath = "/home/hasis/Desktop/hardware/Log/frameHeader/headerLog.csv";
QString _headerEndurancePath = "/home/hasis/Desktop/hardware/Log/header_endurance/headerLog.csv";
QString _probeRomPath = "/home/hasis/Desktop/hardware/ProbeRom";
QString _dynContrCurvesPath = "/home/hasis/Desktop/hardware/Develop_HardwareTest/developHw/kernelParams/DynContrCurves.csv";
quint32 frameDataCalc(const QByteArray& frame, qint32 index) const;
QString _fpgaProgramFolder = "/home/os/hardware/hwCode";
QString _mcsProgramFolder = "/home/os/hardware/hwCode";
QString _mcsVerifyFolder = "/home/os/hardware/hwCode";
QString _scenarioFolder = "/home/os/hardware/Scenarios";
QString _scenFolder = "/home/os/hardware/Log/ScenariosFolder";
QString _emulFolder = "/home/os/hardware/emulator";
QString _BITeScenFolder = "/home/os/hardware/BITe_IQ";
QString _BITeIqFolder = "/home/os/hardware/BITe_IQ";
QString _frameLogFolder = "/home/os/hardware/Log/DMA";
QString _biteLogFolder = "/home/os/hardware/Log/BITe";
QString _adcLoggerFolder = "/home/os/hardware/Log/ADC";
QString _probeLoggerFolder = "/home/os/hardware/Log/ProbeElements";
QString _statusVectorPSPath = "/home/os/hardware/Log/statusVectorPS";
QString _headerLogPath = "/home/os/hardware/Log/frameHeader/headerLog.csv";
QString _headerEndurancePath = "/home/os/hardware/Log/header_endurance/headerLog.csv";
QString _probeRomPath = "/home/os/hardware/ProbeRom";
QString _dynContrCurvesPath = "/home/os/hardware/Develop_HardwareTest/developHw/kernelParams/DynContrCurves.csv";
QVector<QByteArray> _dmaBuffer;
QByteArray _lastBuffer;
@ -588,6 +588,8 @@ private slots:
void on_chk_pm5RegEn_clicked(bool checked);
void on_chk_quickChanging_clicked(bool checked);
signals:
void showMessage(QString message);
void threeDReady();

20
mainwindow.ui

@ -42,7 +42,7 @@
<string/>
</property>
<property name="currentIndex">
<number>1</number>
<number>6</number>
</property>
<widget class="QWidget" name="tab_0">
<attribute name="title">
@ -7051,6 +7051,24 @@ Dynamic Contrast</string>
<string>Spi Verify</string>
</property>
</widget>
<widget class="QCheckBox" name="chk_quickChanging">
<property name="geometry">
<rect>
<x>880</x>
<y>20</y>
<width>201</width>
<height>41</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="text">
<string>Quick Changing</string>
</property>
</widget>
</widget>
</widget>
<widget class="QGroupBox" name="groupBox_6">

2
src/model/hardware/Hardware.cpp

@ -122,7 +122,7 @@ void Hardware::commandHandler(const CommandRequest& request)
//exp.getInnerMessage(),
//metaObject()->className());
fail(request, {exp.getMessage()});
// fail(request, {exp.getMessage()});
}
break;
}

212
src/model/hardware/core/lowLevelApi/TrxBoard.cpp

@ -41,34 +41,34 @@ void TrxBoard::sonoHeartBeatsDisable(void) const
this->afesHeartBeatDisable(true);
}
void TrxBoard::sendPacket()
{
auto counter(0);
while(_run)
{
if(_swCounter == 0)
{
std::this_thread::sleep_for(std::chrono::milliseconds(3));
continue;
}
else if(_swCounter != counter)
{
auto framePacket = QByteArray::fromRawData(_device.getBufferPtr(counter), BUFFER_SIZE);
//void TrxBoard::sendPacket()
//{
// auto counter(0);
// while(_run)
// {
// if(_swCounter == 0)
// {
// std::this_thread::sleep_for(std::chrono::milliseconds(3));
// continue;
// }
// else if(_swCounter != counter)
// {
// auto framePacket = QByteArray::fromRawData(_device.getBufferPtr(counter), BUFFER_SIZE);
#ifdef DEVELOP_UI
emit sendFramePacket(framePacket);
#else
packetEngine.newData(framePacket);
#endif
//#ifdef DEVELOP_UI
// emit sendFramePacket(framePacket);
//#else
// packetEngine.newData(framePacket);
//#endif
counter++;
if(counter >= SW_BUFFER_NUM)
{
counter = 0;
}
}
}
}
// counter++;
// if(counter >= SW_BUFFER_NUM)
// {
// counter = 0;
// }
// }
// }
//}
void TrxBoard::readData()
{
@ -106,7 +106,7 @@ void TrxBoard::readData()
(batch - preBatch > 1) ||
(batch - preBatch == 1 && subBbatch != 0))
{
//throw SonoException("Batch/subBatch id error is occured.");
//throw HardwareException(DMA_XFER_ERROR, "Batch/subBatch id error occured.");
}
preBatch = batch;
preSubBatch = subBbatch;
@ -170,8 +170,8 @@ void TrxBoard::afeAdcsSync(const quint8& slaveMounted)
{
if(this->_bCtrlMngt->checkTimeout())
{
throw SonoException(
"The timeout of the afe adcs sync is happend without receiving of sync done.");
throw HardwareException(AFE_ERROR,
"The timeout of the afe adcs sync happend without receiving of sync done.");
}
}
this->_bCtrlMngt->timerStop();
@ -181,8 +181,8 @@ void TrxBoard::afeAdcsSync(const quint8& slaveMounted)
quint32 syncErr = Slave->getAfeSyncError();
if(syncErr != 0)
{
throw SonoException(
"The error of the afe adcs sync is happend.");
throw HardwareException(AFE_ERROR,
"The error of the afe adcs sync happend.");
}
}
};
@ -219,7 +219,7 @@ void TrxBoard::waitForCaptureDone(Debug* _dbg)
{
if(this->_bCtrlMngt->checkTimeout())
{
throw SonoException("Failure to receive adc capture done.");
throw HardwareException(AFE_ERROR, "Failure to receive adc capture done.");
}
}
@ -253,7 +253,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga)
{
if(this->_bCtrlMngt->checkTimeout())
{
throw SonoException("Failure to receive adc log transfer done.");
throw HardwareException(AFE_ERROR, "Failure to receive adc log transfer done.");
}
}
@ -269,7 +269,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga)
if(this->_bCtrlMngt->checkTimeout())
{
throw SonoException("Failure to receive adc sampler done.");
throw HardwareException(AFE_ERROR, "Failure to receive adc sampler done.");
}
}
@ -277,7 +277,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga)
if(adcSamplerError)
{
throw SonoException("The adc sampler error is occured.");
throw HardwareException(AFE_ERROR, "The adc sampler error occured.");
}
//Adc logger stop
@ -515,7 +515,7 @@ void TrxBoard::fpgaProgram(const QString path, const quint8& slaveMounted) const
{
if(slaveMounted <= 0 || slaveMounted >= 8)
{
throw SonoException("Wrong mounted slave fpga is selected");
throw HardwareException(SLAVE_PROG_FAILED, "Wrong mounted slave fpga has selected.");
}
QByteArray bitFileData;
@ -524,12 +524,12 @@ void TrxBoard::fpgaProgram(const QString path, const quint8& slaveMounted) const
if(bitFile.fileName().isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(SLAVE_PROG_FAILED, "No file has selected.");
}
if(!bitFile.open(QIODevice::ReadOnly))
{
throw SonoException("Couldn't open bit file programming");
throw HardwareException(SLAVE_PROG_FAILED, "Couldn't open bit file programming.");
}
bitFileData = bitFile.readAll();
@ -612,7 +612,7 @@ void TrxBoard::gtReadReset()
if(error)
{
throw SonoException("The GT error is happened and it's didn't solve by gt reset.");
throw HardwareException(SCEN_GT_ERROR, "The GT error happened and it didn't solve by gt reset.");
}
}
}
@ -628,12 +628,12 @@ void TrxBoard::mcsRead(const QString path) const
if(path.isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(TRX_READ_FAILED, "No file has selected.");
}
if(!mcsFile.open(QIODevice::WriteOnly))
{
throw SonoException("Couldn't open BPI bin file programming");
throw HardwareException(TRX_READ_FAILED, "Couldn't open BPI bin file programming.");
}
mcsList = this->_bpiFlash->readMcs();
@ -655,7 +655,7 @@ void TrxBoard::setProbeDependParams(ScenPrbDepHardwareParam& prbDepParams)
/////////////////////////// DSP setting ///////////////////////////
if(prbDepParams.prbDepParams.apodizationLut.size() != APODIZATIONLUT_LUT_MAX)
{
throw SonoException("Apodization lut is out of range");
throw HardwareException(SCN_ERROR, "Apodization lut is out of range.");
}
this->_beamFormerSlave0->apodizationLut(prbDepParams.prbDepParams.apodizationLut);
this->_beamFormerSlave1->apodizationLut(prbDepParams.prbDepParams.apodizationLut);
@ -664,7 +664,7 @@ void TrxBoard::setProbeDependParams(ScenPrbDepHardwareParam& prbDepParams)
if(prbDepParams.prbDepParams.atgcLut.size() != ATGC_LUT_MAX)
{
throw SonoException("Atgc lut is out of range");
throw HardwareException(SCN_ERROR, "Atgc lut is out of range.");
}
this->_dsp->atgcLut(prbDepParams.prbDepParams.atgcLut);
@ -685,109 +685,109 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw)
if(scenGenHw.focusTypeNumber > FOCUS_TYPE_NUMBER_MAX)
{
throw SonoException("Focus type number is out of range");
throw HardwareException(SCN_ERROR, "Focus type number is out of range.");
}
_scenParams->focusTypeNumber = scenGenHw.focusTypeNumber;
if(scenGenHw.totalTxShotNumber > TOTAL_TX_SHOT_NUMBER_MAX)
{
throw SonoException("Total tx shot number is out of range");
throw HardwareException(SCN_ERROR, "Total tx-shot number is out of range.");
}
_scenParams->totalTxShotNumber = scenGenHw.totalTxShotNumber;
if(scenGenHw.rxBeamFormerNumber.size() > RX_BEAMFORMER_NUMBER_MAX)
{
throw SonoException("Rx beam former number is out of range");
throw HardwareException(SCN_ERROR, "Rx beamformer number is out of range.");
}
_scenParams->rxBeamFormerNumber = scenGenHw.rxBeamFormerNumber;
if(scenGenHw.hwRegister.scenarioEndIndex > SCENARIO_INDEX_MAX)
{
throw SonoException("Scenario end index is out of range");
throw HardwareException(SCN_ERROR, "Scenario end index is out of range.");
}
if(scenGenHw.hwRegister.scenarioEndIndex < scenGenHw.hwRegister.scenarioStartIndex)
{
throw SonoException(
"The scenario end index must be greater than or equal to the scenario start index");
throw HardwareException(SCN_ERROR,
"The scenario end index must be greater than or equal to the scenario start index.");
}
if(scenGenHw.hwRegister.scenarioEndIndex != (scenGenHw.totalTxShotNumber - 1))
{
throw SonoException(
"The scenario end index must be equal to the total tx shot number minus one");
throw HardwareException(SCN_ERROR,
"The scenario end index must be equal to the total tx-shot number minus one.");
}
_scenParams->scenarioStartIndex = scenGenHw.hwRegister.scenarioStartIndex;
_scenParams->scenarioEndIndex = scenGenHw.hwRegister.scenarioEndIndex;
if(scenGenHw.hwRegister.blendWeight.size() != BLENDWEIGHT_LUT_MAX)
{
throw SonoException("Blend weight lut is out of range");
throw HardwareException(SCN_ERROR, "Blend weight lut is out of range.");
}
_scenParams->hwRegister->blendWeight = scenGenHw.hwRegister.blendWeight;
if(scenGenHw.hwRegister.elementXPosition.size() != ELEMENT_POSITION_LUT_MAX)
{
throw SonoException("Element position x is out of range");
throw HardwareException(SCN_ERROR, "Element position x is out of range.");
}
_scenParams->hwRegister->elementPosition->xPosition = scenGenHw.hwRegister.elementXPosition;
if(scenGenHw.hwRegister.elementYPosition.size() != ELEMENT_POSITION_LUT_MAX)
{
throw SonoException("Element position y is out of range");
throw HardwareException(SCN_ERROR, "Element position y is out of range.");
}
_scenParams->hwRegister->elementPosition->yPosition = scenGenHw.hwRegister.elementYPosition;
if(scenGenHw.hwRegister.elementZPosition.size() != ELEMENT_POSITION_LUT_MAX)
{
throw SonoException("Element position z is out of range");
throw HardwareException(SCN_ERROR, "Element position z is out of range.");
}
_scenParams->hwRegister->elementPosition->zPosition = scenGenHw.hwRegister.elementZPosition;
//if(scenGenHw.hwRegister.freqLut.size() != FREQUENCY_LUT_MAX)
//{
//throw SonoException("Frequency lut is out of range");
//throw HardwareException(SCN_ERROR, "Frequency lut is out of range.");
//}
//_scenParams->hwRegister->freqLut = scenGenHw.hwRegister.freqLut;
if(scenGenHw.hwRegister.dtgcLut.size() != DTGC_LUT_MAX)
{
throw SonoException("Dtgc lut is out of range");
throw HardwareException(SCN_ERROR, "Dtgc lut is out of range.");
}
_scenParams->hwRegister->dtgcLut = scenGenHw.hwRegister.dtgcLut;
if(scenGenHw.hwRegister.dualPathWeight.size() != DUAL_PATH_MAX)
{
throw SonoException("Dual path weight is out of range");
throw HardwareException(SCN_ERROR, "Dual path weight is out of range.");
}
_scenParams->hwRegister->dualPathWeight = scenGenHw.hwRegister.dualPathWeight;
if(scenGenHw.hwRegister.pulseTypeNumber > PULSE_LUT_MAX)
{
throw SonoException("Pulse type number is out of range");
throw HardwareException(SCN_ERROR, "Pulse type number is out of range.");
}
_scenParams->hwRegister->pulseTypeNumber = scenGenHw.hwRegister.pulseTypeNumber;
if(scenGenHw.hwRegister.rxBeamFormerTypeNumber > RXBEAMFORMER_LUT_MAX)
{
throw SonoException("Rx beam former type number is out of range");
throw HardwareException(SCN_ERROR, "Rx beamformer type number is out of range.");
}
_scenParams->hwRegister->rxBeamFormerTypeNumber = scenGenHw.hwRegister.rxBeamFormerTypeNumber;
if(scenGenHw.hwRegister.receiverConfigTypeNumber > RRECEIVER_CONFIGURATION_LUT_MAX)
{
throw SonoException("Receiver config type number is out of range");
throw HardwareException(SCN_ERROR, "Receiver config type number is out of range.");
}
_scenParams->hwRegister->receiverConfigTypeNumber =
scenGenHw.hwRegister.receiverConfigTypeNumber;
if(scenGenHw.hwRegister.ddcParams.startLpf.size() != LPF_LUT_MAX)
{
throw SonoException("Start lpf lut is out of range");
throw HardwareException(SCN_ERROR, "Start lpf lut is out of range.");
}
if(scenGenHw.hwRegister.ddcParams.endLpf.size() != LPF_LUT_MAX)
{
throw SonoException("End lpf lut is out of range");
throw HardwareException(SCN_ERROR, "End lpf lut is out of range.");
}
_scenParams->hwRegister->lpfLut.clear();
@ -801,29 +801,29 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw)
if(scenGenHw.hwRegister.ddcParams.lpfScale.size() != LPF_SCALE_MAX)
{
throw SonoException("Lpf scale coefficient is out of range");
throw HardwareException(SCN_ERROR, "Lpf scale coefficient is out of range.");
}
_scenParams->hwRegister->lpfScaleCoeff = scenGenHw.hwRegister.ddcParams.lpfScale;
if(scenGenHw.hwRegister.ddcParams.startFreqLut.size() != START_FREQ_LUT_MAX)
{
throw SonoException("Start freq lut is out of range");
throw HardwareException(SCN_ERROR, "Start freq lut is out of range.");
}
_scenParams->hwRegister->startFreqLut = scenGenHw.hwRegister.ddcParams.startFreqLut;
if(scenGenHw.hwRegister.ddcParams.endFreqLut.size() != END_FREQ_LUT_MAX)
{
throw SonoException("End freq lut is out of range");
throw HardwareException(SCN_ERROR, "End freq lut is out of range.");
}
_scenParams->hwRegister->endFreqLut = scenGenHw.hwRegister.ddcParams.endFreqLut;
if(scenGenHw.hwRegister.ddcParams.startFreqPoint.size() != FREQ_POINT_LUT_MAX)
{
throw SonoException("Start freq point lut is out of range");
throw HardwareException(SCN_ERROR, "Start freq point lut is out of range.");
}
if(scenGenHw.hwRegister.ddcParams.endFreqPoint.size() != FREQ_POINT_LUT_MAX)
{
throw SonoException("End freq point lut is out of range");
throw HardwareException(SCN_ERROR, "End freq point lut is out of range.");
}
_scenParams->hwRegister->freqPoint->clear();
@ -837,25 +837,25 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw)
if(scenGenHw.hwRegister.ddcParams.freqStepLut.size() != FREQ_STEP_LUT_MAX)
{
throw SonoException("Freq step lut is out of range");
throw HardwareException(SCN_ERROR, "Freq step lut is out of range.");
}
_scenParams->hwRegister->freqStepLut = scenGenHw.hwRegister.ddcParams.freqStepLut;
if(scenGenHw.hwRegister.ddcParams.lpfWeightStepLut.size() != LPF_WEIGHT_STEP_LUT_MAX)
{
throw SonoException("Lpf weight step lut is out of range");
throw HardwareException(SCN_ERROR, "Lpf weight step lut is out of range.");
}
_scenParams->hwRegister->lpfWeightStepLut = scenGenHw.hwRegister.ddcParams.lpfWeightStepLut;
if(scenGenHw.hwRegister.ddcParams.startLpfWeightLut.size() != START_LPF_WEIGHT_LUT_MAX)
{
throw SonoException("Lpf weight step lut is out of range");
throw HardwareException(SCN_ERROR, "Lpf weight step lut is out of range.");
}
_scenParams->hwRegister->startLpfWeightLut = scenGenHw.hwRegister.ddcParams.startLpfWeightLut;
if(scenGenHw.hwRegister.apodizationParams.winOpenStartPoint.size() > RXBEAMFORMER_LUT_MAX)
{
throw SonoException("Apodization parameters is out of range");
throw HardwareException(SCN_ERROR, "Apodization parameters are out of range.");
}
_scenParams->hwRegister->apodizationParams.clear();
@ -1172,7 +1172,7 @@ void TrxBoard::setLineFilterCoefficient(QVector<float>& lineFilterLut)
{
if(lineFilterLut.size() != LINE_FILTER_LUT_MAX)
{
throw SonoException("Line filter lut is out of range");
throw HardwareException(SCN_ERROR, "Line filter lut is out of range.");
}
_unsignedQntzrVec = Calculation::qntzr(lineFilterLut, 0, 9, 8, 0, true, false);
QList<quint32> lineFilterLutQ = _unsignedQntzrVec.toList();
@ -1183,7 +1183,7 @@ void TrxBoard::setStbCoefficient(QVector<quint32>& stbLut)
{
if(stbLut.size() != STB_COEFFICIENT_LUT_MAX)
{
throw SonoException("Stb lut is out of range");
throw HardwareException(STB_ERROR, "Stb lut is out of range.");
}
QList<quint32> stbLutQ = stbLut.toList();
this->_dsp->stbCoefficient(stbLutQ);
@ -1198,7 +1198,7 @@ void TrxBoard::setDtgcLut(QVector<float>& dtgcLut)
{
if(dtgcLut.size() != DTGC_LUT_MAX)
{
throw SonoException("Dtgc lut is out of range");
throw HardwareException(DTGC_ERROR, "Dtgc lut is out of range.");
}
_unsignedQntzrVec = Calculation::qntzr(dtgcLut, 0, 12, 8, 0, true, false);
QList<quint32> dtgcLutQ = _unsignedQntzrVec.toList();
@ -1213,12 +1213,12 @@ void TrxBoard::setFramesMetaData(const QByteArray& metaData)
qint32 metaLength = metaData.length();
if(!metaLength)
{
throw SonoException("Meta data array is empty.");
throw HardwareException(SCEN_SRAM_ERROR, "Meta data array is empty.");
}
if(static_cast<quint32>(metaLength) > META_DATA_LENGTH * 8)
{
throw SonoException("Meta data byte array is out of range.");
throw HardwareException(SCEN_SRAM_ERROR, "Meta data byte array is out of range.");
}
QList<quint64> clear;
@ -1302,7 +1302,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath)
if(!sramFile.open(QIODevice::WriteOnly))
{
throw SonoException("Couldn't create the sram binary file due to the wrong path probably.");
throw HardwareException(SRAM_CMP_ERROR, "Couldn't create the sram binary file due to the wrong path probably.");
}
quint32 num(0);
@ -1328,7 +1328,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath)
if(!csvReadFile.open(QFile::ReadOnly))
{
throw SonoException(
throw HardwareException(SRAM_CMP_ERROR,
"Could not open the register's scenario params due to the wrong path probably.");
}
@ -1338,7 +1338,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath)
if(!csvWriteFile.open(QFile::WriteOnly))
{
throw SonoException(
throw HardwareException(SRAM_CMP_ERROR,
"Couldn't create the register compare file due to the wrong path probably.");
}
@ -1387,7 +1387,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath)
if(!sramReadFile.open(QFile::ReadOnly))
{
throw SonoException(
throw HardwareException(SRAM_CMP_ERROR,
"Could not open the sram's scenario params due to the wrong path probably.");
}
@ -1414,7 +1414,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath)
if(boardValue != fileValue)
{
throw SonoException("The sram scenario file is different to the sram params of board.");
throw HardwareException(SRAM_CMP_ERROR, "The sram scenario file is different to the sram params of board.");
}
temp.clear();
num += sizeof(quint64);
@ -1586,11 +1586,10 @@ void TrxBoard::scenPlayerStart(int count, bool afeHvPwrOn)
_run = true;
QtConcurrent::run(this, &TrxBoard::readLimitedData, count);
//QtConcurrent::run(this, &TrxBoard::sendPacket);
}
else
{
throw SonoException("Total scenario luts and sram parameters are not written compeletely");
throw HardwareException(SCEN_START_ERROR, "Total scenario luts and sram parameters have not written compeletely.");
}
}
@ -1732,11 +1731,10 @@ void TrxBoard::scenPlayerStart(bool unfreezeWithoutScenChanging)
_run = true;
QtConcurrent::run(this, &TrxBoard::readData);
//QtConcurrent::run(this, &TrxBoard::sendPacket);
}
else
{
throw SonoException("Total scenario luts and sram parameters are not written compeletely");
throw HardwareException(SCEN_START_ERROR, "Total scenario luts and sram parameters have not written compeletely.");
}
}
@ -1804,12 +1802,12 @@ void TrxBoard::fillRam(QString path)
if(emulFile.fileName().isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(EMU_DMA_ERROR, "No file has selected.");
}
if(!emulFile.open(QIODevice::ReadOnly))
{
throw SonoException("Couldn't open frame file to emulator test");
throw HardwareException(EMU_DMA_ERROR, "Couldn't open frame file to emulator test.");
}
sramData = emulFile.readAll();
@ -1889,7 +1887,7 @@ void TrxBoard::systemCompare(QList<quint32> &currentSystem, QList<QList<quint32>
return;
}
}
throw SonoException("The system parameters are not compatible.");
throw HardwareException(TRX_READ_FAILED, "The system parameters are not compatible.");
}
void TrxBoard::checkSystemCompatibility(QList<systemE2proms> &systemLut)
@ -1947,7 +1945,7 @@ void TrxBoard::crcCheck(const QByteArray array, quint8 crcRom) const
quint8 crcGen = crcGenerator(array);
if(crcGen != crcRom)
{
throw SonoException("CRC check error is happend.");
throw HardwareException(PROBE_CRC_ERROR, "CRC check error happend.");
}
}
@ -1974,7 +1972,7 @@ QByteArray TrxBoard::trxRomHeader() const
QByteArray header = (this->_bCtrlMngt->trxEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER));
if(headerArray != header)
{
throw SonoException("The header checksum of the TRX e2prom is corrupted.");
throw HardwareException(TRX_READ_FAILED, "The header checksum of the TRX e2prom corrupted.");
}
return header;
}
@ -2061,7 +2059,7 @@ QByteArray TrxBoard::mpsRomHeader() const
QByteArray header = (this->_bCtrlMngt->mpsEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER));
if(headerArray != header)
{
throw SonoException("The header checksum of the MPS e2prom is corrupted.");
throw HardwareException(MPS_READ_FAILED, "The header checksum of the MPS e2prom corrupted.");
}
return header;
}
@ -2148,7 +2146,7 @@ QByteArray TrxBoard::prbCtrlRomHeader() const
QByteArray header = (this->_bCtrlMngt->prbCtrlEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER));
if(headerArray != header)
{
throw SonoException("The header checksum of the relay e2prom is corrupted.");
throw HardwareException(RELAY_READ_FAILED, "The header checksum of the relay e2prom corrupted.");
}
return header;
}
@ -2219,22 +2217,22 @@ void TrxBoard::selectedPrbState(EepromStatus& romStatus, eSelectProbe prbSel) co
vec = this->_bCtrlMngt->getConnectedPrb();
if(prbSel == prbA && !vec.at(0))
{
throw SonoException("This probe is disconnected");
throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected.");
}
if(prbSel == prbB && !vec.at(1))
{
throw SonoException("This probe is disconnected");
throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected.");
}
if(prbSel == prbC && !vec.at(2))
{
throw SonoException("This probe is disconnected");
throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected.");
}
if(prbSel == prbD && !vec.at(3))
{
throw SonoException("This probe is disconnected");
throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected.");
}
romStatus.ConnectionMode = connected;
@ -2512,7 +2510,7 @@ void TrxBoard::setTrxFanRpm(const eFanPwm& fan, const quint8& dutyCyclePercent)
{
if(dutyCyclePercent > 100)
{
throw SonoException("Out of range for fan duty cycle.");
throw HardwareException(FAN_FAULT_DETECTED, "Out of range for fan duty cycle.");
}
this->_bCtrlMngt->setFanPwm(fan, dutyCyclePercent);
@ -2522,7 +2520,7 @@ void TrxBoard::setRegulatorSyncClk(const eRegSync& regType, const regulatorSync&
{
if(regSyncParams.halfPeriod > 8192)
{
throw SonoException("Out of range for PLL sync clk.");
throw HardwareException(TRX_READ_FAILED, "Out of range for PLL sync clk.");
}
this->_bCtrlMngt->setPllRefClk(regType, regSyncParams);
@ -2534,12 +2532,12 @@ void TrxBoard::mcsProgram(QString path)
if(mcsFile.fileName().isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(TRX_READ_FAILED, "No file has selected.");
}
if(!mcsFile.open(QIODevice::ReadOnly))
{
throw SonoException("Couldn't open BPI bin file programming");
throw HardwareException(TRX_READ_FAILED, "Couldn't open BPI bin file programming.");
}
QByteArray mcsFileData = mcsFile.readAll();
@ -2559,12 +2557,12 @@ void TrxBoard::spiFlashProgram(QString path)
if(binFile.fileName().isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(TRX_READ_FAILED, "No file has selected.");
}
if(!binFile.open(QIODevice::ReadOnly))
{
throw SonoException("Couldn't open SPI flash bin file programming");
throw HardwareException(TRX_READ_FAILED, "Couldn't open SPI flash bin file programming.");
}
bin = binFile.readAll();
@ -2583,12 +2581,12 @@ void TrxBoard::spiFlashRead(QString path)
if(path.isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(TRX_READ_FAILED, "No file has selected.");
}
if(!binFile.open(QIODevice::WriteOnly))
{
throw SonoException("Couldn't open SPI bin file programming");
throw HardwareException(TRX_READ_FAILED, "Couldn't open SPI bin file programming.");
}
binArray = this->_spiFlash->readBin();
@ -2794,12 +2792,12 @@ void TrxBoard::adcLoggerStart(const QString path, const QString fileName)
if(logPath.isEmpty())
{
throw SonoException("No file is selected");
throw HardwareException(AFE_ERROR, "No file has selected.");
}
if(!logFile.open(QIODevice::WriteOnly))
{
throw SonoException("Couldn't open file for logging");
throw HardwareException(AFE_ERROR, "Couldn't open file for logging.");
}
log << "SYNC Offset(ns): ";

39
src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp

@ -54,7 +54,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr,
busy = ((status->busy->getValue()) != 0);
if(checkTimeout())
{
throw SonoException("Eeprom writing timeout is happened due to the I2C busy");
throw HardwareException(TRX_READ_FAILED, "The e2prom writing timeout happened due to the I2C busy.");
}
}
@ -84,7 +84,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr,
error = ((status->reqError->getValue()) != 0);
if(checkTimeout())
{
throw SonoException("Eeprom writing is corrupted due to the failure to receive done");
throw HardwareException(TRX_READ_FAILED, "The e2prom writing corrupted due to the failure to receive done.");
}
}
@ -92,7 +92,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr,
if(error)
{
throw SonoException("Eeprom writing is corrupted due to the error occurrence");
throw HardwareException(TRX_READ_FAILED, "The e2prom writing timeout happened due to the error occurrence.");
}
}
}
@ -139,7 +139,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr,
busy = ((status->busy->getValue()) != 0);
if(checkTimeout())
{
throw SonoException("Eeprom reading timeout is happened due to the I2C busy");
throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the I2C busy.");
}
}
@ -161,7 +161,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr,
error = ((status->reqError->getValue()) != 0);
if(checkTimeout())
{
throw SonoException("Eeprom reading is corrupted due to the failure to receive done");
throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the failure to receive done.");
}
}
@ -169,7 +169,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr,
if(error)
{
throw SonoException("Eeprom reading is corrupted due to the error occurrence");
throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the error occurrence.");
}
rdArray.append(static_cast<qint8>(status->dataOut->getValue()));
@ -413,7 +413,7 @@ void BoardsCtrlMngt::getSupervisorI2cTimeout() const
{
if(checkTimeout())
{
throw SonoException("Supervisor request timeout is happened due to the MPS I2C busy");
throw HardwareException(MPS_READ_FAILED, "The supervisor request timeout happened due to the MPS I2C busy.");
}
}
timerStop();
@ -426,15 +426,14 @@ void BoardsCtrlMngt::getSupervisorI2cDone() const
{
if(checkTimeout())
{
throw SonoException(
"Supervisor request is corrupted due to the failure to receive MPS I2C done");
throw HardwareException(MPS_READ_FAILED, "The supervisor request corrupted due to the failure to receive MPS I2C done.");
}
}
timerStop();
if(getI2cCmdErr())
{
throw SonoException("Supervisor request is corrupted due to the MPS I2C error occurrence");
throw HardwareException(MPS_READ_FAILED, "The supervisor request corrupted due to the MPS I2C error occurrence.");
}
}
@ -666,7 +665,7 @@ float BoardsCtrlMngt::getMpsTempSensor() const
if(temp < 0x4000 || temp > 0xC000)
{
throw SonoException("The mps temp adc value is out of range.");
throw HardwareException(MPS_READ_FAILED, "The mps temperature A/D value is out of range.");
}
quint32 average = 16;
@ -835,7 +834,7 @@ void BoardsCtrlMngt::mpsHvSet(float& hva, float& hvb) const
}
else
{
throw SonoException("The hva must be greater than the hvb.");
throw HardwareException(MPS_HVA_HVB_CWD_ERROR, "The hva value must be greater than the hvb value.");
}
}
@ -929,7 +928,7 @@ QByteArray BoardsCtrlMngt::trxEepromRead(quint32 address, quint32 length)
{
if(address + length > TRX_ROM_MAX_LEN)
{
throw SonoException("Out of range reading from TRX eeprom ");
throw HardwareException(TRX_READ_FAILED, "Out of range reading from TRX e2prom.");
}
quint8 prbSel = 0;
@ -945,7 +944,7 @@ QByteArray BoardsCtrlMngt::mpsEepromRead(quint32 address, quint32 length)
{
if(address + length > MPS_ROM_MAX_LEN)
{
throw SonoException("Out of range reading from MPS eeprom ");
throw HardwareException(MPS_READ_FAILED, "Out of range reading from MPS e2prom.");
}
quint8 prbSel = 0;
@ -961,7 +960,7 @@ QByteArray BoardsCtrlMngt::prbCtrlEepromRead(quint32 address, quint32 length)
{
if(address + length > PRB_CTRL_ROM_MAX_LEN)
{
throw SonoException("Out of range reading from Probe Control eeprom ");
throw HardwareException(RELAY_READ_FAILED, "Out of range reading from probe control e2prom.");
}
quint8 prbSel = 0;
@ -977,7 +976,7 @@ QByteArray BoardsCtrlMngt::prbEepromRead(quint32 address, quint32 length, quint8
{
if(address + length > PRB_ROM_MAX_LEN)
{
throw SonoException("Out of range reading from Probe eeprom ");
throw HardwareException(PROBE_READ_FAILED, "Out of range reading from probe e2prom.");
}
return eepromRead<PrbEepromRwReq, PrbEepromRwStatus>(address,
@ -991,7 +990,7 @@ void trxEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards)
{
if(address + static_cast<quint32>(arr.size()) > TRX_ROM_MAX_LEN)
{
throw SonoException("Out of range writing into TRX eeprom ");
throw HardwareException(TRX_READ_FAILED, "Out of range writing into TRX e2prom.");
}
quint8 prbSel = 0;
@ -1006,7 +1005,7 @@ void mpsEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards)
{
if(address + static_cast<quint32>(arr.size()) > MPS_ROM_MAX_LEN)
{
throw SonoException("Out of range writing into MPS eeprom ");
throw HardwareException(MPS_READ_FAILED, "Out of range writing into MPS e2prom.");
}
quint8 prbSel = 0;
@ -1021,7 +1020,7 @@ void prbCtrlEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards)
{
if(address + static_cast<quint32>(arr.size()) > PRB_CTRL_ROM_MAX_LEN)
{
throw SonoException("Out of range writing into Probe Control eeprom ");
throw HardwareException(RELAY_READ_FAILED, "Out of range writing into probe control e2prom.");
}
quint8 prbSel = 0;
@ -1036,7 +1035,7 @@ void prbEepromWrite(QByteArray arr, quint32 address, quint8 prbSel, BoardsCtrlMn
{
if(address + static_cast<quint32>(arr.size()) > PRB_ROM_MAX_LEN)
{
throw SonoException("Out of range writing into Probe eeprom ");
throw HardwareException(PROBE_READ_FAILED, "Out of range writing into probe e2prom.");
}
boards->eepromWrite<PrbEepromRwReq, PrbEepromRwStatus>(arr,

10
src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp

@ -42,7 +42,7 @@ void BpiFlash::bpiClearStatus() const
statusReg &= 0xFF;
if (statusReg != BPI_NO_ERR_STATUS)
{
throw SonoException("The bpi clear status error is happened.");
throw HardwareException(TRX_READ_FAILED, "The bpi clear error happened.");
}
}
@ -79,7 +79,7 @@ void BpiFlash::bpiUnlock(quint16& blockOffset)
#else
if(checkTimeout())
{
throw SonoException("The bpi unlock error is happened.");
throw HardwareException(TRX_READ_FAILED, "The bpi unlock error happened.");
}
#endif
@ -126,7 +126,7 @@ void BpiFlash::bpiErase(quint16& blockOffset)
#else
if(checkTimeout())
{
throw SonoException("The bpi erase error is happened.");
throw HardwareException(TRX_READ_FAILED, "The bpi erase error happened.");
}
#endif
@ -157,7 +157,7 @@ void BpiFlash::bpiWrite(quint16& wrCount)
statusReg &= 0xFF;
if (statusReg != BPI_NO_ERR_STATUS)
{
throw SonoException("the bpi write command error is happened.");
throw HardwareException(TRX_READ_FAILED, "The bpi write command error happened.");
}
this->_device->device.writeShort(BAR_SRAM, BPI_START_OFFSET +
@ -193,7 +193,7 @@ void BpiFlash::bpiWriteCmplt(quint16& num)
#else
if(checkTimeout())
{
throw SonoException("The bpi write complete command error is happened.");
throw HardwareException(TRX_READ_FAILED, "The bpi write complete command error happened.");
}
#endif

2
src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp

@ -50,7 +50,7 @@ void BuiltInTest::biteDacMemoryWrite(const QByteArray& iData, const QByteArray&
{
this->_dacMemory->setTxDacMemory(iData, qData);
if (iData.size() != qData.size())
throw SonoException ("Unmatching The size of txDacI & txDacQ is happened.");
throw HardwareException(BITE_FAILED, "TX-DAC I and TX-DAC Q sizes didn't match.");
this->_dacMemory->updateArray(true, static_cast<quint16>(iData.size()));
}

2
src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp

@ -37,7 +37,7 @@ ClockDistributer::~ClockDistributer()
void ClockDistributer::clockMode(quint32 clkDiv, eClkMode mode)
{
if (!connectionCheck())
throw SonoException("Clock modifing is failed due to the disconnect of the clock distributer");
throw HardwareException(TRX_READ_FAILED, "Clock modifying failed due to connection problem to the clock distributer.");
while (!_cwModeStatus.getEepromClkDistDone());
while (_cwModeStatus.getSpiClkDistBusy());

7
src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp

@ -46,12 +46,11 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number)
if(_status->getInitFail())
{
throw SonoException("init fail happened");
throw HardwareException(SLAVE_PROG_FAILED, "Slave programming initialize failed.");
}
if(_status->getProgramTimeout())
{
throw SonoException(
"Timeout is happened and the programming of the slave FPGAs is failed");
throw HardwareException(SLAVE_PROG_FAILED, "Slave programming timeout happened.");
}
temp.clear();
@ -62,7 +61,7 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number)
if(_status->getProgramFail())
{
throw SonoException("programming was not successful");
throw HardwareException(SLAVE_PROG_FAILED, "Slave programming was not successful.");
}
}

6
src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp

@ -104,7 +104,7 @@ void SpiFlash::spiCheckPartNumber()
{
if(statusRegister.at(i) != flashID.at(i))
{
throw SonoException("The spi part number matching failed.");
throw HardwareException(TRX_READ_FAILED, "The spi part number matching failed.");
}
}
}
@ -150,7 +150,7 @@ void SpiFlash::spiWaitForReady(qint32 ms)
#else
if(checkTimeout())
{
throw SonoException("The spi wait for busy is timeouted.");
throw HardwareException(TRX_READ_FAILED, "The spi wait for busy has timeouted.");
}
#endif
}while(statusRegister[1] & 0x1);
@ -480,7 +480,7 @@ void SpiFlash::writeBin(QByteArray& bin, eSpiFlashMode writeMode)
break;
}
}
catch(SonoException& e)
catch(HardwareException& e)
{
qDebug() << e.what();
}

Loading…
Cancel
Save