Improve low band signal reception (FM Radio Station Audio tests) (#3048)

* Added PRO button to analog_audio.cpp for debugging metallic ringing sounds in Audio app. Ensured consitency to 4MHz in analog_audio.cpp

* Restored blutooth after loss.

* Added several sampling rates to analog_audio for testing.

* Ran format-code.sh
This commit is contained in:
stafur
2026-02-25 03:29:21 -05:00
committed by GitHub
parent 16c4c28584
commit cd7c412aa4
3 changed files with 87 additions and 1 deletions
+4
View File
@@ -81,7 +81,11 @@ class WidebandFMAudio : public BasebandProcessor {
void on_message(const Message* const message) override;
private:
#ifdef PRALINE
static constexpr size_t baseband_fs = 2000000;
#else
static constexpr size_t baseband_fs = 3072000;
#endif
static constexpr auto spectrum_rate_hz = 50.0f;
std::array<complex16_t, 512> dst{};