mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-08 06:32:35 -04:00
Add new app "hopper" app. (#2482)
* make both jammer and hopper exist * add example hopper payload * example files * swap scanner and recon app location
This commit is contained in:
parent
9b352f45a2
commit
200f10397b
12 changed files with 720 additions and 19 deletions
|
@ -35,6 +35,13 @@ struct JammerChannel {
|
|||
uint32_t duration;
|
||||
};
|
||||
|
||||
struct HopperChannel {
|
||||
bool enabled;
|
||||
uint64_t center;
|
||||
uint32_t width;
|
||||
uint32_t duration;
|
||||
};
|
||||
|
||||
struct ToneDef {
|
||||
uint32_t delta;
|
||||
uint32_t duration;
|
||||
|
@ -61,7 +68,10 @@ struct SharedMemory {
|
|||
|
||||
union {
|
||||
ToneData tones_data;
|
||||
JammerChannel jammer_channels[24];
|
||||
struct {
|
||||
JammerChannel jammer_channels[24];
|
||||
HopperChannel hopper_channels[24];
|
||||
} dummy_seperate;
|
||||
uint8_t data[512];
|
||||
} bb_data{{{{0, 0}}, 0, {0}}};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue