ATV Demod: added vestigial modes (VAMU, VAML) just switching to notmal AM for now

This commit is contained in:
f4exb 2017-03-17 09:29:09 +01:00
parent 8bafb07795
commit e061b5eb2c
3 changed files with 14 additions and 2 deletions

View File

@ -223,7 +223,7 @@ void ATVDemod::feed(const SampleVector::const_iterator& begin, const SampleVecto
m_fltBufferQ[0]=fltNormQ;
}
else if (m_objRunning.m_enmModulation == ATV_AM)
else if ((m_objRunning.m_enmModulation == ATV_AM) || (m_objRunning.m_enmModulation == ATV_VAMU) || (m_objRunning.m_enmModulation == ATV_VAML))
{
//Amplitude AM
fltVal = fltNorm;

View File

@ -43,7 +43,9 @@ public:
enum ATVModulation {
ATV_FM1,
ATV_FM2,
ATV_AM
ATV_AM,
ATV_VAMU,
ATV_VAML
};
struct ATVConfig

View File

@ -141,6 +141,16 @@
<string>AM</string>
</property>
</item>
<item>
<property name="text">
<string>VAMU</string>
</property>
</item>
<item>
<property name="text">
<string>VAML</string>
</property>
</item>
</widget>
</item>
<item>