Add non blocking Bxcan constructor.
Signed-off-by: Andrew Ealovega <Andrew@Ealovega.dev>
This commit is contained in:
parent
3b58ac1bf8
commit
5914d80968
@ -12,6 +12,7 @@ pub struct Can<'d, T: Instance> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'d, T: Instance> Can<'d, T> {
|
impl<'d, T: Instance> Can<'d, T> {
|
||||||
|
/// Creates a new Bxcan instance, blocking for 11 recessive bits to sync with the CAN bus.
|
||||||
pub fn new(
|
pub fn new(
|
||||||
peri: impl Peripheral<P = T> + 'd,
|
peri: impl Peripheral<P = T> + 'd,
|
||||||
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
|
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
|
||||||
@ -31,6 +32,28 @@ impl<'d, T: Instance> Can<'d, T> {
|
|||||||
can: bxcan::Can::builder(BxcanInstance(peri)).enable(),
|
can: bxcan::Can::builder(BxcanInstance(peri)).enable(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Creates a new Bxcan instance, keeping the peripheral in sleep mode.
|
||||||
|
/// You must call [Can::enable_non_blocking] to use the peripheral.
|
||||||
|
pub fn new_disabled(
|
||||||
|
peri: impl Peripheral<P = T> + 'd,
|
||||||
|
rx: impl Peripheral<P = impl RxPin<T>> + 'd,
|
||||||
|
tx: impl Peripheral<P = impl TxPin<T>> + 'd,
|
||||||
|
) -> Self {
|
||||||
|
into_ref!(peri, rx, tx);
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
rx.set_as_af(rx.af_num(), AFType::Input);
|
||||||
|
tx.set_as_af(tx.af_num(), AFType::OutputPushPull);
|
||||||
|
}
|
||||||
|
|
||||||
|
T::enable();
|
||||||
|
T::reset();
|
||||||
|
|
||||||
|
Self {
|
||||||
|
can: bxcan::Can::builder(BxcanInstance(peri)).leave_disabled(),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'d, T: Instance> Drop for Can<'d, T> {
|
impl<'d, T: Instance> Drop for Can<'d, T> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user