|
| 1 | +//! Pulse Width Modulation (PWM) traits |
| 2 | +
|
| 3 | +/// Error |
| 4 | +pub trait Error: core::fmt::Debug { |
| 5 | + /// Convert error to a generic error kind |
| 6 | + /// |
| 7 | + /// By using this method, errors freely defined by HAL implementations |
| 8 | + /// can be converted to a set of generic errors upon which generic |
| 9 | + /// code can act. |
| 10 | + fn kind(&self) -> ErrorKind; |
| 11 | +} |
| 12 | + |
| 13 | +impl Error for core::convert::Infallible { |
| 14 | + fn kind(&self) -> ErrorKind { |
| 15 | + match *self {} |
| 16 | + } |
| 17 | +} |
| 18 | + |
| 19 | +/// Error kind |
| 20 | +/// |
| 21 | +/// This represents a common set of operation errors. HAL implementations are |
| 22 | +/// free to define more specific or additional error types. However, by providing |
| 23 | +/// a mapping to these common errors, generic code can still react to them. |
| 24 | +#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] |
| 25 | +#[non_exhaustive] |
| 26 | +pub enum ErrorKind { |
| 27 | + /// A different error occurred. The original error may contain more information. |
| 28 | + Other, |
| 29 | +} |
| 30 | + |
| 31 | +impl Error for ErrorKind { |
| 32 | + fn kind(&self) -> ErrorKind { |
| 33 | + *self |
| 34 | + } |
| 35 | +} |
| 36 | + |
| 37 | +impl core::fmt::Display for ErrorKind { |
| 38 | + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
| 39 | + match self { |
| 40 | + Self::Other => write!( |
| 41 | + f, |
| 42 | + "A different error occurred. The original error may contain more information" |
| 43 | + ), |
| 44 | + } |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +/// Error type trait |
| 49 | +/// |
| 50 | +/// This just defines the error type, to be used by the other traits. |
| 51 | +pub trait ErrorType { |
| 52 | + /// Error type |
| 53 | + type Error: Error; |
| 54 | +} |
| 55 | + |
| 56 | +impl<T: ErrorType> ErrorType for &mut T { |
| 57 | + type Error = T::Error; |
| 58 | +} |
| 59 | + |
| 60 | +/// Single PWM channel / pin |
| 61 | +pub trait SetDutyCycle: ErrorType { |
| 62 | + /// Get the maximum duty cycle value. |
| 63 | + /// |
| 64 | + /// This value corresponds to a 100% duty cycle. |
| 65 | + fn get_max_duty_cycle(&self) -> u16; |
| 66 | + |
| 67 | + /// Set the duty cycle to `duty / max_duty`. |
| 68 | + /// |
| 69 | + /// The caller is responsible for ensuring that the duty cycle value is less than or equal to the maximum duty cycle value, |
| 70 | + /// as reported by `get_max_duty`. |
| 71 | + fn set_duty_cycle(&mut self, duty: u16) -> Result<(), Self::Error>; |
| 72 | + |
| 73 | + /// Set the duty cycle to 0%, or always inactive. |
| 74 | + #[inline] |
| 75 | + fn set_duty_cycle_fully_off(&mut self) -> Result<(), Self::Error> { |
| 76 | + self.set_duty_cycle(0) |
| 77 | + } |
| 78 | + |
| 79 | + /// Set the duty cycle to 100%, or always active. |
| 80 | + #[inline] |
| 81 | + fn set_duty_cycle_fully_on(&mut self) -> Result<(), Self::Error> { |
| 82 | + self.set_duty_cycle(self.get_max_duty_cycle()) |
| 83 | + } |
| 84 | + |
| 85 | + /// Set the duty cycle to `num / denom`. |
| 86 | + /// |
| 87 | + /// The caller is responsible for ensuring that `num` is less than or equal to `denom`, |
| 88 | + /// and that `denom` is not zero. |
| 89 | + #[inline] |
| 90 | + fn set_duty_cycle_fraction(&mut self, num: u16, denom: u16) -> Result<(), Self::Error> { |
| 91 | + let duty = num as u32 * self.get_max_duty_cycle() as u32 / denom as u32; |
| 92 | + self.set_duty_cycle(duty as u16) |
| 93 | + } |
| 94 | + |
| 95 | + /// Set the duty cycle to `percent / 100` |
| 96 | + /// |
| 97 | + /// The caller is responsible for ensuring that `percent` is less than or equal to 100. |
| 98 | + #[inline] |
| 99 | + fn set_duty_cycle_percent(&mut self, percent: u8) -> Result<(), Self::Error> { |
| 100 | + self.set_duty_cycle_fraction(percent as u16, 100) |
| 101 | + } |
| 102 | +} |
| 103 | + |
| 104 | +impl<T: SetDutyCycle> SetDutyCycle for &mut T { |
| 105 | + fn get_max_duty_cycle(&self) -> u16 { |
| 106 | + T::get_max_duty_cycle(self) |
| 107 | + } |
| 108 | + |
| 109 | + fn set_duty_cycle(&mut self, duty: u16) -> Result<(), Self::Error> { |
| 110 | + T::set_duty_cycle(self, duty) |
| 111 | + } |
| 112 | + |
| 113 | + fn set_duty_cycle_fully_off(&mut self) -> Result<(), Self::Error> { |
| 114 | + T::set_duty_cycle_fully_off(self) |
| 115 | + } |
| 116 | + |
| 117 | + fn set_duty_cycle_fully_on(&mut self) -> Result<(), Self::Error> { |
| 118 | + T::set_duty_cycle_fully_on(self) |
| 119 | + } |
| 120 | + |
| 121 | + fn set_duty_cycle_fraction(&mut self, num: u16, denom: u16) -> Result<(), Self::Error> { |
| 122 | + T::set_duty_cycle_fraction(self, num, denom) |
| 123 | + } |
| 124 | + |
| 125 | + fn set_duty_cycle_percent(&mut self, percent: u8) -> Result<(), Self::Error> { |
| 126 | + T::set_duty_cycle_percent(self, percent) |
| 127 | + } |
| 128 | +} |
0 commit comments