mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-12-06 09:01:57 +00:00
Dynamic baseband module loading from SD card
This commit is contained in:
@@ -49,6 +49,7 @@ public:
|
||||
TXDone = 9,
|
||||
SDCardStatus = 10,
|
||||
Retune = 11,
|
||||
ReadyForSwitch = 12,
|
||||
MAX
|
||||
};
|
||||
|
||||
@@ -265,6 +266,17 @@ public:
|
||||
int n = 0;
|
||||
};
|
||||
|
||||
class ReadyForSwitchMessage : public Message {
|
||||
public:
|
||||
ReadyForSwitchMessage(
|
||||
bool ok
|
||||
) : Message { ID::ReadyForSwitch }
|
||||
{
|
||||
}
|
||||
|
||||
const bool ok = false;
|
||||
};
|
||||
|
||||
class RetuneMessage : public Message {
|
||||
public:
|
||||
RetuneMessage(
|
||||
|
||||
Reference in New Issue
Block a user