aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshufps <[email protected]>2024-01-15 11:23:41 +0100
committershufps <[email protected]>2024-01-15 11:23:41 +0100
commite969b88e5ae1aa439b47f7b55e740d6ca78b9a0a (patch)
treea7497218a8dc6c8be4582bd53205dd29ce10a76f
parent2b649136644eb49b8c22c3b1ddb98bcd6d043b3f (diff)
fixed trailing white spaces
-rw-r--r--embassy-stm32/src/time_driver.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-stm32/src/time_driver.rs b/embassy-stm32/src/time_driver.rs
index d613394ef..320b29ddb 100644
--- a/embassy-stm32/src/time_driver.rs
+++ b/embassy-stm32/src/time_driver.rs
@@ -127,7 +127,7 @@ foreach_interrupt! {
127 fn $irq() { 127 fn $irq() {
128 DRIVER.on_interrupt() 128 DRIVER.on_interrupt()
129 } 129 }
130 }; 130 };
131 (TIM22, timer, $block:ident, UP, $irq:ident) => { 131 (TIM22, timer, $block:ident, UP, $irq:ident) => {
132 #[cfg(time_driver_tim22)] 132 #[cfg(time_driver_tim22)]
133 #[cfg(feature = "rt")] 133 #[cfg(feature = "rt")]
@@ -135,7 +135,7 @@ foreach_interrupt! {
135 fn $irq() { 135 fn $irq() {
136 DRIVER.on_interrupt() 136 DRIVER.on_interrupt()
137 } 137 }
138 }; 138 };
139} 139}
140 140
141// Clock timekeeping works with something we call "periods", which are time intervals 141// Clock timekeeping works with something we call "periods", which are time intervals