atsamd_hal/sercom/spi/impl_ehal/
panic_on.rs

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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
//! [`SpiBus`] implementations for [`PanicOnWrite`] and [`PanicOnRead`]

use num_traits::{AsPrimitive, PrimInt};

use crate::ehal::spi::{ErrorType, SpiBus};

use super::{
    Config, DataWidth, MasterMode, PanicOnRead, PanicOnWrite, Rx, Size, Spi, Tx, ValidConfig,
    ValidPads, Word,
};

impl<T: ErrorType> ErrorType for PanicOnRead<T> {
    type Error = <T as ErrorType>::Error;
}

impl<T: ErrorType> ErrorType for PanicOnWrite<T> {
    type Error = <T as ErrorType>::Error;
}

/// [`SpiBus`] implementation for [`PanicOnRead`] using word-by-word transfers
impl<P, M, C> SpiBus<Word<C>> for PanicOnRead<Spi<Config<P, M, C>, Tx>>
where
    Config<P, M, C>: ValidConfig<OpMode = M>,
    P: ValidPads,
    M: MasterMode,
    C: Size + 'static,
    C::Word: PrimInt + AsPrimitive<DataWidth> + Copy,
    DataWidth: AsPrimitive<C::Word>,
{
    #[inline]
    fn read(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnRead` panics on SPI reads");
    }

    #[inline]
    fn write(&mut self, words: &[Word<C>]) -> Result<(), Self::Error> {
        self.0.write_word_by_word(words)
    }

    #[inline]
    fn transfer(&mut self, _read: &mut [Word<C>], _write: &[Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnRead` panics on SPI reads");
    }

    #[inline]
    fn transfer_in_place(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnRead` panics on SPI reads");
    }

    #[inline]
    fn flush(&mut self) -> Result<(), Self::Error> {
        self.0.flush_tx();
        Ok(())
    }
}

/// [`SpiBus`] implementation for [`PanicOnWrite`] using word-by-word transfers
impl<P, M, C> SpiBus<Word<C>> for PanicOnWrite<Spi<Config<P, M, C>, Rx>>
where
    Config<P, M, C>: ValidConfig<OpMode = M>,
    P: ValidPads,
    M: MasterMode,
    C: Size + 'static,
    C::Word: PrimInt + AsPrimitive<DataWidth> + Copy,
    DataWidth: AsPrimitive<C::Word>,
{
    #[inline]
    fn read(&mut self, words: &mut [Word<C>]) -> Result<(), Self::Error> {
        self.0.read_word_by_word(words)
    }

    #[inline]
    fn write(&mut self, _words: &[Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnWrite` panics on SPI writes");
    }

    #[inline]
    fn transfer(&mut self, _read: &mut [Word<C>], _write: &[Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnWrite` panics on SPI writes");
    }

    #[inline]
    fn transfer_in_place(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnWrite` panics on SPI writes");
    }

    #[inline]
    fn flush(&mut self) -> Result<(), Self::Error> {
        unimplemented!("`PanicOnWrite` panics on SPI writes");
    }
}

#[cfg(feature = "dma")]
mod dma {
    use super::*;
    use crate::dmac::{AnyChannel, Beat, Ready};
    use crate::sercom::Sercom;
    use crate::typelevel::NoneT;

    /// [`SpiBus`] implementation for [`PanicOnRead`] using DMA transfers
    impl<P, M, C, T, S> SpiBus<Word<C>> for PanicOnRead<Spi<Config<P, M, C>, Tx, NoneT, T>>
    where
        Config<P, M, C>: ValidConfig<Sercom = S, OpMode = M>,
        P: ValidPads,
        M: MasterMode,
        C: Size + 'static,
        C::Word: PrimInt + AsPrimitive<DataWidth> + Beat,
        S: Sercom,
        DataWidth: AsPrimitive<C::Word>,
        T: AnyChannel<Status = Ready>,
    {
        #[inline]
        fn read(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnRead` panics on SPI reads");
        }

        #[inline]
        fn write(&mut self, words: &[Word<C>]) -> Result<(), Self::Error> {
            self.0.write_dma(words)?;
            Ok(())
        }

        #[inline]
        fn transfer(
            &mut self,
            _read: &mut [Word<C>],
            _write: &[Word<C>],
        ) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnRead` panics on SPI reads");
        }

        #[inline]
        fn transfer_in_place(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnRead` panics on SPI reads");
        }

        #[inline]
        fn flush(&mut self) -> Result<(), Self::Error> {
            self.0.flush_tx();
            Ok(())
        }
    }

    /// [`SpiBus`] implementation for [`PanicOnWrite`] using DMA transfers
    impl<P, M, C, R, T> SpiBus<Word<C>> for PanicOnWrite<Spi<Config<P, M, C>, Rx, R, T>>
    where
        Config<P, M, C>: ValidConfig<OpMode = M>,
        P: ValidPads,
        M: MasterMode,
        C: Size + 'static,
        C::Word: PrimInt + AsPrimitive<DataWidth> + Beat,
        DataWidth: AsPrimitive<C::Word>,
        R: AnyChannel<Status = Ready>,
        T: AnyChannel<Status = Ready>,
    {
        #[inline]
        fn read(&mut self, words: &mut [Word<C>]) -> Result<(), Self::Error> {
            self.0.read_dma_master(words)
        }

        #[inline]
        fn write(&mut self, _words: &[Word<C>]) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnWrite` panics on SPI writes");
        }

        #[inline]
        fn transfer(
            &mut self,
            _read: &mut [Word<C>],
            _write: &[Word<C>],
        ) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnWrite` panics on SPI writes");
        }

        #[inline]
        fn transfer_in_place(&mut self, _words: &mut [Word<C>]) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnWrite` panics on SPI writes");
        }

        #[inline]
        fn flush(&mut self) -> Result<(), Self::Error> {
            unimplemented!("`PanicOnWrite` panics on SPI writes");
        }
    }
}