mirror of https://github.com/m-labs/artiq.git
satman: fix ddma reporting wrong destination
This commit is contained in:
parent
af77885dfc
commit
36b3678853
|
@ -113,7 +113,7 @@ fn process_aux_packet(_manager: &mut DmaManager, analyzer: &mut Analyzer, _repea
|
||||||
if let Some(status) = _manager.check_state() {
|
if let Some(status) = _manager.check_state() {
|
||||||
info!("playback done, error: {}, channel: {}, timestamp: {}", status.error, status.channel, status.timestamp);
|
info!("playback done, error: {}, channel: {}, timestamp: {}", status.error, status.channel, status.timestamp);
|
||||||
drtioaux::send(0, &drtioaux::Packet::DmaPlaybackStatus {
|
drtioaux::send(0, &drtioaux::Packet::DmaPlaybackStatus {
|
||||||
destination: *_rank, id: status.id, error: status.error, channel: status.channel, timestamp: status.timestamp })?;
|
destination: _destination, id: status.id, error: status.error, channel: status.channel, timestamp: status.timestamp })?;
|
||||||
} else {
|
} else {
|
||||||
let errors;
|
let errors;
|
||||||
unsafe {
|
unsafe {
|
||||||
|
|
Loading…
Reference in New Issue