forked from M-Labs/artiq
runtime: hotswap slightly more carefully.
This generally lets some last characters out of UART, last ACKs out of queues, etc. Nothing guaranteed though.
This commit is contained in:
parent
4a9d8c9459
commit
8cece4f260
|
@ -82,9 +82,10 @@ fn worker(io: &Io, stream: &mut TcpStream) -> io::Result<()> {
|
||||||
},
|
},
|
||||||
|
|
||||||
Request::Hotswap(firmware) => {
|
Request::Hotswap(firmware) => {
|
||||||
|
warn!("hotswapping firmware");
|
||||||
Reply::RebootImminent.write_to(stream)?;
|
Reply::RebootImminent.write_to(stream)?;
|
||||||
stream.close()?;
|
stream.close()?;
|
||||||
warn!("hotswapping firmware");
|
stream.flush()?;
|
||||||
unsafe { board::boot::hotswap(&firmware) }
|
unsafe { board::boot::hotswap(&firmware) }
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue