Files
ProtoPirate/protocols/keys.h
T
0mega 62b31bfe95 More Memory optimizations and new protocols
- 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)
2026-06-30 21:28:26 +02:00

28 lines
627 B
C

#pragma once
#include <stdbool.h>
#include <stdint.h>
#include <lib/subghz/environment.h>
#include <lib/subghz/subghz_keystore.h>
extern uint64_t kia_mf_key;
extern uint64_t kia_v6_a_key;
extern uint64_t kia_v6_b_key;
extern uint64_t kia_v5_key;
uint64_t get_kia_mf_key();
uint64_t get_kia_v6_keystore_a();
uint64_t get_kia_v6_keystore_b();
uint64_t get_kia_v5_key();
bool protopirate_keys_has_kia_mf_key(void);
bool protopirate_keys_has_kia_v6_keystore_a(void);
bool protopirate_keys_has_kia_v6_keystore_b(void);
bool protopirate_keys_has_kia_v5_key(void);
bool protopirate_keys_load(SubGhzEnvironment* environment);