Removed the NotConnected as it isn't used.

This commit is contained in:
huntc 2021-10-11 09:08:58 +11:00
parent 25d6a2cd13
commit b043778f75

View file

@ -259,20 +259,6 @@ macro_rules! negative_pin_mappings {
}; };
} }
struct NotConnected {}
impl PositivePin for NotConnected {
fn channel(&self) -> PositiveChannel {
PositiveChannel::NC
}
}
impl NegativePin for NotConnected {
fn channel(&self) -> NegativeChannel {
NegativeChannel::NC
}
}
// TODO the variant names are unchecked // TODO the variant names are unchecked
// the pins are copied from nrf hal // the pins are copied from nrf hal
#[cfg(feature = "9160")] #[cfg(feature = "9160")]