mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-04 18:48:34 -04:00
Fix gcc warnings
This commit is contained in:
parent
1ac835260e
commit
2c9260d075
@ -144,8 +144,6 @@ void AISDemodSink::processOneSample(Complex &ci)
|
||||
bool scopeCRCInvalid = false;
|
||||
Real dcOffset = 0.0f;
|
||||
bool thresholdMet = false;
|
||||
Real peakFreq = 0.0f;
|
||||
Real freqOffset = 0.0f;
|
||||
if (m_rxBufCnt >= m_rxBufLength)
|
||||
{
|
||||
Real trainingSum = 0.0f;
|
||||
|
@ -115,7 +115,7 @@ public:
|
||||
private:
|
||||
std::vector<Real> m_taps;
|
||||
std::vector<Type> m_samples;
|
||||
int m_ptr;
|
||||
unsigned int m_ptr;
|
||||
};
|
||||
|
||||
#endif // INCLUDE_GAUSSIAN_H
|
||||
|
@ -118,7 +118,7 @@ QString AISMessage::typeToString(quint8 type)
|
||||
return "N/A";
|
||||
} else if ((type >= 100) && (type < 199)) {
|
||||
return "Preserved for regional use";
|
||||
} else if ((type >= 200) && (type <= 255)) {
|
||||
} else if (type >= 200) {
|
||||
return "Preserved for future use";
|
||||
} else if ((type >= 50) && (type <= 59)) {
|
||||
const QStringList specialCrafts = {
|
||||
@ -267,7 +267,7 @@ QString AISMessage::getString(const QByteArray ba, int byteIdx, int bitsLeft, in
|
||||
AISPositionReport::AISPositionReport(QByteArray ba) :
|
||||
AISMessage(ba)
|
||||
{
|
||||
m_status = ((ba[4] & 0x3) << 2) | (ba[5] >> 6) & 0x3;
|
||||
m_status = ((ba[4] & 0x3) << 2) | ((ba[5] >> 6) & 0x3);
|
||||
|
||||
int rateOfTurn = ((ba[5] << 2) & 0xfc) | ((ba[6] >> 6) & 0x3);
|
||||
if (rateOfTurn == 127) {
|
||||
|
Loading…
Reference in New Issue
Block a user