aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/rcc/g0.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-02-14 02:12:06 +0100
committerDario Nieuwenhuis <[email protected]>2022-02-14 02:12:06 +0100
commit39d06b59cd8eb6f64e5986bfaaf4e5f7d504f5c1 (patch)
treefa49fb426a7db68550c33e7b26dfe2f720ceae15 /embassy-stm32/src/rcc/g0.rs
parentc8f9f1bead8aa02076ff8daec3c83c752808dbcb (diff)
Update stm32-data
Diffstat (limited to 'embassy-stm32/src/rcc/g0.rs')
-rw-r--r--embassy-stm32/src/rcc/g0.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-stm32/src/rcc/g0.rs b/embassy-stm32/src/rcc/g0.rs
index a3a4c197f..71d44fd3c 100644
--- a/embassy-stm32/src/rcc/g0.rs
+++ b/embassy-stm32/src/rcc/g0.rs
@@ -176,8 +176,8 @@ pub(crate) unsafe fn init(config: Config) {
176 176
177 set_freqs(Clocks { 177 set_freqs(Clocks {
178 sys: sys_clk.hz(), 178 sys: sys_clk.hz(),
179 ahb: ahb_freq.hz(), 179 ahb1: ahb_freq.hz(),
180 apb: apb_freq.hz(), 180 apb1: apb_freq.hz(),
181 apb_tim: apb_tim_freq.hz(), 181 apb1_tim: apb_tim_freq.hz(),
182 }); 182 });
183} 183}