mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-13 17:05:37 -04:00
Frequency manager empty file bugfix
This commit is contained in:
parent
c8e71bcdee
commit
0642d633c3
15 changed files with 133 additions and 54 deletions
|
@ -706,13 +706,19 @@ public:
|
|||
class JammerConfigureMessage : public Message {
|
||||
public:
|
||||
constexpr JammerConfigureMessage(
|
||||
const bool run
|
||||
const bool run,
|
||||
const uint32_t type,
|
||||
const uint32_t speed
|
||||
) : Message { ID::JammerConfigure },
|
||||
run(run)
|
||||
run(run),
|
||||
type(type),
|
||||
speed(speed)
|
||||
{
|
||||
}
|
||||
|
||||
const bool run;
|
||||
const uint32_t type;
|
||||
const uint32_t speed;
|
||||
};
|
||||
|
||||
class DTMFTXConfigMessage : public Message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue