From bfb4cf775a81a5a674c1f80ecd68425ee2410081 Mon Sep 17 00:00:00 2001 From: xoviat Date: Mon, 4 Sep 2023 15:54:00 -0500 Subject: [PATCH] remove adc refcount --- embassy-stm32/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-stm32/build.rs b/embassy-stm32/build.rs index d3f6452b..09a02952 100644 --- a/embassy-stm32/build.rs +++ b/embassy-stm32/build.rs @@ -308,7 +308,7 @@ fn main() { // ======== // Generate RccPeripheral impls - let refcounted_peripherals = HashSet::from(["ADC", "USART", "SPI", "I2C"]); + let refcounted_peripherals = HashSet::from(["USART", "SPI", "I2C"]); let mut refcount_statics = HashSet::new(); for p in METADATA.peripherals {