From de8f8af3dd5f9b858343b38df8088b4ccbe98c81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Tue, 26 Nov 2024 14:57:20 +0800 Subject: [PATCH] drtio: add InjectionRequest to expects_response --- artiq/firmware/libproto_artiq/drtioaux_proto.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/artiq/firmware/libproto_artiq/drtioaux_proto.rs b/artiq/firmware/libproto_artiq/drtioaux_proto.rs index 4891bedf1..2883895a2 100644 --- a/artiq/firmware/libproto_artiq/drtioaux_proto.rs +++ b/artiq/firmware/libproto_artiq/drtioaux_proto.rs @@ -956,7 +956,8 @@ impl Packet { Packet::DmaAddTraceReply { .. } | Packet::DmaRemoveTraceReply { .. } | Packet::DmaPlaybackReply { .. } | Packet::SubkernelLoadRunReply { .. } | Packet::SubkernelMessageAck { .. } | Packet::DmaPlaybackStatus { .. } | - Packet::SubkernelFinished { .. } | Packet::CoreMgmtDropLinkAck { .. } => false, + Packet::SubkernelFinished { .. } | Packet::CoreMgmtDropLinkAck { .. } | + Packet::InjectionRequest { .. } => false, _ => true } }