mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-15 03:07:41 +00:00
Frequency manager empty file bugfix
This commit is contained in:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user