add first integration of direwolf for aprs

This commit is contained in:
Jakob Ketterl
2019-06-07 15:11:04 +02:00
parent 0c59caa230
commit f49086a527
6 changed files with 2348 additions and 4 deletions

View File

@ -102,6 +102,9 @@
<div class="openwebrx-button openwebrx-demodulator-button" id="openwebrx-button-ysf"
style="display:none;" data-feature="digital_voice_digiham"
onclick="demodulator_analog_replace('ysf');">YSF</div>
<div class="openwebrx-button openwebrx-demodulator-button" id="openwebrx-button-packet"
style="display:none;" data-feature="packet"
onclick="demodulator_analog_replace('packet');">Packet</div>
</div>
<div class="openwebrx-panel-line">
<div class="openwebrx-button openwebrx-demodulator-button" id="openwebrx-button-dig" onclick="demodulator_digital_replace_last();">DIG</div>

2322
htdocs/libmbe.js Normal file

File diff suppressed because it is too large Load Diff

BIN
htdocs/libmbe.wasm Normal file

Binary file not shown.

View File

@ -443,6 +443,11 @@ function demodulator_default_analog(offset_frequency,subtype)
{
this.low_cut=-3250;
this.high_cut=3250;
}
else if(subtype=="packet")
{
this.low_cut=-4000;
this.high_cut=4000;
}
else if(subtype=="am")
{