mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-13 12:12:16 -04:00
Using new CPLD data (fixes spectrum mirroring)
Scanner bugfix for wide ranges Added squelch parameter for NFM receiver Adjustment to Vumeter widget rendering
This commit is contained in:
parent
042d271a9f
commit
e2f0a03460
13 changed files with 105 additions and 54 deletions
|
@ -52,7 +52,7 @@ void AMConfig::apply() const {
|
|||
audio::set_rate(audio::Rate::Hz_12000);
|
||||
}
|
||||
|
||||
void NBFMConfig::apply() const {
|
||||
void NBFMConfig::apply(const uint8_t squelch_level) const {
|
||||
const NBFMConfigureMessage message {
|
||||
decim_0,
|
||||
decim_1,
|
||||
|
@ -60,7 +60,8 @@ void NBFMConfig::apply() const {
|
|||
2,
|
||||
deviation,
|
||||
audio_24k_hpf_300hz_config,
|
||||
audio_24k_deemph_300_6_config
|
||||
audio_24k_deemph_300_6_config,
|
||||
squelch_level
|
||||
};
|
||||
send_message(&message);
|
||||
audio::set_rate(audio::Rate::Hz_24000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue