mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 16:01:14 -05:00
ATV Demod: added vestigial modes (VAMU, VAML) just switching to notmal AM for now
This commit is contained in:
parent
8bafb07795
commit
e061b5eb2c
@ -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;
|
||||
|
@ -43,7 +43,9 @@ public:
|
||||
enum ATVModulation {
|
||||
ATV_FM1,
|
||||
ATV_FM2,
|
||||
ATV_AM
|
||||
ATV_AM,
|
||||
ATV_VAMU,
|
||||
ATV_VAML
|
||||
};
|
||||
|
||||
struct ATVConfig
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user