stm32f4xx/chip_specific/
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
7//! This module contains all chip-specific code.
8//!
9//! Some models in the STM32F4 family may have additional features, while others not. Or they can
10//! operate internally in different ways for the same feature. This module provides all the
11//! chip-specific types and traits to be used by others modules in this crate or by other crates.
12
13pub mod chip_specs;
14pub mod clock_constants;
15pub mod flash;
16
17pub use chip_specs::ChipSpecs;