stm32/qei: fix struct naming (#1852)

Co-authored-by: xoviat <xoviat@users.noreply.github.com>
This commit is contained in:
xoviat 2023-09-01 17:30:27 -05:00 committed by GitHub
parent b74645e259
commit 1d87ec9cc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,11 +43,11 @@ macro_rules! channel_impl {
channel_impl!(new_ch1, Ch1, Channel1Pin);
channel_impl!(new_ch2, Ch2, Channel2Pin);
pub struct SimplePwm<'d, T> {
pub struct Qei<'d, T> {
_inner: PeripheralRef<'d, T>,
}
impl<'d, T: CaptureCompare16bitInstance> SimplePwm<'d, T> {
impl<'d, T: CaptureCompare16bitInstance> Qei<'d, T> {
pub fn new(tim: impl Peripheral<P = T> + 'd, _ch1: QeiPin<'d, T, Ch1>, _ch2: QeiPin<'d, T, Ch2>) -> Self {
Self::new_inner(tim)
}