pounder: also adapt to new hal

master
Robert Jördens 2021-02-03 13:25:00 +01:00
parent c5fde8563c
commit 672ddfa3c3
1 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ pub struct Timestamper {
timers::tim8::Channel1InputCapture,
PeripheralToMemory,
&'static mut [u16; SAMPLE_BUFFER_SIZE],
hal::dma::DBTransfer,
>,
}
@ -89,7 +90,7 @@ impl Timestamper {
input_capture.listen_dma();
// The data transfer is always a transfer of data from the peripheral to a RAM buffer.
let data_transfer: Transfer<_, _, PeripheralToMemory, _> =
let data_transfer: Transfer<_, _, PeripheralToMemory, _, _> =
Transfer::init(
stream,
input_capture,