mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-13 00:45:42 -04:00
parent
a8cdde7bea
commit
415d8cfa54
4 changed files with 6 additions and 6 deletions
|
@ -91,7 +91,7 @@ private:
|
|||
FrequencyField field_frequency {
|
||||
{ 0 * 8, 0 * 8 },
|
||||
};
|
||||
NumberField field_volume{
|
||||
NumberField field_volume {
|
||||
{ 28 * 8, 0 * 16 },
|
||||
2,
|
||||
{ 0, 99 },
|
||||
|
|
|
@ -98,7 +98,7 @@ AFSKRxView::AFSKRxView(NavigationView& nav) {
|
|||
};
|
||||
};
|
||||
|
||||
check_log.set_value(logging);
|
||||
check_log.set_value(logging);
|
||||
check_log.on_select = [this](Checkbox&, bool v) {
|
||||
logging = v;
|
||||
};
|
||||
|
@ -165,7 +165,7 @@ void AFSKRxView::on_data(uint32_t value, bool is_data) {
|
|||
}
|
||||
prev_value = value;
|
||||
}
|
||||
else {
|
||||
else {
|
||||
// Baudrate estimation
|
||||
text_debug.set("Baudrate estimation: ~" + to_string_dec_uint(value));
|
||||
}
|
||||
|
|
|
@ -86,14 +86,14 @@ private:
|
|||
{ 0 * 8, 0 * 16 },
|
||||
};
|
||||
|
||||
Checkbox check_log {
|
||||
Checkbox check_log {
|
||||
{ 0 * 8, 1 * 16 },
|
||||
3,
|
||||
"LOG",
|
||||
false
|
||||
};
|
||||
|
||||
Text text_debug {
|
||||
Text text_debug {
|
||||
{ 0 * 8, 12 + 2 * 16, 240, 16 },
|
||||
"DEBUG"
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue