aboutsummaryrefslogtreecommitdiff
path: root/embassy-embedded-hal/src/shared_bus/blocking/spi.rs
blob: cf9b55db9241818efd16e15eb637835f5ee23f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! Blocking shared SPI bus
use core::cell::RefCell;

use embassy::blocking_mutex::raw::RawMutex;
use embassy::blocking_mutex::Mutex;
use embedded_hal_1::digital::blocking::OutputPin;
use embedded_hal_1::spi;
use embedded_hal_1::spi::blocking::{SpiBusFlush, SpiDevice};

use crate::shared_bus::spi::SpiBusDeviceError;

pub struct SpiBusDevice<'a, M: RawMutex, BUS, CS> {
    bus: &'a Mutex<M, RefCell<BUS>>,
    cs: CS,
}

impl<'a, M: RawMutex, BUS, CS> SpiBusDevice<'a, M, BUS, CS> {
    pub fn new(bus: &'a Mutex<M, RefCell<BUS>>, cs: CS) -> Self {
        Self { bus, cs }
    }
}

impl<'a, M: RawMutex, BUS, CS> spi::ErrorType for SpiBusDevice<'a, M, BUS, CS>
where
    BUS: spi::ErrorType,
    CS: OutputPin,
{
    type Error = SpiBusDeviceError<BUS::Error, CS::Error>;
}

impl<BUS, M, CS> SpiDevice for SpiBusDevice<'_, M, BUS, CS>
where
    M: RawMutex,
    BUS: SpiBusFlush,
    CS: OutputPin,
{
    type Bus = BUS;

    fn transaction<R>(&mut self, f: impl FnOnce(&mut Self::Bus) -> Result<R, BUS::Error>) -> Result<R, Self::Error> {
        self.cs.set_low().map_err(SpiBusDeviceError::Cs)?;

        let (f_res, flush_res) = self.bus.lock(|bus| {
            let mut bus = bus.borrow_mut();
            let f_res = f(&mut bus);
            // On failure, it's important to still flush and deassert CS.
            let flush_res = bus.flush();
            (f_res, flush_res)
        });

        let cs_res = self.cs.set_high();

        let f_res = f_res.map_err(SpiBusDeviceError::Spi)?;
        flush_res.map_err(SpiBusDeviceError::Spi)?;
        cs_res.map_err(SpiBusDeviceError::Cs)?;

        Ok(f_res)
    }
}