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.
 
 

23 lines
597 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"
struct ScenGenHardwareOutput_t {
quint32 focusTypeNumber;
quint32 totalTxShotNumber;
QVector<quint8> rxBeamFormerNumber;
QVector<float> pulseInterval;
HwRegister_t hwRegister;
SramIndex_t indexParams;
SramRx_t rxParams;
SramTx_t txParams;
};
#endif //HARDWAREOUTPUT_H