ggwave : compute Tx amplitudes always

This commit is contained in:
Georgi Gerganov
2022-05-29 17:55:29 +03:00
parent cf7f474938
commit 3f9b100687
2 changed files with 23 additions and 39 deletions

View File

@@ -333,16 +333,6 @@ public:
int bytesPerTx; // number of bytes in a chunk of data
int nDataBitsPerTx() const { return 8*bytesPerTx; }
bool operator==(const TxProtocol & other) const {
return freqStart == other.freqStart &&
framesPerTx == other.framesPerTx &&
bytesPerTx == other.bytesPerTx;
}
bool operator!=(const TxProtocol & other) const {
return !(*this == other);
}
};
using RxProtocol = TxProtocol;