From e19a70ed648b068c5fa5e97aeee0c4e8631b2eb2 Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Tue, 26 Nov 2024 13:23:50 +0800 Subject: [PATCH] drtio: add InjectionRequest to expects_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 a1b17e888..9579e3242 100644 --- a/artiq/firmware/libproto_artiq/drtioaux_proto.rs +++ b/artiq/firmware/libproto_artiq/drtioaux_proto.rs @@ -726,7 +726,7 @@ impl Packet { Packet::DmaAddTraceReply { .. } | Packet::DmaRemoveTraceReply { .. } | Packet::DmaPlaybackReply { .. } | Packet::SubkernelLoadRunReply { .. } | Packet::SubkernelMessageAck { .. } | Packet::DmaPlaybackStatus { .. } | - Packet::SubkernelFinished { .. } => false, + Packet::SubkernelFinished { .. } | Packet::InjectionRequest { .. } => false, _ => true } }