correct spelling of the word "receive"

This commit is contained in:
Stefan Gehr 2024-02-03 14:56:31 +01:00
parent 88e7e1ceb9
commit b9d0069671
No known key found for this signature in database
5 changed files with 8 additions and 8 deletions
tests/rp/src/bin

View file

@ -80,7 +80,7 @@ async fn device_task(mut dev: i2c_slave::I2cSlave<'static, I2C1>) -> ! {
_ => panic!("Invalid write length {}", len),
},
Ok(i2c_slave::Command::WriteRead(len)) => {
info!("device recieved write read: {:x}", buf[..len]);
info!("device received write read: {:x}", buf[..len]);
match buf[0] {
0xC2 => {
let resp_buff = [0xD1, 0xD2, 0xD3, 0xD4];