mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-13 10:38:35 -07:00
14 lines
239 B
C
14 lines
239 B
C
#pragma once
|
|
|
|
#include "continuity.h"
|
|
#include "fastpair.h"
|
|
|
|
union BleSpamMsg {
|
|
ContinuityMsg continuity;
|
|
FastpairMsg fastpair;
|
|
};
|
|
|
|
extern const BleSpamProtocol* ble_spam_protocols[];
|
|
|
|
extern const size_t ble_spam_protocols_count;
|