From 5f78f8d15cf85745df0d2615b99d74bd2dcbc056 Mon Sep 17 00:00:00 2001 From: Justin Beaurivage Date: Wed, 13 Nov 2024 15:25:48 -0500 Subject: [PATCH] Minor doc fix --- hal/src/async_hal/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/hal/src/async_hal/mod.rs b/hal/src/async_hal/mod.rs index 9143d962f5eb..7bda201ec145 100644 --- a/hal/src/async_hal/mod.rs +++ b/hal/src/async_hal/mod.rs @@ -129,8 +129,6 @@ //! //! loop { //! defmt::info!("Sending 0x00 to SPI device..."); -//! // This test is based on the BMP388 barometer. Feel free to use any I2C -//! // peripheral you have on hand. //! spi.write(&[0x00]).await.unwrap(); //! //! defmt::info!("Sent 0x00.");