Let start_write_repeated accept pointer instead of slice

This commit is contained in:
Rasmus Melchior Jacobsen
2022-12-23 15:40:09 +01:00
parent 662bb5797f
commit e9a2c4a9e3
4 changed files with 8 additions and 8 deletions

View File

@ -59,7 +59,7 @@ pub(crate) mod sealed {
unsafe fn start_write_repeated<W: super::Word>(
&mut self,
request: Request,
repeated: &[W; 1],
repeated: *const [W],
count: usize,
reg_addr: *mut W,
options: TransferOptions,
@ -246,7 +246,7 @@ mod transfers {
pub fn write_repeated<'a, W: Word>(
channel: impl Peripheral<P = impl Channel> + 'a,
request: Request,
repeated: &[W; 1],
repeated: *const [W],
count: usize,
reg_addr: *mut W,
) -> impl Future<Output = ()> + 'a {