mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-07-28 11:49:24 +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)
19 lines
553 B
C
19 lines
553 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct ProtoPirateApp ProtoPirateApp;
|
|
typedef struct ProtoPirateTxRx ProtoPirateTxRx;
|
|
|
|
void protopirate_unload_protocol_plugin(ProtoPirateTxRx* txrx);
|
|
bool protopirate_refresh_protocol_registry(ProtoPirateApp* app, bool ensure_receiver_ready);
|
|
bool protopirate_apply_protocol_registry_for_context(
|
|
ProtoPirateApp* app,
|
|
const char* preset_name,
|
|
uint32_t frequency,
|
|
const uint8_t* preset_data,
|
|
size_t preset_data_size,
|
|
const char* protocol_name);
|