Skip to content

Commit

Permalink
Silence clippy for now...
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebraham committed Jul 8, 2024
1 parent 4923544 commit 3a3321f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esp-lp-hal/src/i2c.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//! # Inter-Integrated Circuit (I2C)

use esp32c6_lp::lp_i2c0::COMD;
#![allow(unused)] // TODO: Remove me when `embedded_hal::i2c::I2c` is implemented

use crate::pac::LP_I2C0;
use crate::pac::{lp_i2c0::COMD, LP_I2C0};

const LP_I2C_TRANS_COMPLETE_INT_ST_S: u32 = 7;
const LP_I2C_END_DETECT_INT_ST_S: u32 = 3;
Expand Down

0 comments on commit 3a3321f

Please sign in to comment.