Skip to content

Commit

Permalink
Ugly hack no longer needed
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed May 24, 2024
1 parent a2d8e27 commit a4ac02f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cir/src/bin/commands/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ pub fn decode(global: &crate::App, decode: &crate::Decode) {
}
}

for (protocol_no, protocol) in irp_protocols_xml.iter().enumerate().filter(|(_, e)| {
e.decodable && e.irp != "{38.4k,msb,564}<1,-1|1,-3>(16,-8,data:length,-50m) "
}) {
for (protocol_no, protocol) in irp_protocols_xml
.iter()
.enumerate()
.filter(|(_, e)| e.decodable)
{
log::debug!("decoding IRP: {} {}", protocol.name, protocol.irp);

let irp = match Irp::parse(&protocol.irp) {
Expand Down

0 comments on commit a4ac02f

Please sign in to comment.