Skip to content
Snippets Groups Projects
Unverified Commit bdeab642 authored by Erwin Ried's avatar Erwin Ried Committed by GitHub
Browse files

Update capture_app.cpp (#356)

parent 89b95eb1
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,12 @@ CaptureAppView::CaptureAppView(NavigationView& nav) { ...@@ -46,6 +46,12 @@ CaptureAppView::CaptureAppView(NavigationView& nav) {
&waterfall, &waterfall,
}); });
// Hack for initialization
// TODO: This should be included in a more global section so apps dont need to do it
receiver_model.set_sampling_rate(3072000);
receiver_model.set_baseband_bandwidth(1750000);
//-------------------
field_frequency.set_value(receiver_model.tuning_frequency()); field_frequency.set_value(receiver_model.tuning_frequency());
field_frequency.set_step(receiver_model.frequency_step()); field_frequency.set_step(receiver_model.frequency_step());
field_frequency.on_change = [this](rf::Frequency f) { field_frequency.on_change = [this](rf::Frequency f) {
...@@ -87,6 +93,14 @@ CaptureAppView::CaptureAppView(NavigationView& nav) { ...@@ -87,6 +93,14 @@ CaptureAppView::CaptureAppView(NavigationView& nav) {
} }
CaptureAppView::~CaptureAppView() { CaptureAppView::~CaptureAppView() {
// Hack for preventing halting other apps
// TODO: This should be also part of something global
receiver_model.set_sampling_rate(3072000);
receiver_model.set_baseband_bandwidth(1750000);
receiver_model.set_modulation(ReceiverModel::Mode::WidebandFMAudio);
// ----------------------------
receiver_model.disable(); receiver_model.disable();
baseband::shutdown(); baseband::shutdown();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment