mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-05-13 19:03:08 +00:00
3612385fcc
More shared helpers in protocols_commons Storage and history improvements Add Chrysler V0, Ford V2 (simple replay encoder), Land Rover V0 Fix Fiat V0, Subaru & Kia V5
15 lines
426 B
C
15 lines
426 B
C
#pragma once
|
|
|
|
#include <lib/flipper_application/flipper_application.h>
|
|
#include <lib/subghz/types.h>
|
|
#include "protocol_items.h"
|
|
|
|
#define PROTOPIRATE_PROTOCOL_PLUGIN_APP_ID "protopirate_protocol_plugins"
|
|
#define PROTOPIRATE_PROTOCOL_PLUGIN_API_VERSION 1U
|
|
|
|
typedef struct {
|
|
const char* plugin_name;
|
|
ProtoPirateProtocolRegistryFilter filter;
|
|
const SubGhzProtocolRegistry* registry;
|
|
} ProtoPirateProtocolPlugin;
|