1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-04-30 03:14:01 -04:00

LoRa demod: added extra bandwidth and DE bits

This commit is contained in:
f4exb 2020-02-10 15:31:14 +01:00
parent c264b0913e
commit 315b8b68c1
2 changed files with 3 additions and 3 deletions

View File

@ -223,7 +223,7 @@
<number>0</number>
</property>
<property name="maximum">
<number>2</number>
<number>4</number>
</property>
<property name="pageStep">
<number>1</number>

View File

@ -24,8 +24,8 @@
#include "settings/serializable.h"
#include "lorademodsettings.h"
const int LoRaDemodSettings::bandwidths[] = {7813, 10417, 15625, 20833, 31250, 41667, 62500, 125000, 250000, 500000};
const int LoRaDemodSettings::nbBandwidths = 10;
const int LoRaDemodSettings::bandwidths[] = {2500, 7813, 10417, 15625, 20833, 31250, 41667, 62500, 125000, 250000, 500000};
const int LoRaDemodSettings::nbBandwidths = 11;
LoRaDemodSettings::LoRaDemodSettings() :
m_inputFrequencyOffset(0),