mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-25 01:38:11 -07:00
68baeff45a
Co-authored-by: Spooks <62370103+Spooks4576@users.noreply.github.com>
16 lines
290 B
C
16 lines
290 B
C
#pragma once
|
|
|
|
#include "continuity.h"
|
|
#include "fastpair.h"
|
|
#include "swiftpair.h"
|
|
|
|
union BleSpamMsg {
|
|
ContinuityMsg continuity;
|
|
FastpairMsg fastpair;
|
|
SwiftpairMsg swiftpair;
|
|
};
|
|
|
|
extern const BleSpamProtocol* ble_spam_protocols[];
|
|
|
|
extern const size_t ble_spam_protocols_count;
|