stm32f4xx/clocks/
mod.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright OxidOS Automotive SRL.
4//
5// Author: Ioan-Cristian CÎRSTEA <ioan.cirstea@oxidos.io>
6
7pub mod clocks;
8pub mod hse;
9pub mod hsi;
10pub mod phclk;
11pub mod pll;
12
13pub use crate::clocks::clocks::tests;
14pub use crate::clocks::clocks::{Clocks, Stm32f4Clocks};