Added module containing new register address representations, added chip mode init/reset

This commit is contained in:
Jonah Dahlquist 2019-08-08 12:11:13 -05:00 committed by Jonah Dahlquist
commit ce36644d9c
7 changed files with 43 additions and 9 deletions

View file

@ -46,8 +46,8 @@ impl<Spi: FullDuplex<u8>> ActiveBus for ActiveThreeWire<Spi> {
/// (address 29) AA
fn transfer_frame<'a>(
&mut self,
mut address: u16,
block: u8,
mut address: u16,
is_write: bool,
data: &'a mut [u8],
) -> Result<&'a mut [u8], nb::Error<Self::Error>> {