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
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! UART interface.

use derivative::Derivative;

use crate::{Error, Id, Support};

/// UART event.
#[derive(Derivative)]
#[derivative(Debug(bound = ""), PartialEq(bound = ""), Eq(bound = ""))]
pub struct Event<B: crate::Api + ?Sized> {
    /// The UART that triggered the event.
    pub uart: Id<crate::Uart<B>>,

    /// Whether the UART may be ready for read or write.
    pub direction: Direction,
}

/// Whether it might be possible to read or write.
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum Direction {
    /// There might be data to read.
    ///
    /// This is only guaranteed to be triggered after a short read.
    Read,

    /// It might be possible to write data.
    ///
    /// This is only guaranteed to be triggered after a short write.
    Write,
}

impl<B: crate::Api> From<Event<B>> for crate::Event<B> {
    fn from(event: Event<B>) -> Self {
        crate::Event::Uart(event)
    }
}

/// UART interface.
pub trait Api: Support<usize> + Send {
    /// Sets the baudrate of a stopped UART.
    fn set_baudrate(uart: Id<Self>, baudrate: usize) -> Result<(), Error>;

    /// Starts a UART.
    fn start(uart: Id<Self>) -> Result<(), Error>;

    /// Stops a UART.
    fn stop(uart: Id<Self>) -> Result<(), Error>;

    /// Reads from a UART into a buffer.
    ///
    /// Returns the number of bytes read. It could be zero if there's nothing to read.
    fn read(uart: Id<Self>, output: &mut [u8]) -> Result<usize, Error>;

    /// Writes from a buffer to a UART.
    ///
    /// Returns the number of bytes written. It could be zero if the other side is not ready.
    fn write(uart: Id<Self>, input: &[u8]) -> Result<usize, Error>;

    /// Enables a given event to be triggered.
    fn enable(uart: Id<Self>, direction: Direction) -> Result<(), Error>;

    /// Disables a given event from being triggered.
    fn disable(uart: Id<Self>, direction: Direction) -> Result<(), Error>;
}