forked from M-Labs/artiq-zynq
cargo fmt
This commit is contained in:
parent
b4cc072e8e
commit
844c083ee4
|
@ -153,7 +153,10 @@ mod remote_coremgmt {
|
|||
aux_mutex,
|
||||
linkno,
|
||||
routing_table,
|
||||
&Packet::CoreMgmtGetLogRequest { destination, clear: false },
|
||||
&Packet::CoreMgmtGetLogRequest {
|
||||
destination,
|
||||
clear: false,
|
||||
},
|
||||
timer,
|
||||
)
|
||||
.await?
|
||||
|
@ -228,12 +231,17 @@ mod remote_coremgmt {
|
|||
aux_mutex,
|
||||
linkno,
|
||||
routing_table,
|
||||
&Packet::CoreMgmtGetLogRequest { destination, clear: true },
|
||||
&Packet::CoreMgmtGetLogRequest {
|
||||
destination,
|
||||
clear: true,
|
||||
},
|
||||
timer,
|
||||
).await {
|
||||
)
|
||||
.await
|
||||
{
|
||||
Ok(Packet::CoreMgmtGetLogReply { last, length, data }) => {
|
||||
write_chunk(stream, &data[..length as usize]).await?;
|
||||
},
|
||||
}
|
||||
|
||||
_ => return Err(drtio::Error::UnexpectedReply.into()),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue