You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
688 B

#ifndef HARDWAREOUTPUT_H
#define HARDWAREOUTPUT_H
#include <QObject>
#include "model/scenarioGenerator/dto/hardware/HwScenarioDependent.h"
#include "model/scenarioGenerator/dto/hardware/SramIndex.h"
#include "model/scenarioGenerator/dto/hardware/SramRx.h"
#include "model/scenarioGenerator/dto/hardware/SramTx.h"
#include "model/hardware/core/register/afe/Afe.h"
struct ScenGenHardwareOutput_t {
quint32 focusTypeNumber;
quint32 totalTxShotNumber;
QList<quint8> rxBeamFormerNumber;
QVector<float> pulseInterval;
quint8 frameType;
HwRegister_t hwRegister;
SramIndex_t indexParams;
SramRx_t rxParams;
SramTx_t txParams;
};
#endif //HARDWAREOUTPUT_H