Merge pull request #341 from fossum/feature/adding-snap-values-to-calls

Added a couple snap values to the calls app.
This commit is contained in:
Erwin Ried 2021-04-19 10:04:07 +02:00 committed by GitHub
commit c19bcc17af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,12 +212,14 @@ private:
true
};
OptionsField options_snap {
{ 17 * 8, 15 * 8 },
7,
{
{ 17 * 8, 15 * 8 }, // Position
7, // Length
{ // Options
{ "25kHz ", 25000 },
{ "12.5kHz", 12500 },
{ "8.33kHz", 8333 }
{ "8.33kHz", 8333 },
{ "2.5kHz", 2500 },
{ "500Hz", 500 }
}
};