mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-14 01:15:38 -04:00
Sync with Sharebrained's fw, only Xylos TX works for now
This commit is contained in:
parent
fdfa7c9776
commit
739956b42b
150 changed files with 17236 additions and 7875 deletions
|
@ -67,7 +67,7 @@ public:
|
|||
|
||||
TXDone = 20,
|
||||
Retune = 21,
|
||||
ReadyForSwitch = 22,
|
||||
XylosConfigure = 22,
|
||||
AFSKData = 23,
|
||||
ModuleID = 24,
|
||||
FIFOSignal = 25,
|
||||
|
@ -490,12 +490,16 @@ public:
|
|||
char md5_signature[16];
|
||||
};
|
||||
|
||||
class ReadyForSwitchMessage : public Message {
|
||||
class XylosConfigureMessage : public Message {
|
||||
public:
|
||||
ReadyForSwitchMessage(
|
||||
) : Message { ID::ReadyForSwitch }
|
||||
XylosConfigureMessage(
|
||||
const char data[]
|
||||
) : Message { ID::XylosConfigure }
|
||||
{
|
||||
memcpy(ccir_message, data, 21);
|
||||
}
|
||||
|
||||
char ccir_message[21];
|
||||
};
|
||||
|
||||
class RetuneMessage : public Message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue