mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-08 05:39:09 -07:00
18 lines
428 B
C
18 lines
428 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assets_icons.h>
|
|
#include "ble_spam_icons.h"
|
|
#include <furi_hal_random.h>
|
|
#include <core/core_defines.h>
|
|
|
|
typedef union BleSpamMsg BleSpamMsg;
|
|
|
|
typedef struct {
|
|
const Icon* icon;
|
|
const char* (*get_name)(const BleSpamMsg* _msg);
|
|
void (*make_packet)(uint8_t* out_size, uint8_t** out_packet, const BleSpamMsg* _msg);
|
|
} BleSpamProtocol;
|