forked from M-Labs/artiq
runtime: print destination up message for local RTIO
This commit is contained in:
parent
fa872c3341
commit
042b0065de
|
@ -208,7 +208,10 @@ pub mod drtio {
|
||||||
|
|
||||||
if hop == 0 {
|
if hop == 0 {
|
||||||
/* local RTIO */
|
/* local RTIO */
|
||||||
|
if !up_destinations[destination] {
|
||||||
|
info!("[DEST#{}] destination is up", destination);
|
||||||
up_destinations[destination] = true;
|
up_destinations[destination] = true;
|
||||||
|
}
|
||||||
} else if hop as usize <= csr::DRTIO.len() {
|
} else if hop as usize <= csr::DRTIO.len() {
|
||||||
let linkno = hop - 1;
|
let linkno = hop - 1;
|
||||||
if up_destinations[destination] {
|
if up_destinations[destination] {
|
||||||
|
|
Loading…
Reference in New Issue