mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-27 08:46:01 -04:00
Added range file and range type to frequency manager (mainly for jammer)
Made MenuView use less widgets, hopefully preventing crashes with large lists Fixed M10 sonde crash on packet receive Updated about screen Updated binary
This commit is contained in:
parent
b38adf3769
commit
3d2dacaf29
18 changed files with 321 additions and 191 deletions
|
@ -43,10 +43,16 @@ enum freqman_error {
|
|||
ERROR_DUPLICATE
|
||||
};
|
||||
|
||||
enum freqman_entry_type {
|
||||
SINGLE = 0,
|
||||
RANGE
|
||||
};
|
||||
|
||||
struct freqman_entry {
|
||||
rf::Frequency value { 0 };
|
||||
std::string frequency_str { };
|
||||
rf::Frequency frequency_a { 0 };
|
||||
rf::Frequency frequency_b { 0 };
|
||||
std::string description { };
|
||||
freqman_entry_type type { };
|
||||
};
|
||||
|
||||
struct freqman_db {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue