From 73c0bad8ad398c072215c8ff4382dffbe1a6a057 Mon Sep 17 00:00:00 2001 From: i509VCB Date: Sat, 22 Mar 2025 19:27:52 -0500 Subject: [PATCH] mspm0: remove todo comment about pin names with slash these are now gone from metapac --- embassy-mspm0/build.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/embassy-mspm0/build.rs b/embassy-mspm0/build.rs index 9025c337a..39d8b2f8a 100644 --- a/embassy-mspm0/build.rs +++ b/embassy-mspm0/build.rs @@ -135,9 +135,6 @@ fn get_singletons(cfgs: &mut common::CfgSet) -> Vec { }); } - // TODO: Remove `/` signals from metapac (PA1/NRST on C110x for example) - singletons.retain(|s| !s.name.contains('/')); - singletons.sort_by(|a, b| a.name.cmp(&b.name)); singletons } @@ -403,11 +400,6 @@ fn generate_pin_trait_impls() -> TokenStream { for peripheral in METADATA.peripherals { for pin in peripheral.pins { - // TODO: Remove `/` signals from metapac (PA1/NRST on C110x for example) - if pin.pin.contains('/') { - continue; - } - let key = (peripheral.kind, pin.signal); let pin_name = format_ident!("{}", pin.pin);