From 49ed774c563c48f7a2a651ba16a572605b3fd78f Mon Sep 17 00:00:00 2001 From: Arash Aletayeb Date: Sat, 14 Dec 2024 16:34:25 +0330 Subject: [PATCH] Probe depend params api modified. --- developHw.pro.user | 2 +- hdf5Scenario/hdf5Scenario.cpp | 13 +++---- hdf5Scenario/hdf5Scenario.h | 1 - .../hardware/core/lowLevelApi/TrxBoard.h | 3 ++ .../TrxBoardUtils/PreProcessorDef.h | 2 +- .../TrxBoardUtils/TrxBoardStructures.h | 10 ++--- mainwindow.cpp | 1 - .../hardware/core/lowLevelApi/TrxBoard.cpp | 37 ++++++++++--------- 8 files changed, 34 insertions(+), 35 deletions(-) diff --git a/developHw.pro.user b/developHw.pro.user index 6b64bf5..5c7289c 100644 --- a/developHw.pro.user +++ b/developHw.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/hdf5Scenario/hdf5Scenario.cpp b/hdf5Scenario/hdf5Scenario.cpp index 079f042..b9cf32d 100644 --- a/hdf5Scenario/hdf5Scenario.cpp +++ b/hdf5Scenario/hdf5Scenario.cpp @@ -988,13 +988,10 @@ void Hdf5::scenarioRead(ScenHardware& scenParams) /**************** /registerParameters/hvb *****************/ datasetBranch("/registerParameters/hvb", floatArray); scenParams.hvb = floatArray[0]; -} -void Hdf5::prbDependParamsRead(ScenPrbDepHardwareParam& prbDepParams) -{ /**************** /registerParameters/apodizationLut ********************/ datasetBranch("/registerParameters/apodizationLut", floatArray); - prbDepParams.prbDepParams.apodizationLut.clear(); + scenParams.apodizationLut.clear(); QList tempApodization; for(quint32 i = 0; i < 4; i++) @@ -1004,7 +1001,7 @@ void Hdf5::prbDependParamsRead(ScenPrbDepHardwareParam& prbDepParams) { tempApodization.push_back(static_cast(floatArray[j + i * 3057])); } - prbDepParams.prbDepParams.apodizationLut.push_back(tempApodization); + scenParams.apodizationLut.push_back(tempApodization); } /************ /registerParameters/aTgcParameters/aTgcLut ****************/ @@ -1036,15 +1033,17 @@ void Hdf5::prbDependParamsRead(ScenPrbDepHardwareParam& prbDepParams) } /************** /registerParameters/aTgcParameters/aTgc ******************/ - prbDepParams.prbDepParams.atgcLut.clear(); + scenParams.atgcLut.clear(); for(qint8 i = 0; i < 4; i++) { Atgc atgcObj; atgcObj.clear(); atgcObj.atgcLut = atgcLut.at(i); atgcObj.atgcCompensateLut = atgcCompensationLut.at(i); - prbDepParams.prbDepParams.atgcLut.push_back(atgcObj); + scenParams.atgcLut.push_back(atgcObj); } + + } QVector Hdf5::stbRead() diff --git a/hdf5Scenario/hdf5Scenario.h b/hdf5Scenario/hdf5Scenario.h index 7c276de..c960b51 100644 --- a/hdf5Scenario/hdf5Scenario.h +++ b/hdf5Scenario/hdf5Scenario.h @@ -26,7 +26,6 @@ public: void hdf5Path (const string &h5Path); void scenarioRead (ScenHardware &scenParams); - void prbDependParamsRead (ScenPrbDepHardwareParam &prbDepParams); QVector stbRead (void); QVector lineFilterRead (void); diff --git a/include/model/hardware/core/lowLevelApi/TrxBoard.h b/include/model/hardware/core/lowLevelApi/TrxBoard.h index 730e838..6c033d8 100644 --- a/include/model/hardware/core/lowLevelApi/TrxBoard.h +++ b/include/model/hardware/core/lowLevelApi/TrxBoard.h @@ -147,6 +147,9 @@ private: quint32 scenarioStartIndex; quint32 scenarioEndIndex; + QList atgcLut; + QList > apodizationLut; + ScenHwRegister* hwRegister; SramIndex* indexParams; SramRx* rxParams; diff --git a/include/model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h b/include/model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h index ed2d061..2063672 100644 --- a/include/model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h +++ b/include/model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h @@ -2,6 +2,6 @@ #define PREPROCESSORDEF_H #define MPS_BOARD -#define DEVELOP_UI +//#define DEVELOP_UI #endif //PREPROCESSORDEF_H diff --git a/include/model/hardware/core/lowLevelApi/TrxBoardUtils/TrxBoardStructures.h b/include/model/hardware/core/lowLevelApi/TrxBoardUtils/TrxBoardStructures.h index 695801e..611bf2d 100644 --- a/include/model/hardware/core/lowLevelApi/TrxBoardUtils/TrxBoardStructures.h +++ b/include/model/hardware/core/lowLevelApi/TrxBoardUtils/TrxBoardStructures.h @@ -60,16 +60,9 @@ struct ConnectedPrbInfo QByteArray prbD; }; -struct ScenPrbDepHwRegister -{ - QList atgcLut; - QList > apodizationLut; -}; - struct ScenPrbDepHardwareParam { AfeConfig afeCfg; - ScenPrbDepHwRegister prbDepParams; }; struct Pulse @@ -233,6 +226,9 @@ struct ScenHardware quint8 frameType; float hva, hvb; + QList atgcLut; + QList > apodizationLut; + HwRegister hwRegister; HwSramIndex indexParams; HwSramRx rxParams; diff --git a/mainwindow.cpp b/mainwindow.cpp index 411f8b0..1d0e54a 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3078,7 +3078,6 @@ void MainWindow::setScenario(const QString& h5Path) hdf.hdf5Path(h5Path.toStdString()); hdf.scenarioRead(scenParams); - hdf.prbDependParamsRead(prbDepParams); prbDepParams.afeCfg = afeConfigObj; stbLut = hdf.stbRead(); diff --git a/src/model/hardware/core/lowLevelApi/TrxBoard.cpp b/src/model/hardware/core/lowLevelApi/TrxBoard.cpp index 48077c2..4bacb91 100644 --- a/src/model/hardware/core/lowLevelApi/TrxBoard.cpp +++ b/src/model/hardware/core/lowLevelApi/TrxBoard.cpp @@ -652,25 +652,9 @@ void TrxBoard::mcsRead(const QString path) const void TrxBoard::setProbeDependParams(ScenPrbDepHardwareParam& prbDepParams) { - /////////////////////////// DSP setting /////////////////////////// - if(prbDepParams.prbDepParams.apodizationLut.size() != APODIZATIONLUT_LUT_MAX) - { - throw HardwareException(SCN_ERROR, "Apodization lut is out of range."); - } - this->_beamFormerSlave0->apodizationLut(prbDepParams.prbDepParams.apodizationLut); - this->_beamFormerSlave1->apodizationLut(prbDepParams.prbDepParams.apodizationLut); - this->_beamFormerSlave2->apodizationLut(prbDepParams.prbDepParams.apodizationLut); - scenParamsFilling(set); - - if(prbDepParams.prbDepParams.atgcLut.size() != ATGC_LUT_MAX) - { - throw HardwareException(SCN_ERROR, "Atgc lut is out of range."); - } - this->_dsp->atgcLut(prbDepParams.prbDepParams.atgcLut); - /////////////////////////// AFE setting /////////////////////////// setAfeConfig(prbDepParams.afeCfg); - setAfesPwr(afePwrdnEnable); +// setAfesPwr(afePwrdnEnable); // setAfesFastPwr(afePwrdnEnable); } @@ -970,6 +954,18 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw) _scenParams->rxParams->rxR0CenterActiveElementNumber = scenGenHw.rxParams.rxR0CenterActiveElementNumber; + if(scenGenHw.apodizationLut.size() != APODIZATIONLUT_LUT_MAX) + { + throw HardwareException(SCN_ERROR, "Apodization lut is out of range."); + } + _scenParams->apodizationLut = scenGenHw.apodizationLut; + + if(scenGenHw.atgcLut.size() != ATGC_LUT_MAX) + { + throw HardwareException(SCN_ERROR, "Atgc lut is out of range."); + } + _scenParams->atgcLut = scenGenHw.atgcLut; + this->setScenario(_scenParams); } @@ -1152,6 +1148,13 @@ void TrxBoard::setScenario (ScenGenHardwareParam* _scenParams) this->_dsp->dualPathWeight(_scenParams->hwRegister->dualPathWeight); + this->_beamFormerSlave0->apodizationLut(_scenParams->apodizationLut); + this->_beamFormerSlave1->apodizationLut(_scenParams->apodizationLut); + this->_beamFormerSlave2->apodizationLut(_scenParams->apodizationLut); + scenParamsFilling(set); + + this->_dsp->atgcLut(_scenParams->atgcLut); + ///////////////////////////////// Sram setting /////////////////////////////// this->_sram->setSramIndex(_scenParams->totalTxShotNumber, _scenParams->indexParams);