mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-08-22 17:29:43 +00:00
- Split RX registries into more plugins: AM, AM VAG, FM, FM F4, and FM Honda1 - Add per-protocol TX plugins so emulation loads only the selected encoder - Sub Decode (enabled by default) and Timing Tuner as plugins - Max history increased to 20 signals - Fix Sub Decode and simplified UI - Add Check Saved setting ported from dexter_pester PR ! - Fix Fiat V1 decoder and add HITAG2 key TX support - Add Renault V0, Fiat V2, Honda V2, Ford V3 (& US variant) Thanks Ash Sorry this is a lot at once x)
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
#include "../protopirate_protocol_plugins.h"
|
|
#include "../protocols_common.h"
|
|
#include "../vag.h"
|
|
|
|
static const SubGhzProtocol* const protopirate_protocol_registry_am_vag_items[] = {
|
|
&vag_protocol,
|
|
};
|
|
|
|
static const SubGhzProtocolRegistry protopirate_protocol_registry_am_vag = {
|
|
.items = protopirate_protocol_registry_am_vag_items,
|
|
.size = sizeof(protopirate_protocol_registry_am_vag_items) /
|
|
sizeof(protopirate_protocol_registry_am_vag_items[0]),
|
|
};
|
|
|
|
static const ProtoPirateProtocolPlugin protopirate_am_vag_plugin = {
|
|
.plugin_name = "ProtoPirate AM VAG Registry",
|
|
.kind = ProtoPirateProtocolPluginKindRx,
|
|
.route = ProtoPirateProtocolRegistryRouteAMVag,
|
|
.registry = &protopirate_protocol_registry_am_vag,
|
|
.release = NULL,
|
|
};
|
|
|
|
static const FlipperAppPluginDescriptor protopirate_am_vag_plugin_descriptor = {
|
|
.appid = PROTOPIRATE_PROTOCOL_PLUGIN_APP_ID,
|
|
.ep_api_version = PROTOPIRATE_PROTOCOL_PLUGIN_API_VERSION,
|
|
.entry_point = &protopirate_am_vag_plugin,
|
|
};
|
|
|
|
const FlipperAppPluginDescriptor* protopirate_am_vag_plugin_ep(void) {
|
|
return &protopirate_am_vag_plugin_descriptor;
|
|
}
|