aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-09-04 15:54:00 -0500
committerxoviat <[email protected]>2023-09-04 15:54:00 -0500
commitbfb4cf775a81a5a674c1f80ecd68425ee2410081 (patch)
treeb3100b9ea9673d55c2684fc15bd9f90aa2a735a1
parent274f63a879353923feac87f399aae9c5cadd4aa3 (diff)
remove adc refcount
-rw-r--r--embassy-stm32/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/build.rs b/embassy-stm32/build.rs
index d3f6452b4..09a029525 100644
--- a/embassy-stm32/build.rs
+++ b/embassy-stm32/build.rs
@@ -308,7 +308,7 @@ fn main() {
308 // ======== 308 // ========
309 // Generate RccPeripheral impls 309 // Generate RccPeripheral impls
310 310
311 let refcounted_peripherals = HashSet::from(["ADC", "USART", "SPI", "I2C"]); 311 let refcounted_peripherals = HashSet::from(["USART", "SPI", "I2C"]);
312 let mut refcount_statics = HashSet::new(); 312 let mut refcount_statics = HashSet::new();
313 313
314 for p in METADATA.peripherals { 314 for p in METADATA.peripherals {