mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-11 06:09:08 -07:00
21 lines
383 B
C
21 lines
383 B
C
#pragma once
|
|
|
|
#include "continuity.h"
|
|
#include "fastpair.h"
|
|
#include "swiftpair.h"
|
|
|
|
union BleSpamProtocolCfg {
|
|
ContinuityCfg continuity;
|
|
FastpairCfg fastpair;
|
|
SwiftpairCfg swiftpair;
|
|
};
|
|
|
|
extern const BleSpamProtocol* ble_spam_protocols[];
|
|
|
|
extern const size_t ble_spam_protocols_count;
|
|
|
|
typedef struct {
|
|
bool random_mac;
|
|
BleSpamProtocolCfg cfg;
|
|
} BleSpamPayload;
|