Browse Source

Qntzr data type is changed to float.

Apodization params offset address is fixed.
Arash Aletayeb 2 years ago
parent
commit
3713fd35f7
  1. 2
      developHw.pro.user
  2. 1
      include/model/hardware/core/lowLevelApi/register/Register.h
  3. 2
      include/model/hardware/core/lowLevelApi/register/beamFormer/BeamFormer.h
  4. 6
      include/model/scenarioGenerator/core/general/Calculation.h
  5. 1
      src/model/hardware/core/lowLevelApi/TrxBoard.cpp
  6. 6
      src/model/scenarioGenerator/core/general/Calculation.cpp

2
developHw.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2022-11-09T15:38:19. --> <!-- Written by QtCreator 4.10.0, 2022-11-14T15:56:29. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

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

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

2
include/model/hardware/core/lowLevelApi/register/beamFormer/BeamFormer.h

@ -16,7 +16,7 @@
#include "registerDefinition/PulseLut.h" #include "registerDefinition/PulseLut.h"
#include "registerDefinition/AfeLut.h" #include "registerDefinition/AfeLut.h"
#define APODIZATION_PARAMS_OFFSET 0x8 #define APODIZATION_PARAMS_OFFSET 0x20
#define ELEMENT_POSITION_OFFSET 0x400 #define ELEMENT_POSITION_OFFSET 0x400
#define APODIZATION_OFFSET 0x4000 #define APODIZATION_OFFSET 0x4000

6
include/model/scenarioGenerator/core/general/Calculation.h

@ -46,9 +46,9 @@ public:
QList<float> shotWeight); QList<float> shotWeight);
static QVector<quint32> qntzr(QVector<float> data, static QVector<quint32> qntzr(QVector<float> data,
quint32 sign, float sign,
quint32 wordlength, float wordlength,
quint32 fractionalLength, float fractionalLength,
float maxLevel, float maxLevel,
bool integerOutput, bool integerOutput,
bool useRound = true, bool useRound = true,

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

@ -760,6 +760,7 @@ void TrxBoard::setScenario(ScenGenHardwareOutput_t& scenGenHw)
{ {
throw SonoException("Apodization parameters is out of range"); throw SonoException("Apodization parameters is out of range");
} }
_scenParams->hwRegister->apodizationParams.clear(); _scenParams->hwRegister->apodizationParams.clear();
foreach(auto temp, scenGenHw.hwRegister.apodizationParams) foreach(auto temp, scenGenHw.hwRegister.apodizationParams)
{ {

6
src/model/scenarioGenerator/core/general/Calculation.cpp

@ -274,9 +274,9 @@ QVector<QVector<float> > Calculation::blendCoeff(ScenGenUserParameters_t input,
*/ */
/*************************************************************************************************/ /*************************************************************************************************/
QVector<quint32> Calculation::qntzr(QVector<float> data, QVector<quint32> Calculation::qntzr(QVector<float> data,
quint32 sign, float sign,
quint32 wordLength, float wordLength,
quint32 fractionalLength, float fractionalLength,
float maxLevel, float maxLevel,
bool integerOutput, bool integerOutput,
bool useRound, bool useRound,

Loading…
Cancel
Save