Force DCD off when no audio is present. Update version to 1.1.4rc1.

fsk9600 v1.1.4rc1
Rob Riggs 2019-06-13 22:01:46 -05:00
rodzic 51d37b1b0e
commit 7f3af43192
2 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -90,9 +90,12 @@ struct BaseDigitalPLL
count_ -= sps_;
}
// Force lock off when no stimulus is present (squelch closed).
const float_type adjust = bits_ > 16 ? 5.0 : 0.0;
const float_type offset = count_ / bits_;
const float_type jitter = loop_filter_(offset);
const float_type abs_offset = std::abs(offset);
const float_type abs_offset = std::abs(offset) + adjust;
jitter_ = lock_filter_(abs_offset);
count_ -= jitter / 2;

Wyświetl plik

@ -26,7 +26,7 @@ int powerOffViaUSB(void)
namespace mobilinkd { namespace tnc { namespace kiss {
const char FIRMWARE_VERSION[] = "1.1.3";
const char FIRMWARE_VERSION[] = "1.1.4rc1";
const char HARDWARE_VERSION[] = "Mobilinkd TNC3 2.1.1";
Hardware& settings()