|
|
@ -57,7 +57,7 @@ struct ConnectedPrbInfo |
|
|
|
struct ScenPrbDepHwRegister |
|
|
|
{ |
|
|
|
QList<Atgc> atgcLut; |
|
|
|
QList<QList<quint32>> apodizationLut; |
|
|
|
QList<QList<quint32> > apodizationLut; |
|
|
|
}; |
|
|
|
|
|
|
|
struct ScenPrbDepHardwareParam |
|
|
@ -92,6 +92,7 @@ struct ReceiverConfig |
|
|
|
quint32 subtractFilterEn; |
|
|
|
quint32 dcCancelEn; |
|
|
|
quint32 ncoFreqSel; |
|
|
|
quint32 dualPathEn; |
|
|
|
quint32 lpfSel; |
|
|
|
quint32 absEn; |
|
|
|
quint32 focusNo; |
|
|
@ -113,8 +114,8 @@ struct RxFreqResp |
|
|
|
QVector<float> freqStepLut; |
|
|
|
QVector<float> lpfWeightStepLut; |
|
|
|
QVector<float> startLpfWeightLut; |
|
|
|
QList<QList<quint32>> startLpf; |
|
|
|
QList<QList<quint32>> endLpf; |
|
|
|
QList<QList<quint32> > startLpf; |
|
|
|
QList<QList<quint32> > endLpf; |
|
|
|
QList<quint8> lpfScale; |
|
|
|
}; |
|
|
|
|
|
|
@ -138,6 +139,7 @@ struct ApodizationParameters |
|
|
|
struct HwRegister |
|
|
|
{ |
|
|
|
QVector<float> dtgcLut; |
|
|
|
QList<quint32> dualPathWeight; |
|
|
|
QVector<QVector<float> > blendWeight; |
|
|
|
QVector<float> elementXPosition; |
|
|
|
QVector<float> elementYPosition; |
|
|
@ -151,9 +153,9 @@ struct HwRegister |
|
|
|
QList<RxBeamFormer> rxBeamFormerProps; |
|
|
|
quint8 receiverConfigTypeNumber; |
|
|
|
QList<ReceiverConfig> receiverConfigProps; |
|
|
|
QList<QVector<quint32>> lpfLut; |
|
|
|
QList<QVector<quint32>> atgcLut; |
|
|
|
QList<QVector<quint32>> apodizationLut; |
|
|
|
QList<QVector<quint32> > lpfLut; |
|
|
|
QList<QVector<quint32> > atgcLut; |
|
|
|
QList<QVector<quint32> > apodizationLut; |
|
|
|
QList<quint32> mlaOffsetAddr; |
|
|
|
quint32 noiseRejectValue; |
|
|
|
quint32 frameLoggerControl; |
|
|
@ -230,4 +232,4 @@ struct ScenHardware |
|
|
|
HwSramTx txParams; |
|
|
|
}; |
|
|
|
|
|
|
|
#endif // TRXBOARDSTRUCTURES_H
|
|
|
|
#endif //TRXBOARDSTRUCTURES_H
|
|
|
|