From ef2aac6d8859fc4e4c4db56e4034bce7a578a306 Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 1 Jul 2024 18:10:19 +0200 Subject: [PATCH] Updating docs --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a813a7..4a1a3be 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,12 @@ more popular ethernet modules on Arduino platforms. ## Embedded-HAL -Embedded-HAL is a standard set of traits meant to permit communication between MCU implementations and hardware drivers -like this one. Any microcontroller that implements the -[`spi::FullDuplex`](https://docs.rs/embedded-hal/0.2.3/embedded_hal/spi/trait.FullDuplex.html) interface can use -this driver. +The [`embedded-hal`](https://docs.rs/embedded-hal/latest/embedded_hal/index.html) is a standard set +of traits meant to permit communication between MCU implementations and hardware drivers like this +one. Any microcontroller that implements the +[`spi::SpiDevice`](https://docs.rs/embedded-hal/latest/embedded_hal/spi/trait.SpiDevice.html) or +[`spi::SpiBus`](https://docs.rs/embedded-hal/latest/embedded_hal/spi/trait.SpiBus.html) can use this +driver. # Example Usage