mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-03 12:06:52 -04:00
Renamed parameters in rx_capture.ini file (#2452)
* Rename settings in file to match screen * Renamed variables for hopefully better clarity
This commit is contained in:
parent
57ce978bab
commit
01034af077
2 changed files with 17 additions and 18 deletions
|
@ -49,9 +49,9 @@ class CaptureAppView : public View {
|
|||
private:
|
||||
static constexpr ui::Dim header_height = 3 * 16;
|
||||
|
||||
uint32_t previous_bandwidth{500000};
|
||||
uint32_t previous_format{0};
|
||||
bool previous_trim{false};
|
||||
uint32_t capture_rate{500000};
|
||||
uint32_t file_format{0};
|
||||
bool trim{false};
|
||||
|
||||
NavigationView& nav_;
|
||||
RxRadioState radio_state_{ReceiverModel::Mode::Capture};
|
||||
|
@ -59,9 +59,9 @@ class CaptureAppView : public View {
|
|||
"rx_capture",
|
||||
app_settings::Mode::RX,
|
||||
{
|
||||
{"previous_bandwidth"sv, &previous_bandwidth},
|
||||
{"previous_format"sv, &previous_format},
|
||||
{"previous_trim"sv, &previous_trim},
|
||||
{"capture_rate"sv, &capture_rate},
|
||||
{"file_format"sv, &file_format},
|
||||
{"trim"sv, &trim},
|
||||
}};
|
||||
|
||||
Labels labels{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue