Added deframer support
This commit is contained in:
+1
-2
@@ -4,5 +4,4 @@ at run time by using the `--config` flag.
|
||||
|
||||
## Formats Included
|
||||
* [CCSDS](ccsds.toml) - Standard CCSDS command/tlm packets
|
||||
* `ccsds`: CCSDS packet with primary header + raw payload
|
||||
* `ccsds_sec`: CCSDS packet with primary header + secondary header + raw payload
|
||||
* `ccsds`: CCSDS packet with primary header + raw payload
|
||||
@@ -0,0 +1,23 @@
|
||||
# Serial Line Internet Protocol Deframmer
|
||||
# Ref: https://datatracker.ietf.org/doc/html/rfc1055
|
||||
|
||||
[[deframers]]
|
||||
name = "slip"
|
||||
|
||||
[[deframers.operations]]
|
||||
operation = "StartSeq"
|
||||
start_seq = [0xC0]
|
||||
|
||||
[[deframers.operations]]
|
||||
operation = "StopSeq"
|
||||
stop_seq = [0xC0]
|
||||
|
||||
[[deframers.operations]]
|
||||
operation = "Replace"
|
||||
find = "\\xDB\\xDC"
|
||||
replace = [0xC0]
|
||||
|
||||
[[deframers.operations]]
|
||||
operation = "Replace"
|
||||
find = "\\xDB\\xDD"
|
||||
replace = [0xDB]
|
||||
Reference in New Issue
Block a user