mirror of
https://protopirate.net/ProtoPirate/ProtoPirate.git
synced 2026-07-02 02:21:38 +00:00
62b31bfe95
- 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)
17 lines
454 B
C
17 lines
454 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
const char* name;
|
|
uint32_t te_short;
|
|
uint32_t te_long;
|
|
uint32_t te_delta;
|
|
uint32_t min_count_bit;
|
|
} ProtoPirateProtocolTiming;
|
|
|
|
const ProtoPirateProtocolTiming* protopirate_get_protocol_timing(const char* protocol_name);
|
|
const ProtoPirateProtocolTiming* protopirate_get_protocol_timing_by_index(size_t index);
|
|
size_t protopirate_get_protocol_timing_count(void);
|