From 2b73d5a4c6f54a22b4e8cb76cf229ad0c54f924b Mon Sep 17 00:00:00 2001 From: occheung Date: Mon, 9 Sep 2024 17:28:14 +0800 Subject: [PATCH] drtio-proto: avoid expecting drop link ack response --- artiq/firmware/libproto_artiq/drtioaux_proto.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/libproto_artiq/drtioaux_proto.rs b/artiq/firmware/libproto_artiq/drtioaux_proto.rs index 19a6502af..9a0f423dc 100644 --- a/artiq/firmware/libproto_artiq/drtioaux_proto.rs +++ b/artiq/firmware/libproto_artiq/drtioaux_proto.rs @@ -946,7 +946,7 @@ impl Packet { Packet::DmaAddTraceReply { .. } | Packet::DmaRemoveTraceReply { .. } | Packet::DmaPlaybackReply { .. } | Packet::SubkernelLoadRunReply { .. } | Packet::SubkernelMessageAck { .. } | Packet::DmaPlaybackStatus { .. } | - Packet::SubkernelFinished { .. } => false, + Packet::SubkernelFinished { .. } | Packet::CoreMgmtDropLinkAck { .. } => false, _ => true } }