summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: e5b29a16f2e125eadfe232443a4efcb1df70560d (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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
// -*- coding: utf-8 -*-

pub mod cpu {
    pub const CORES: u32 = 2;
}

pub mod peripherals {
    use super::gpio::*;
    use super::i2c::*;
    use super::modem::*;
    use super::spi::*;
    use super::uart::*;

    pub struct Peripherals {
        pub spi1: SPI1,
        pub spi2: SPI2,
        pub spi3: SPI3,
        pub i2c0: I2C0,
        pub i2c1: I2C1,
        pub uart0: UART0,
        pub uart1: UART1,
        pub uart2: UART2,
        pub modem: Modem,
        pub pins: Pins,
    }

    impl Peripherals {
        pub fn take() -> Option<Peripherals> {
            Some(Peripherals {
                spi1: SPI1(),
                spi2: SPI2(),
                spi3: SPI3(),
                i2c0: I2C0(),
                i2c1: I2C1(),
                uart0: UART0(),
                uart1: UART1(),
                uart2: UART2(),
                modem: Modem(),
                pins: Pins {
                    gpio0: Gpio0(),
                    gpio1: Gpio1(),
                    gpio3: Gpio3(),
                    gpio4: Gpio4(),
                    gpio5: Gpio5(),
                    gpio13: Gpio13(),
                    gpio14: Gpio14(),
                    gpio18: Gpio18(),
                    gpio19: Gpio19(),
                    gpio23: Gpio23(),
                    gpio25: Gpio25(),
                    gpio26: Gpio26(),
                    gpio27: Gpio27(),
                    gpio32: Gpio32(),
                    gpio33: Gpio33(),
                },
            })
        }
    }
}

pub mod peripheral {
    pub trait Peripheral {
        type P;
    }
}

pub mod gpio {
    use dummy_esp_idf_sys::EspError;
    use std::marker::PhantomData;

    pub struct AnyInputPin {}
    pub struct AnyOutputPin {}
    pub struct AnyIOPin {}
    pub struct Input {}
    pub struct Output {}

    pub enum DriveStrength {
        I5mA,
        I10mA,
        I20mA,
        I40mA,
    }

    pub trait OutputPin {
        fn downgrade_output(self) -> AnyOutputPin;
    }
    pub trait InputPin {
        fn downgrade_input(self) -> AnyInputPin;
    }
    pub trait IOPin {
        fn downgrade(self) -> AnyIOPin;
    }

    impl OutputPin for AnyOutputPin {
        fn downgrade_output(self) -> AnyOutputPin {
            self
        }
    }
    impl InputPin for AnyInputPin {
        fn downgrade_input(self) -> AnyInputPin {
            self
        }
    }
    impl IOPin for AnyIOPin {
        fn downgrade(self) -> AnyIOPin {
            self
        }
    }

    macro_rules! def_gpio {
        ($structname:ident) => {
            pub struct $structname();
            impl OutputPin for $structname {
                fn downgrade_output(self) -> AnyOutputPin {
                    AnyOutputPin {}
                }
            }
            impl InputPin for $structname {
                fn downgrade_input(self) -> AnyInputPin {
                    AnyInputPin {}
                }
            }
            impl IOPin for $structname {
                fn downgrade(self) -> AnyIOPin {
                    AnyIOPin {}
                }
            }
        };
    }

    def_gpio!(Gpio0);
    def_gpio!(Gpio1);
    def_gpio!(Gpio3);
    def_gpio!(Gpio4);
    def_gpio!(Gpio5);
    def_gpio!(Gpio13);
    def_gpio!(Gpio14);
    def_gpio!(Gpio18);
    def_gpio!(Gpio19);
    def_gpio!(Gpio23);
    def_gpio!(Gpio25);
    def_gpio!(Gpio26);
    def_gpio!(Gpio27);
    def_gpio!(Gpio32);
    def_gpio!(Gpio33);

    pub struct Pins {
        pub gpio0: Gpio0,
        pub gpio1: Gpio1,
        pub gpio3: Gpio3,
        pub gpio4: Gpio4,
        pub gpio5: Gpio5,
        pub gpio13: Gpio13,
        pub gpio14: Gpio14,
        pub gpio18: Gpio18,
        pub gpio19: Gpio19,
        pub gpio23: Gpio23,
        pub gpio25: Gpio25,
        pub gpio26: Gpio26,
        pub gpio27: Gpio27,
        pub gpio32: Gpio32,
        pub gpio33: Gpio33,
    }

    pub struct PinDriver<'a, T, MODE> {
        _p: PhantomData<(&'a T, MODE)>,
    }

    impl<'a, T, MODE> PinDriver<'a, T, MODE> {
        pub fn input(_: impl InputPin) -> Result<Self, EspError> {
            Ok(Self { _p: PhantomData })
        }

        pub fn output(_: impl OutputPin) -> Result<Self, EspError> {
            Ok(Self { _p: PhantomData })
        }

        pub fn set_high(&mut self) -> Result<(), EspError> {
            Ok(())
        }

        pub fn set_low(&mut self) -> Result<(), EspError> {
            Ok(())
        }

        pub fn toggle(&mut self) -> Result<(), EspError> {
            Ok(())
        }

        pub fn is_low(&self) -> bool {
            false
        }

        pub fn is_high(&self) -> bool {
            false
        }

        pub fn is_set_low(&self) -> bool {
            false
        }

        pub fn is_set_high(&self) -> bool {
            false
        }

        pub fn set_drive_strength(&mut self, _: DriveStrength) -> Result<(), EspError> {
            Ok(())
        }
    }
}

pub mod spi {
    macro_rules! def_spi {
        ($structname:ident) => {
            pub struct $structname();
        };
    }

    def_spi!(SPI1);
    def_spi!(SPI2);
    def_spi!(SPI3);
}

pub mod i2c {
    use super::peripheral::Peripheral;
    use dummy_esp_idf_sys::EspError;
    use std::marker::PhantomData;

    pub mod config {
        use super::super::units::*;

        #[derive(Default)]
        pub struct Config {}

        impl Config {
            pub fn new() -> Self {
                Self {}
            }

            pub fn baudrate(self, _: Hertz) -> Self {
                self
            }

            pub fn sda_enable_pullup(self, _: bool) -> Self {
                self
            }

            pub fn scl_enable_pullup(self, _: bool) -> Self {
                self
            }
        }
    }

    pub type I2cConfig = config::Config;

    pub struct I2cDriver<'a> {
        _p: PhantomData<&'a u8>,
    }

    impl<'a> I2cDriver<'a> {
        pub fn new<I2C: I2c>(
            _i2c: impl Peripheral<P = I2C>,
            _sda: impl super::gpio::IOPin,
            _scl: impl super::gpio::IOPin,
            _config: &I2cConfig,
        ) -> Result<Self, EspError> {
            Ok(Self { _p: PhantomData })
        }
    }

    impl<'a> embedded_hal::i2c::ErrorType for I2cDriver<'a> {
        type Error = std::convert::Infallible;
    }

    impl<'a> embedded_hal::i2c::I2c for I2cDriver<'a> {
        fn transaction(
            &mut self,
            _: embedded_hal::i2c::SevenBitAddress,
            _: &mut [embedded_hal::i2c::Operation<'_>],
        ) -> Result<(), Self::Error> {
            Ok(())
        }
    }

    pub trait I2c {}

    macro_rules! def_i2c {
        ($structname:ident) => {
            pub struct $structname();
            impl I2c for $structname {}
            impl Peripheral for $structname {
                type P = $structname;
            }
        };
    }

    def_i2c!(I2C0);
    def_i2c!(I2C1);
}

pub mod uart {
    use super::gpio::{InputPin, OutputPin};
    use dummy_esp_idf_sys::EspError;
    use std::marker::PhantomData;

    pub trait UART {}

    macro_rules! def_uart {
        ($structname:ident) => {
            pub struct $structname();
            impl UART for $structname {}
        };
    }

    def_uart!(UART0);
    def_uart!(UART1);
    def_uart!(UART2);

    pub mod config {
        use super::super::units::*;

        #[derive(Default)]
        pub struct Config {}

        impl Config {
            pub fn data_bits(self, _: DataBits) -> Self {
                self
            }

            pub fn parity_none(self) -> Self {
                self
            }

            pub fn parity_even(self) -> Self {
                self
            }

            pub fn parity_odd(self) -> Self {
                self
            }

            pub fn stop_bits(self, _: StopBits) -> Self {
                self
            }

            pub fn flow_control(self, _: FlowControl) -> Self {
                self
            }
        }

        pub enum DataBits {
            DataBits5,
            DataBits6,
            DataBits7,
            DataBits8,
        }

        pub enum StopBits {
            STOP1,
            STOP1P5,
            STOP2,
        }

        pub enum FlowControl {
            None,
            RTS,
            CTS,
            CTSRTS,
            MAX,
        }

        impl Config {
            pub fn baudrate(self, _baudrate: Hertz) -> Self {
                self
            }
        }
    }

    pub struct UartDriver<'a> {
        p: PhantomData<&'a u32>,
    }

    impl<'a> UartDriver<'a> {
        pub fn new(
            _uart: impl UART,
            _tx: impl OutputPin,
            _rx: impl InputPin,
            _cts: Option<impl InputPin>,
            _rts: Option<impl OutputPin>,
            _config: &config::Config,
        ) -> Result<Self, EspError> {
            Ok(Self { p: PhantomData })
        }

        pub fn split(&mut self) -> (UartTxDriver<'_>, UartRxDriver<'_>) {
            (
                UartTxDriver { p: PhantomData },
                UartRxDriver { p: PhantomData },
            )
        }

        pub fn read(&self, _buf: &mut [u8], _delay: u32) -> Result<usize, EspError> {
            Ok(0)
        }

        pub fn write(&self, _buf: &[u8]) -> Result<usize, EspError> {
            Ok(0)
        }
    }

    pub struct UartTxDriver<'a> {
        p: PhantomData<&'a u32>,
    }

    pub struct UartRxDriver<'a> {
        p: PhantomData<&'a u32>,
    }

    impl<'a> UartRxDriver<'a> {
        pub fn count(&self) -> Result<u8, EspError> {
            Ok(0)
        }

        pub fn flush(&self) -> Result<(), EspError> {
            self.clear()
        }

        pub fn clear(&self) -> Result<(), EspError> {
            Ok(())
        }
    }
}

pub mod modem {
    use super::peripheral::Peripheral;

    pub trait WifiModemPeripheral: Peripheral<P = Self> {}

    pub struct Modem();
    impl Peripheral for Modem {
        type P = Self;
    }
    impl WifiModemPeripheral for Modem {}
}

pub mod task {}

pub mod reset {
    pub fn restart() {}
}

pub mod units {
    pub struct Hertz(pub u32);
    pub struct KiloHertz(pub u32);

    impl From<KiloHertz> for Hertz {
        fn from(x: KiloHertz) -> Self {
            Hertz(x.0)
        }
    }
}

pub mod prelude {
    pub use super::peripherals::Peripherals;
    pub use super::units::*;

    pub use std::marker::PhantomData;
}

// vim: ts=4 sw=4 expandtab
bues.ch cgit interface