From d4d5bf66e424e640d1100a15058734e8bf67c29d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sat, 4 Dec 2021 21:35:11 +0100 Subject: [PATCH] applied cargo fmt and fixed link --- README.md | 2 +- src/i2c.rs | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 263aee0..409eb6b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # HAL for the Vorago VA108xx MCU family This repository contains the **H**ardware **A**bstraction **L**ayer (HAL), which is an additional -hardware abstraction on top of the [peripheral access API](https://github.com/robamu-org/va108xx-rs). +hardware abstraction on top of the [peripheral access API](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs). It is the result of reading the datasheet for the device and encoding a type-safe layer over the raw PAC. This crate also implements traits specified by the diff --git a/src/i2c.rs b/src/i2c.rs index 2a8ce61..1405b3b 100644 --- a/src/i2c.rs +++ b/src/i2c.rs @@ -10,9 +10,7 @@ use crate::{ Sealed, }; use core::marker::PhantomData; -use embedded_hal::blocking::i2c::{ - Read, Write, WriteIter, WriteIterRead, WriteRead, -}; +use embedded_hal::blocking::i2c::{Read, Write, WriteIter, WriteIterRead, WriteRead}; pub use embedded_hal::blocking::i2c::{SevenBitAddress, TenBitAddress};