2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-07 17:43:34 +08:00

drtio: add InjectionRequest to expects_response

This commit is contained in:
Sébastien Bourdeauducq 2024-11-26 14:57:20 +08:00
parent 145a973213
commit de8f8af3dd

View File

@ -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
}
}