pub trait DmaStream {
// Required methods
fn listen(&mut self, event: Event);
fn unlisten(&mut self, event: Event);
fn is_complete(&self) -> bool;
fn has_error(&self) -> bool;
fn reset(&mut self);
}Expand description
DMA stream peripheral
Required Methods§
Sourcefn is_complete(&self) -> bool
fn is_complete(&self) -> bool
Transfer is complete?