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.
24 lines
597 B
24 lines
597 B
4 years ago
|
#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
|