POCSAG address filter now ignores alpha messages

Experimenting with FIFOs for replay...
This commit is contained in:
furrtek 2017-04-19 22:05:16 +01:00
parent a053c0e234
commit 40b49e2072
20 changed files with 120 additions and 69 deletions

View file

@ -29,7 +29,6 @@
using namespace portapack;
#include "portapack_persistent_memory.hpp"
using namespace portapack;
namespace ui {
@ -46,14 +45,14 @@ ReplayAppView::ReplayAppView(
return;
}
//baseband::run_image(portapack::spi_flash::image_tag_replay);
baseband::run_image(portapack::spi_flash::image_tag_replay);
add_children({
&field_frequency,
&field_frequency_step,
&field_rf_amp,
&replay_view,
&waterfall,
//&waterfall,
});
replay_view.set_file_list(file_list);
@ -91,16 +90,17 @@ ReplayAppView::~ReplayAppView() {
void ReplayAppView::on_hide() {
// TODO: Terrible kludge because widget system doesn't notify Waterfall that
// it's being shown or hidden.
waterfall.on_hide();
//waterfall.on_hide();
View::on_hide();
}
void ReplayAppView::set_parent_rect(const Rect new_parent_rect) {
/*void ReplayAppView::set_parent_rect(const Rect new_parent_rect) {
View::set_parent_rect(new_parent_rect);
const ui::Rect waterfall_rect { 0, header_height, new_parent_rect.width(), static_cast<ui::Dim>(new_parent_rect.height() - header_height) };
waterfall.set_parent_rect(waterfall_rect);
}
}*/
void ReplayAppView::focus() {
field_frequency.focus();