From 97999343fd6354abd66ff3a0e27c9d6aa9814120 Mon Sep 17 00:00:00 2001 From: Theo Hussey Date: Thu, 6 Feb 2020 23:10:53 +0000 Subject: [PATCH] added parallel gpio interface --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 29808ea..05ce995 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,6 +13,8 @@ use core::iter::IntoIterator; pub mod spi; use spi::SpiInterface; +pub mod gpio; + /// Trait representing the interface to the hardware. /// /// Intended to abstract the various buses (SPI, MPU 8/9/16-bit) from the Controller code.