Updating docs

This commit is contained in:
Ryan Summers 2024-07-01 18:10:19 +02:00 committed by kellerkindt
commit ef2aac6d88

View file

@ -14,10 +14,12 @@ more popular ethernet modules on Arduino platforms.
## Embedded-HAL ## Embedded-HAL
Embedded-HAL is a standard set of traits meant to permit communication between MCU implementations and hardware drivers The [`embedded-hal`](https://docs.rs/embedded-hal/latest/embedded_hal/index.html) is a standard set
like this one. Any microcontroller that implements the of traits meant to permit communication between MCU implementations and hardware drivers like this
[`spi::FullDuplex<u8>`](https://docs.rs/embedded-hal/0.2.3/embedded_hal/spi/trait.FullDuplex.html) interface can use one. Any microcontroller that implements the
this driver. [`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 # Example Usage