mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -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;
|
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
|
//Amplitude AM
|
||||||
fltVal = fltNorm;
|
fltVal = fltNorm;
|
||||||
|
@ -43,7 +43,9 @@ public:
|
|||||||
enum ATVModulation {
|
enum ATVModulation {
|
||||||
ATV_FM1,
|
ATV_FM1,
|
||||||
ATV_FM2,
|
ATV_FM2,
|
||||||
ATV_AM
|
ATV_AM,
|
||||||
|
ATV_VAMU,
|
||||||
|
ATV_VAML
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ATVConfig
|
struct ATVConfig
|
||||||
|
@ -141,6 +141,16 @@
|
|||||||
<string>AM</string>
|
<string>AM</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>VAMU</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>VAML</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
Reference in New Issue
Block a user