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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
use crate::prelude::*;
use crate::time::Bps;

#[derive(PartialEq, PartialOrd, Clone, Copy)]
pub enum WordLength {
    DataBits7,
    DataBits8,
    DataBits9,
}

#[derive(PartialEq, PartialOrd, Clone, Copy)]
pub enum Parity {
    ParityNone,
    ParityEven,
    ParityOdd,
}

#[derive(PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum StopBits {
    #[doc = "1 stop bit"]
    STOP1 = 0b00,
    #[doc = "0.5 stop bits"]
    STOP0P5 = 0b01,
    #[doc = "2 stop bits"]
    STOP2 = 0b10,
    #[doc = "1.5 stop bits"]
    STOP1P5 = 0b11,
}

impl StopBits {
    pub fn bits(self) -> u8 {
        self as u8
    }
}

#[derive(PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum FifoThreshold {
    #[doc = "1/8 of its depth"]
    FIFO_1_BYTE = 0b000,
    #[doc = "1/4 of its depth"]
    FIFO_2_BYTES = 0b001,
    #[doc = "1/2 of its depth"]
    FIFO_4_BYTES = 0b010,
    #[doc = "3/4 of its depth"]
    FIFO_6_BYTES = 0b011,
    #[doc = "7/8 of its depth"]
    FIFO_7_BYTES = 0b100,
    #[doc = "fifo empty/full"]
    FIFO_8_BYTES = 0b101,
}

impl FifoThreshold {
    pub fn bits(self) -> u8 {
        self as u8
    }
}
#[derive(PartialEq, PartialOrd, Clone, Copy)]
pub struct BasicConfig {
    pub(crate) baudrate: Bps,
    pub(crate) wordlength: WordLength,
    pub(crate) parity: Parity,
    pub(crate) stopbits: StopBits,
    pub(crate) swap: bool,
}

#[derive(PartialEq, PartialOrd, Clone, Copy)]
pub struct FullConfig {
    pub(crate) baudrate: Bps,
    pub(crate) wordlength: WordLength,
    pub(crate) parity: Parity,
    pub(crate) stopbits: StopBits,
    pub(crate) swap: bool,
    pub(crate) fifo_enable: bool,
    pub(crate) tx_fifo_threshold: FifoThreshold,
    pub(crate) rx_fifo_threshold: FifoThreshold,
    pub(crate) tx_fifo_interrupt: bool,
    pub(crate) rx_fifo_interrupt: bool,
    #[doc = "Number of bits no activity on rx line"]
    pub(crate) receiver_timeout: Option<u32>,
}

impl BasicConfig {
    pub fn baudrate(mut self, baudrate: Bps) -> Self {
        self.baudrate = baudrate;
        self
    }

    pub fn parity_none(mut self) -> Self {
        self.parity = Parity::ParityNone;
        self
    }

    pub fn parity_even(mut self) -> Self {
        self.parity = Parity::ParityEven;
        self
    }

    pub fn parity_odd(mut self) -> Self {
        self.parity = Parity::ParityOdd;
        self
    }

    pub fn wordlength_8(mut self) -> Self {
        self.wordlength = WordLength::DataBits8;
        self
    }

    pub fn wordlength_9(mut self) -> Self {
        self.wordlength = WordLength::DataBits9;
        self
    }

    pub fn stopbits(mut self, stopbits: StopBits) -> Self {
        self.stopbits = stopbits;
        self
    }

    /// Swap the Tx/Rx pins
    ///
    /// The peripheral will transmit on the pin given as the `rx` argument.
    pub fn swap_pins(mut self) -> Self {
        self.swap = true;
        self
    }
}

impl FullConfig {
    pub fn baudrate(mut self, baudrate: Bps) -> Self {
        self.baudrate = baudrate;
        self
    }

    pub fn parity_none(mut self) -> Self {
        self.parity = Parity::ParityNone;
        self
    }

    pub fn parity_even(mut self) -> Self {
        self.parity = Parity::ParityEven;
        self
    }

    pub fn parity_odd(mut self) -> Self {
        self.parity = Parity::ParityOdd;
        self
    }

    pub fn wordlength_8(mut self) -> Self {
        self.wordlength = WordLength::DataBits8;
        self
    }

    pub fn wordlength_9(mut self) -> Self {
        self.wordlength = WordLength::DataBits9;
        self
    }

    pub fn stopbits(mut self, stopbits: StopBits) -> Self {
        self.stopbits = stopbits;
        self
    }

    /// Swap the Tx/Rx pins
    ///
    /// The peripheral will transmit on the pin given as the `rx` argument.
    pub fn swap_pins(mut self) -> Self {
        self.swap = true;
        self
    }

    pub fn fifo_enable(mut self) -> Self {
        self.fifo_enable = true;
        self
    }

    pub fn tx_fifo_threshold(mut self, threshold: FifoThreshold) -> Self {
        self.tx_fifo_threshold = threshold;
        self
    }

    pub fn rx_fifo_threshold(mut self, threshold: FifoThreshold) -> Self {
        self.rx_fifo_threshold = threshold;
        self
    }

    pub fn tx_fifo_enable_interrupt(mut self) -> Self {
        self.tx_fifo_interrupt = true;
        self
    }

    pub fn rx_fifo_enable_interrupt(mut self) -> Self {
        self.rx_fifo_interrupt = true;
        self
    }

    /// Configure receiver timout in microseconds. Call after baudrate is set.
    pub fn receiver_timeout_us(mut self, timeout_us: u32) -> Self {
        let t = timeout_us as u64 * self.baudrate.0 as u64 / 1_000_000u64;
        self.receiver_timeout = Some(t as u32);
        self
    }
}

#[derive(Debug)]
pub struct InvalidConfig;

impl Default for BasicConfig {
    fn default() -> BasicConfig {
        let baudrate = 19_200.bps();
        BasicConfig {
            baudrate,
            wordlength: WordLength::DataBits8,
            parity: Parity::ParityNone,
            stopbits: StopBits::STOP1,
            swap: false,
        }
    }
}

impl Default for FullConfig {
    fn default() -> FullConfig {
        let baudrate = 115_200.bps();
        FullConfig {
            baudrate,
            wordlength: WordLength::DataBits8,
            parity: Parity::ParityNone,
            stopbits: StopBits::STOP1,
            swap: false,
            fifo_enable: false,
            tx_fifo_threshold: FifoThreshold::FIFO_8_BYTES,
            rx_fifo_threshold: FifoThreshold::FIFO_8_BYTES,
            tx_fifo_interrupt: false,
            rx_fifo_interrupt: false,
            receiver_timeout: None,
        }
    }
}