Skip to content

Commit ad146a0

Browse files
committed
HRTIM - Fix some errors due to new pac
1 parent 849e484 commit ad146a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/hrtim/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,19 +362,19 @@ macro_rules! hrtim_finalize_body {
362362
$tim.$timXcr().modify(|_r, w| w
363363
.tx_rstu().set_bit()
364364
.preen().set_bit()
365-
)
365+
);
366366
},
367367
Some(PreloadSource::OnMasterTimerUpdate) => {
368368
$tim.$timXcr().modify(|_r, w| w
369369
.mstu().set_bit()
370370
.preen().set_bit()
371-
)
371+
);
372372
}
373373
Some(PreloadSource::OnRepetitionUpdate) => {
374374
$tim.$timXcr().modify(|_r, w| w
375375
.tx_repu().set_bit()
376376
.preen().set_bit()
377-
)
377+
);
378378
}
379379
None => ()
380380
}
@@ -386,7 +386,7 @@ macro_rules! hrtim_finalize_body {
386386
$tim.$timXcr().modify(|_r, w| w
387387
.mrepu().set_bit()
388388
.preen().set_bit()
389-
)
389+
);
390390
}
391391
None => ()
392392
}

0 commit comments

Comments
 (0)