Rename variable
This commit is contained in:
parent
11a5eac24d
commit
cc5270707e
|
@ -99,7 +99,7 @@ fn main() -> ! {
|
|||
|
||||
loop {
|
||||
use hal::i2c::peripheral::I2CEvent;
|
||||
let read_bytes = match i2c.next() {
|
||||
let potentially_read_bytes = match i2c.next() {
|
||||
None => None,
|
||||
Some(I2CEvent::Stop) => {
|
||||
info!("Stop");
|
||||
|
@ -133,7 +133,7 @@ fn main() -> ! {
|
|||
}
|
||||
};
|
||||
|
||||
read_bytes
|
||||
potentially_read_bytes
|
||||
.and_then(|bytes| parse_i2c_message(&bytes).ok())
|
||||
.map(|message| {
|
||||
if let I2CMessage::SpindleSpeed(duty) = message {
|
||||
|
|
Loading…
Reference in a new issue