mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
24 lines
632 B
Protocol Buffer
24 lines
632 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "arch/aeslanier/aeslanier.proto";
|
|
import "arch/amiga/amiga.proto";
|
|
import "arch/brother/brother.proto";
|
|
import "arch/c64/c64.proto";
|
|
import "arch/ibm/ibm.proto";
|
|
|
|
message DecoderProto {
|
|
optional double pulse_debounce_threshold = 1 [default = 0.30];
|
|
optional double bit_error_threshold = 2 [default = 0.40];
|
|
optional double clock_interval_bias = 3 [default = -0.02];
|
|
optional double minimum_clock_us = 4 [default = 0.75];
|
|
|
|
oneof format {
|
|
IBMInputProto ibm = 5;
|
|
BrotherInputProto brother = 6;
|
|
AesLanierInputProto aeslanier = 7;
|
|
AmigaInputProto amiga = 8;
|
|
Commodore64InputProto c64 = 9;
|
|
}
|
|
}
|
|
|