From 203f128b58a774f140c56bf6d21906160505720d Mon Sep 17 00:00:00 2001 From: Adam Macdonald <72780006+twokilohertz@users.noreply.github.com> Date: Fri, 28 Feb 2025 20:39:55 +0000 Subject: [PATCH] Leave TODO re: I2C freq. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e06c809..80a4d72 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,7 @@ async fn main(_spawner: Spawner) { let sda = peripherals.PIN_4; let scl = peripherals.PIN_5; - let i2c_config = embassy_rp::i2c::Config::default(); + let i2c_config = embassy_rp::i2c::Config::default(); // TODO: Frequency is 100 MHz by default, should be 400 MHz let i2c_bus = embassy_rp::i2c::I2c::new_blocking(peripherals.I2C0, scl, sda, i2c_config); embassy_time::Timer::after_millis(30).await; // SCD41 power-up delay