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"?>
<!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>
<data>
<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/device/SonoDevice.h"
#include "QDebug"
class Register
{

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

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

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

@ -46,9 +46,9 @@ public:
QList<float> shotWeight);
static QVector<quint32> qntzr(QVector<float> data,
quint32 sign,
quint32 wordlength,
quint32 fractionalLength,
float sign,
float wordlength,
float fractionalLength,
float maxLevel,
bool integerOutput,
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");
}
_scenParams->hwRegister->apodizationParams.clear();
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,
quint32 sign,
quint32 wordLength,
quint32 fractionalLength,
float sign,
float wordLength,
float fractionalLength,
float maxLevel,
bool integerOutput,
bool useRound,

Loading…
Cancel
Save