Skip to content

Commit dc87a91

Browse files
committed
bump ci
1 parent 23b39e6 commit dc87a91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/i2c.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ macro_rules! busy_wait {
136136
$i2c.icr().write(|w| w.arlocf().clear());
137137
return Err(Error::Arbitration);
138138
} else if isr.nackf().bit_is_set() {
139-
$i2c.icr()
140-
.write(|w| w.stopcf().clear().nackcf().clear());
139+
$i2c.icr().write(|w| w.stopcf().clear().nackcf().clear());
141140
flush_txdr!($i2c);
142141
return Err(Error::NotAcknowledge);
143142
} else {

0 commit comments

Comments
 (0)