Files
ProtoPirate/protocols/protocol_items.c
T
RocketGod fbd32cfba4 Remove BMW and Fiat V0 protocol support since blocking other protocols
Deleted BMW and Fiat V0 protocol source and header files, and removed their registration from the protocol registry. Also updated the application version to 1.2. This change eliminates support for these protocols from the application since they were causing others to break.
2025-12-20 12:24:33 -08:00

19 lines
470 B
C

#include "protocol_items.h"
const SubGhzProtocol* protopirate_protocol_registry_items[] = {
&kia_protocol_v0,
&kia_protocol_v1,
&kia_protocol_v2,
&kia_protocol_v3_v4,
&kia_protocol_v5,
&ford_protocol_v0,
&subaru_protocol,
&suzuki_protocol,
&vw_protocol,
};
const SubGhzProtocolRegistry protopirate_protocol_registry = {
.items = protopirate_protocol_registry_items,
.size = COUNT_OF(protopirate_protocol_registry_items),
};